:root {
  --green-deep: #1a3a2a;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --green-pale: #d8f3dc;
  --gold: #c9a84c;
  --gold-light: #e8c87a;
  --earth: #8b5e3c;
  --earth-light: #d4a574;
  --cream: #fdf8f0;
  --white: #ffffff;
  --charcoal: #1c1c1c;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --border: rgba(201, 168, 76, 0.25);
  --shadow-green: rgba(45, 106, 79, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.display-serif {
  font-family: "Playfair Display", serif;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 58, 42, 0);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(26, 58, 42, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  color: var(--white);
}

.logo-text .name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-text .tagline {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.8px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% 40%,
      rgba(82, 183, 136, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 80% at 20% 80%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0d2018 0%, #1a3a2a 40%, #0f2318 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.5) 60px,
      rgba(255, 255, 255, 0.5) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.5) 60px,
      rgba(255, 255, 255, 0.5) 61px
    );
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(82, 183, 136, 0.15);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(201, 168, 76, 0.1);
  bottom: -50px;
  left: 10%;
  animation-delay: -3s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(45, 106, 79, 0.2);
  top: 30%;
  left: 30%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 20px) scale(0.97);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 760px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge::before {
  content: "●";
  font-size: 8px;
  color: var(--green-light);
}

.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-title .accent {
  color: var(--gold-light);
  font-style: italic;
}

.hero-title .line2 {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 2px;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.75;
  margin: 28px 0 30px;
  max-width: 520px;
  font-weight: 300;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  margin-bottom: 135px;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  padding: 14px 32px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeInUp 0.8s 0.6s ease both;
}

.stat-item {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 110px;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: fadeInUp 1s 0.8s ease both;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 5%;
}

.section-sm {
  padding: 60px 5%;
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  color: var(--green-mid);
  font-style: italic;
}

.section-desc {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  position: relative;
  overflow: hidden;
}

.about-img-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(82, 183, 136, 0.3),
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(201, 168, 76, 0.15),
      transparent 40%
    );
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-img-badge .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.about-img-badge .txt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.3s;
}

.about-feat:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.about-feat-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.about-feat h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 2px;
  font-family: "DM Sans", sans-serif;
}

.about-feat p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== PRODUCT CATEGORIES ===== */
.categories {
  background: var(--cream);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  group: true;
  height: 340px;
  transition: transform 0.4s ease;
}

.cat-card:hover {
  transform: translateY(-8px);
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.cat-card:hover .cat-card-bg {
  transform: scale(1.05);
}

.cat-card:nth-child(1) .cat-card-bg {
  background: linear-gradient(160deg, #1a4731 0%, #0d2b1e 100%);
}

.cat-card:nth-child(2) .cat-card-bg {
  background: linear-gradient(160deg, #3d2314 0%, #1e0f08 100%);
}

.cat-card:nth-child(3) .cat-card-bg {
  background: linear-gradient(160deg, #2d4a1e 0%, #162610 100%);
}

.cat-card:nth-child(4) .cat-card-bg {
  background: linear-gradient(160deg, #1a2d3d 0%, #0d1821 100%);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
  z-index: 1;
}

.cat-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 80px;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}

.cat-card:hover .cat-emoji {
  transform: translate(-50%, -65%) scale(1.1);
}

.cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.cat-count {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cat-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.cat-link:hover {
  border-color: var(--gold-light);
}

.cat-link svg {
  transition: transform 0.2s;
}

.cat-card:hover .cat-link svg {
  transform: translateX(4px);
}

/* ===== PRODUCTS SHOWCASE ===== */
.products-section {
  background: var(--white);
}

.products-tabs {
  display: flex;
  gap: 8px;
  margin: 40px 0 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid rgba(45, 106, 79, 0.2);
  background: transparent;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  font-family: "DM Sans", sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
  transition: all 0.35s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(45, 106, 79, 0.12);
  border-color: rgba(201, 168, 76, 0.25);
}

.product-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.product-card:nth-child(1) .product-img {
  background: linear-gradient(135deg, #fff5e6, #ffe0b2);
}

.product-card:nth-child(2) .product-img {
  background: linear-gradient(135deg, #fff3e0, #ffcc80);
}

.product-card:nth-child(3) .product-img {
  background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
}

.product-card:nth-child(4) .product-img {
  background: linear-gradient(135deg, #fce4ec, #f48fb1);
}

.product-card:nth-child(5) .product-img {
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
}

.product-card:nth-child(6) .product-img {
  background: linear-gradient(135deg, #e0f7fa, #80deea);
}

.product-card:nth-child(7) .product-img {
  background: linear-gradient(135deg, #f3e5f5, #ce93d8);
}

.product-card:nth-child(8) .product-img {
  background: linear-gradient(135deg, #e8eaf6, #9fa8da);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green-deep);
  color: var(--gold-light);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.product-origin {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.product-meta span {
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-meta span::before {
  content: "✓";
  color: var(--green-light);
  font-size: 11px;
}

.product-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
}

.product-moq {
  font-size: 11px;
  color: var(--text-light);
}

.product-moq strong {
  color: var(--earth);
}

.btn-inquire {
  background: var(--green-mid);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}

.btn-inquire:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: linear-gradient(135deg, var(--green-deep) 0%, #0d2018 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(82, 183, 136, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 35%
    );
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-label {
  color: var(--gold);
}

.why-us .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}

.why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ===== EXPORT DESTINATIONS ===== */
.export-section {
  background: var(--cream);
}

.export-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.country-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.country-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px var(--shadow-green);
  border-color: transparent;
}

.country-card:hover::after {
  transform: scaleX(1);
}

.country-flag {
  font-size: 40px;
  margin-bottom: 14px;
}

.country-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.country-region {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.country-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.country-tag {
  font-size: 11px;
  background: var(--green-pale);
  color: var(--green-mid);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 500;
}

/* ===== INFRASTRUCTURE ===== */
.infra-section {
  background: var(--white);
}

.infra-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.infra-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.infra-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  cursor: pointer;
}

.infra-item:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  transform: translateX(4px);
}

.infra-item-icon {
  font-size: 30px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: 12px;
}

.infra-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.infra-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.infra-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* .infra-box {
  border-radius: 14px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
} */

.infra-box:hover {
  transform: scale(1.03);
}

.infra-box:nth-child(1) {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.infra-box:nth-child(2) {
  background: linear-gradient(135deg, #fff8e1, #ffe082);
}

.infra-box:nth-child(3) {
  background: linear-gradient(135deg, #e3f2fd, #90caf9);
}

.infra-box:nth-child(4) {
  background: linear-gradient(135deg, #fce4ec, #f48fb1);
}

.infra-box span {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  text-align: center;
}

/* ===== CERTIFICATIONS ===== */
.certs-section {
  background: linear-gradient(135deg, var(--green-deep), #0d2018);
  position: relative;
}

.certs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.certs-section .section-title {
  color: var(--white);
}

.certs-section .section-label {
  color: var(--gold);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.cert-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.35s;
}

.cert-card:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.cert-logo {
  font-size: 48px;
  margin-bottom: 16px;
}

.cert-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.cert-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--cream);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.35s;
  position: relative;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px var(--shadow-green);
}

.testi-card::before {
  content: '"';
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  color: var(--gold-light);
  opacity: 0.25;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.testi-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  color: var(--green-deep);
  font-size: 14px;
}

.testi-role {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    #d4a030 100%
  );
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--green-deep);
  font-weight: 700;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(26, 58, 42, 0.75);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: var(--green-deep);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: var(--green-mid);
}

.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 32px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.cta-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

/* ===== INQUIRY FORM ===== */
.inquiry {
  background: var(--white);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.inquiry-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.inquiry-info p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
  font-family: "DM Sans", sans-serif;
}

.contact-item p {
  font-size: 14px;
  color: var(--green-deep);
  font-weight: 500;
}

.inquiry-form {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--green-deep);
  margin-bottom: 28px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.08);
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.65);
}

.footer-main {
  padding: 80px 5% 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: white;
}

.footer-col h5 {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 20px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--gold-light);
  text-decoration: none;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== FLOATING WA BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  animation: waPulse 2s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow:
      0 8px 24px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow:
      0 8px 24px rgba(37, 211, 102, 0.4),
      0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(26, 58, 42, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 20px 24px;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-grid {
    gap: 40px;
  }

  .infra-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .stat-item {
    min-width: 50%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .export-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  section {
    padding: 60px 4%;
  }

  .section {
    padding: 60px 4%;
  }
}

/* LOGO CSS START  */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 60px; /* Adjust based on navbar height */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .logo img {
    height: 65px;
  }
}

/* Carousal */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none; /* prevents hidden slides from intercepting clicks */
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: all; /* only active slide is clickable */
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* content must sit above the overlay */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 8%;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 8%;
  color: #fff;
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-controls button {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

/*  About img  */
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img-main {
  width: 100%;
  max-width: 500px;
  height: 500px; /* fixed area */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
}

.about-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps full image visible */
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
  animation: floatImage 4s ease-in-out infinite;
}

/* Images  */
.cat-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
}

.cat-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-card-bg img {
  transform: scale(1.08);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  z-index: 2;
}

.cat-card-content {
  position: relative;
  z-index: 3;
}

/* feature */
.product-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

/* country css */
.country-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 50px;
  padding: 10px 0;
}

.country-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollCountries 25s linear infinite;
}

.country-item {
  min-width: 180px;
  height: 80px;
  background: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  flex-shrink: 0;
}

.country-item span {
  font-size: 32px;
  line-height: 1;
}

.country-item p {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0;
  white-space: nowrap;
}

.country-item:hover {
  transform: translateY(-5px);
}

@keyframes scrollCountries {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* image */
.infra-box {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  padding: 12px;
  cursor: pointer;
}

.infra-box img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
  background: #f8f8f8;
  border-radius: 14px;
}

.infra-box span {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  padding: 16px 10px 10px;
  text-align: center;
}

.infra-box:hover {
  transform: translateY(-6px);
}

/* optional gradient backgrounds */
.infra-box:nth-child(1) {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.infra-box:nth-child(2) {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.infra-box:nth-child(3) {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.infra-box:nth-child(4) {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
}

/* Certificate  */
.cert-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  overflow: hidden;
}

.cert-card:hover {
  transform: translateY(-6px);
}

.cert-image {
  width: 100%;
  height: 320px; /* increase height */
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 18px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* important */
  display: block;
}

.cert-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

.cert-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
