:root {
  --primary: #0b5ed7;
  --secondary: #198754;
  --accent: #f39c12;
  --ink: #10233f;
  --text: #333333;
  --muted: #667085;
  --line: #e7edf5;
  --soft: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 35, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.topbar a:hover,
.social-links a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 94, 215, 0.08);
  box-shadow: 0 8px 26px rgba(16, 35, 63, 0.08);
  backdrop-filter: blur(12px);
}

.navbar-brand img,
.footer-logo {
  width: 164px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0;
  margin: 0 0.18rem;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

.btn-brand {
  background: var(--secondary);
  color: var(--white);
  border: 0;
  border-radius: 4px;
  padding: 0.72rem 1.05rem;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(25, 135, 84, 0.22);
}

.btn-brand:hover {
  background: #127348;
  color: var(--white);
}

.btn-outline-brand {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 4px;
  font-weight: 700;
  padding: 0.62rem 1rem;
}

.btn-outline-brand:hover {
  color: var(--white);
  background: var(--primary);
}

.hero-slider,
.hero-slider .swiper-slide {
  min-height: calc(100vh - 126px);
}

.hero-slider .swiper-slide {
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero-slider .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 35, 63, 0.12), rgba(16, 35, 63, 0.02));
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(16, 35, 63, 0.56);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.05rem;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.75);
}

.swiper-pagination-bullet-active {
  background: var(--accent);
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--soft);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title .eyebrow {
  color: var(--secondary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-title h1,
.section-title h2 {
  color: var(--ink);
  font-weight: 800;
  margin: 0.35rem 0 0.75rem;
}

.page-hero {
  min-height: 360px;
  display: grid;
  place-items: center;
  color: var(--white);
  background-position: center;
  background-size: cover;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 35, 63, 0.76), rgba(11, 94, 215, 0.38));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 800;
}

.product-card,
.feature-card,
.country-card,
.certificate-card,
.process-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 35, 63, 0.06);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.product-card:hover,
.feature-card:hover,
.country-card:hover,
.certificate-card:hover,
.process-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 94, 215, 0.22);
}

.product-img {
  height: 235px;
  width: 100%;
  object-fit: cover;
}

.main-product .product-img {
  height: 280px;
}

.product-category {
  padding: 28px 0 18px;
}

.product-category:first-of-type {
  padding-top: 0;
}

.category-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--ink);
}

.category-heading span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  flex: 0 0 auto;
}

.category-heading h3 {
  margin: 0;
  font-weight: 800;
}

.icon-circle {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.feature-card,
.process-card,
.contact-card {
  padding: 28px;
}

.feature-card i,
.certificate-card i,
.contact-card i {
  color: var(--secondary);
  font-size: 2rem;
}

.certificate-card {
  text-align: center;
  padding: 38px 20px;
}

.certificate-card i {
  font-size: 3.1rem;
  margin-bottom: 18px;
}

.country-card {
  padding: 24px;
  text-align: center;
}

.flag {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.about-image {
  border-radius: 8px;
  min-height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stats-strip {
  background: var(--ink);
  color: var(--white);
  padding: 36px 0;
}

.stats-strip strong {
  display: block;
  font-size: 2rem;
  color: var(--accent);
}

.profile-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 35, 63, 0.06);
}

.profile-table th {
  width: 34%;
  color: var(--ink);
  background: #eef5ff;
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: 4px;
  border-color: #d7e0eb;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(11, 94, 215, 0.12);
}

.map-frame {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

footer {
  background: #091e3a;
  color: rgba(255, 255, 255, 0.78);
}

footer h5 {
  color: var(--white);
  font-weight: 800;
}

footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-whatsapp,
.scroll-top,
.live-chat {
  position: fixed;
  z-index: 1040;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 14px 28px rgba(16, 35, 63, 0.18);
}

.floating-whatsapp {
  right: 24px;
  bottom: 88px;
  width: 58px;
  height: 58px;
  background: #25d366;
  font-size: 2rem;
}

.scroll-top {
  right: 26px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.live-chat {
  left: 22px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--accent);
}

.modal-logo {
  width: 130px;
  margin-bottom: 8px;
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    width: 136px;
    height: 54px;
  }

  .hero-slider,
  .hero-slider .swiper-slide {
    min-height: 58vh;
  }

  .topbar .container {
    justify-content: center !important;
    gap: 0.75rem;
  }

  .navbar-collapse {
    padding: 18px 0 10px;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 64px 0;
  }

  .hero-slider,
  .hero-slider .swiper-slide {
    min-height: 52vh;
  }

  .page-hero {
    min-height: 280px;
  }

  .profile-table th,
  .profile-table td {
    display: block;
    width: 100%;
  }

  .floating-whatsapp {
    right: 18px;
    width: 52px;
    height: 52px;
  }
}
