﻿/* ----------------------------------------------------
   AIRSEA - EXACT DESIGN REPLICATION STYLESHEET
   ---------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary-dark: #05112E;
  --color-primary-medium: #0A1B40;
  --color-primary-light: #102654;
  --color-accent-gold: #C89D42;
  --color-accent-gold-light: #E5C378;
  --color-accent-gold-bg: #F9F5EC;
  --color-bg-cream: #FAF7F2;
  --color-bg-light: #F4F1EA;
  --color-bg-card: #FBF8F2;
  --color-text-dark: #05112E;
  --color-text-muted: #506080;
  --color-text-light: #506080;
  --color-border: #E8E4DA;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-width: 1280px;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(5, 17, 46, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ----------------------------------------------------
   SCROLL REVEAL ANIMATIONS SYSTEM
   ---------------------------------------------------- */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px) scale(0.98);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px) scale(0.98);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.reveal-up {
  opacity: 0;
  transform: translateY(45px);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-cream);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 24px);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.2;
  margin-bottom: clamp(20px, 3vw, 36px);
}

.section-header-center {
  text-align: center;
  margin-bottom: 44px;
}

/* ----------------------------------------------------
   1. TRANSPARENT NAVBAR (OVERLAYING HERO BANNER)
   ---------------------------------------------------- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  padding: 20px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #C89D42;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05112E;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E5C378;
  margin-top: 3px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding-bottom: 6px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3.5px;
  background-color: #05112E;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link svg {
  stroke: rgba(255, 255, 255, 0.9);
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar .btn-primary {
  background-color: #05112E;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.navbar .btn-primary:hover {
  background-color: #C89D42;
  border-color: #C89D42;
  color: #05112E;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary-dark);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--color-primary-dark);
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: var(--color-primary-dark);
  color: #FFFFFF;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ----------------------------------------------------
   2. HERO BANNER SECTION (FULL-WIDTH HERO IMAGE)
   ---------------------------------------------------- */
.hero-section {
  position: relative;
  background: url('assets/images/hero-section.png') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: clamp(100px, 14vw, 140px) 0 clamp(80px, 10vw, 130px) 0;
  color: #FFFFFF;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(20, 35, 22, 0.72) 0%, rgba(20, 35, 22, 0.45) 45%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #E5C378;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  color: #C89D42;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-buttons .btn-primary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #05112E;
  border-radius: 8px;
  padding: 12px 28px;
  box-shadow: none;
  transition: var(--transition-fast);
}

.hero-buttons .btn-primary:hover {
  background-color: #05112E;
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(62, 72, 16, 0.4);
  transform: translateY(-2px);
}

.hero-countries {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 24px;
  overflow: hidden;
  max-width: 100%;
}

.hero-countries-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  max-width: 450px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.flag-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  flex-shrink: 0;
  padding-right: 10px;
  animation: scrollFlags 15s linear infinite;
}

@keyframes scrollFlags {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.flag-item {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
}

.flag-more {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

/* ----------------------------------------------------
   3. SUB-HERO FEATURE HIGHLIGHTS BAR (OVERLAPPING BANNER)
   ---------------------------------------------------- */
.features-bar-section {
  padding: 0 0 50px 0;
  margin-top: -45px;
  position: relative;
  z-index: 10;
}

.features-bar {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  border: 1px solid var(--color-border);
}

.feature-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--color-border);
  padding-right: 10px;
}

.feature-bar-item:last-child {
  border-right: none;
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrapper img,
.feature-icon-wrapper svg {
  width: 40px;
  height: 40px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.15);
}

.feature-bar-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.2;
}

.feature-bar-text p {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

/* ----------------------------------------------------
   4. OUR PRODUCTS SECTION (POLISHED CARD DECKS FAN-OUT & FOLD BACK EFFECT)
   ---------------------------------------------------- */
.products-section {
  padding: clamp(50px, 8vw, 90px) 0;
  background: var(--color-bg-cream);
  perspective: 1400px;
}

.header-leaf-ornament {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.product-card {
  background: #FBF8F2;
  border-radius: 20px;
  padding: 0;
  position: relative;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-border);
  transition: transform 0.95s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.75s ease, box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  will-change: transform, opacity, box-shadow;
  transform-origin: center center;
}

/* Initial Stacked Card Deck position (when scrolled out of view / scroll up) */
.products-grid:not(.deck-unfolded) .product-card {
  transition-delay: 0s !important;
}

.products-grid:not(.deck-unfolded) .product-card:nth-child(1) {
  transform: translate3d(108%, 40px, -120px) rotate(-14deg) scale(0.86);
  opacity: 0.15;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.products-grid:not(.deck-unfolded) .product-card:nth-child(2) {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1.04);
  opacity: 0.9;
  box-shadow: 0 24px 50px rgba(5, 17, 46, 0.22);
  z-index: 5;
}

.products-grid:not(.deck-unfolded) .product-card:nth-child(3) {
  transform: translate3d(-108%, 40px, -120px) rotate(14deg) scale(0.86);
  opacity: 0.15;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Dealt Out State (When scrolled down into view) */
.products-grid.deck-unfolded .product-card {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1) !important;
  opacity: 1 !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05) !important;
  z-index: 4;
}

.products-grid.deck-unfolded .product-card:nth-child(1) {
  transition-delay: 0.05s;
}

.products-grid.deck-unfolded .product-card:nth-child(2) {
  transition-delay: 0.25s;
}

.products-grid.deck-unfolded .product-card:nth-child(3) {
  transition-delay: 0.45s;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.03) !important;
  box-shadow: 0 22px 45px rgba(5, 17, 46, 0.18) !important;
  border-color: var(--color-accent-gold);
  z-index: 10 !important;
}

.product-card-img {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAF7F2;
  border: 1px solid rgba(200, 157, 66, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.product-card-body {
  padding: 18px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #FBF8F2;
}

.product-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.product-card-link .link-arrow {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.product-card-link:hover {
  color: var(--color-primary-dark);
}

.product-card-link:hover .link-arrow {
  transform: translateX(4px);
}

.product-card-link:hover {
  color: var(--color-accent-gold);
}

/* ----------------------------------------------------
   5. ABOUT US & WHY CHOOSE US (EXACT MATCH REPLICATION)
   ---------------------------------------------------- */
.about-why-section {
  position: relative;
  background: #FAF7F2;
  overflow: hidden;
  padding: 0 0 40px 0;
}

.about-top-banner {
  position: relative;
  background-color: #EDEBDF;
  padding: 10px 0 60px 0;
  min-height: 280px;
  overflow: hidden;
}

.about-bg-leaves {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.about-bg-leaves img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.about-top-banner .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
}

.about-slant-card {
  width: 100%;
  max-width: 48%;
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 0;
}

.about-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 16px 0 28px 0;
  max-width: 540px;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.stat-item-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-inline-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 157, 66, 0.4);
  background: rgba(200, 157, 66, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-inline-text {
  display: flex;
  flex-direction: column;
}

.stat-inline-num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1;
}

.stat-inline-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  margin-top: 2px;
}

.btn-know-more {
  background-color: #05112E;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(5, 17, 46, 0.2);
  transition: var(--transition-fast);
}

.btn-know-more:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Floating Bottom Bar */
.about-bottom-bar-container {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.why-floating-bar {
  background: #05112E;
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.why-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 8px;
}

.why-bar-item:last-child {
  border-right: none;
}

.why-bar-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(229, 195, 120, 0.6);
  background: rgba(229, 195, 120, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.why-bar-content h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 2px;
}

.why-bar-content p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

/* ----------------------------------------------------
   5.5 CERTIFICATIONS & STATS STRIP
   ---------------------------------------------------- */
.cert-stats-section {
  padding: 0 0 60px 0;
  background: #FAF7F2;
}

.cert-stats-wrapper {
  display: flex;
  align-items: stretch;
  filter: drop-shadow(0 15px 35px rgba(5, 17, 46, 0.18));
  margin-top: 36px;
}

.cert-panel {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cert-header {
  font-size: 0.65rem;
  font-weight: 800;
  color: #506080;
  background: #FFFFFF;
  display: inline-block;
  padding: 10px 30px 10px 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: none;
  border-radius: 12px 0 0 0;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
  position: absolute;
  top: 1px;
  left: 0;
  transform: translateY(-100%);
  z-index: 2;
}

.cert-logos-grid {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-right: none;
  border-radius: 0 0 0 12px;
  padding: 16px 40px 16px 16px;
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  flex: 1;
}

.cert-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #F0EBE1;
  border-radius: 8px;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-2px);
  border-color: #E5C378;
}

.cert-icon-wrapper {
  height: 36px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.cert-desc {
  font-size: 0.55rem;
  color: var(--color-text-muted);
  margin-top: 2px;
  line-height: 1.2;
}

.stats-panel {
  flex: 0.8;
  background: var(--color-primary-dark);
  position: relative;
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -42px;
  padding: 20px 20px 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 12px 12px 0;
  z-index: 1;
}

.stat-box-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

.stat-box-vertical:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-icon-gold {
  margin-bottom: 10px;
}

.stat-icon-gold svg {
  width: 28px;
  height: 28px;
  stroke: #C89D42;
  fill: none;
  stroke-width: 1.5;
}

.stat-num-white {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-lbl-white {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ----------------------------------------------------
   6. QUALITY PROCESS SECTION (GSAP PIN SCROLL STEPPER)
   ---------------------------------------------------- */

/* Tall scroll spacer provides the scroll distance while content stays pinned */
.process-scroll-spacer {
  position: relative;
  height: 350vh;
  /* 6 steps × ~50vh each + buffer */
}

/* Sticky pinned panel — stays fixed on viewport while spacer scrolls behind */
.process-section.process-pinned {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: var(--color-bg-cream);
  overflow: hidden;
  z-index: 5;
}

.stepper-header-wrapper {
  position: relative;
  margin: 40px 0 50px 0;
  padding: 0 10px;
}

.stepper-progress-track {
  position: absolute;
  top: 32px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: var(--color-border);
  border-radius: 4px;
  z-index: 1;
}

.stepper-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent-gold) 0%, #05112E 100%);
  border-radius: 4px;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 12px rgba(200, 157, 66, 0.4);
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.process-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FAF7F2;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 12px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.35, 0.64, 1);
}

.process-number {
  position: absolute;
  top: -8px;
  background: #FAF7F2;
  color: var(--color-text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  transition: var(--transition-fast);
}

.process-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

/* Active & Completed Stepper Node Styles */
.process-step.active .process-icon-circle,
.process-step.completed .process-icon-circle {
  background: #05112E;
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(5, 17, 46, 0.25);
}

.process-step.active .process-number,
.process-step.completed .process-number {
  background: var(--color-accent-gold);
  color: #05112E;
  border-color: var(--color-accent-gold);
}

.process-step.active .process-title {
  color: var(--color-primary-dark);
  font-weight: 700;
}

/* Dynamic Showcase Card */
.process-showcase-card {
  background: #FAF7F2;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 36px rgba(5, 17, 46, 0.08);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  margin-top: 20px;
}

.showcase-content-left {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.showcase-step-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-accent-gold);
  margin-bottom: 12px;
}

.showcase-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
  line-height: 1.25;
  transition: opacity 0.3s ease;
}

.showcase-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  transition: opacity 0.3s ease;
}

.showcase-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlight-pill {
  background: #FAF7F2;
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.showcase-image-right {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.showcase-img-frame {
  width: 100%;
  height: 100%;
  position: relative;
}

.showcase-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, opacity 0.5s ease;
}

.showcase-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(5, 17, 46, 0.85);
  backdrop-filter: blur(8px);
  color: #E5C378;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(229, 195, 120, 0.4);
}

/* ----------------------------------------------------
   7. GLOBAL MARKETS & MAP SECTION (WHITE & GOLDEN THEME)
   ---------------------------------------------------- */
.global-markets-section {
  padding: clamp(50px, 7vw, 85px) 0;
  background: radial-gradient(circle at 75% 50%, rgba(229, 195, 120, 0.16) 0%, rgba(255, 255, 255, 0.98) 65%), linear-gradient(135deg, #FFFFFF 0%, #FAF7F2 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 157, 66, 0.2);
  border-bottom: 1px solid rgba(200, 157, 66, 0.2);
}

.gold-text-accent {
  color: #C89D42;
  font-style: italic;
}

.global-markets-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  background: #FFFFFF;
  border-radius: clamp(16px, 2vw, 24px);
  padding: clamp(24px, 4vw, 44px) clamp(20px, 4vw, 48px);
  border: 1px solid rgba(200, 157, 66, 0.3);
  box-shadow: 0 16px 48px rgba(200, 157, 66, 0.1);
}

.global-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 16px 0 28px 0;
}

.global-stats-mini {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.global-stat-box {
  background: #FAF7F2;
  border: 1px solid rgba(200, 157, 66, 0.3);
  padding: 12px 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}

.stat-gold-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.stat-gold-lbl {
  font-size: 0.75rem;
  color: var(--color-accent-gold);
  font-weight: 600;
}

.btn-gold-theme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(135deg, #05112E 0%, #0A1B40 100%);
  color: #FFFFFF;
  border: 1px solid rgba(229, 195, 120, 0.4);
  box-shadow: 0 6px 20px rgba(5, 17, 46, 0.18);
  transition: var(--transition-fast);
}

.btn-gold-theme:hover {
  background: #C89D42;
  color: #05112E;
  border-color: #C89D42;
  transform: translateY(-2px);
}

.world-map-wrapper {
  position: relative;
  width: 100%;
}

.map-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 157, 66, 0.4);
  padding: 10px 16px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(200, 157, 66, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  transition: transform 0.3s ease;
}

.map-floating-badge:hover {
  transform: translateY(-4px);
}

.badge-top-right {
  top: 10px;
  right: 15px;
}

.badge-bottom-left {
  bottom: 10px;
  left: 15px;
}

.map-floating-badge strong {
  display: block;
  font-size: 0.8rem;
  color: var(--color-primary-dark);
}

.map-floating-badge small {
  font-size: 0.7rem;
  color: var(--color-accent-gold);
  font-weight: 600;
}

.world-map-stage {
  width: 100%;
  height: 320px;
  background: radial-gradient(circle at center, rgba(250, 247, 242, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 20px;
  border: 1px solid rgba(200, 157, 66, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.world-map-img {
  width: 96%;
  height: 96%;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 8px 20px rgba(200, 157, 66, 0.15));
}

/* Radar Pulse Animations for Hub Pin */
@keyframes radarPulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.radar-pulse-ring {
  transform-origin: 635px 185px;
  animation: radarPulse 2.4s infinite ease-out;
}

.radar-pulse-ring-outer {
  transform-origin: 635px 185px;
  animation: radarPulse 2.4s infinite ease-out 0.8s;
}

/* Animated Trade Arcs */
@keyframes dashTravel {
  to {
    stroke-dashoffset: -24;
  }
}

.trade-arc-line {
  animation: dashTravel 1.8s linear infinite;
}

/* ----------------------------------------------------
   8. PACKAGING OPTIONS SECTION
   ---------------------------------------------------- */
.packaging-section {
  padding: clamp(48px, 7vw, 80px) 0;
  background-color: #FDFCF8;
  position: relative;
  overflow: hidden;
}

.packaging-bg-line {
  position: absolute;
  top: 15%;
  width: 40%;
  height: 1px;
  background: var(--color-accent-gold);
  opacity: 0.3;
  z-index: 0;
}

.packaging-bg-line.left {
  left: -10%;
  transform: rotate(15deg);
}

.packaging-bg-line.right {
  right: -10%;
  transform: rotate(-15deg);
}

.pkg-header-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.pkg-line {
  width: 40px;
  height: 1px;
  background: var(--color-accent-gold);
}

.leaf-separator {
  margin: 16px 0;
  display: flex;
  justify-content: center;
  opacity: 0.8;
}

.packaging-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.pkg-card {
  background: #F4F1EA;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: var(--transition-medium);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(93, 124, 83, 0.12);
}

.pkg-botanical-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.pkg-img-wrapper {
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 20px 0 20px;
  z-index: 2;
}

.pkg-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
}

.pkg-content {
  background: #FFFFFF;
  margin: 0 8px 8px 8px;
  border-radius: 16px;
  padding: 12px 20px 20px 20px;
  position: relative;
  z-index: 3;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.02);
}

.pkg-content::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 20px;
  width: 76px;
  height: 76px;
  background: #FFFFFF;
  border-radius: 50%;
  z-index: -1;
}

.pkg-header {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 16px;
  padding-left: 90px;
  min-height: 48px;
}

.pkg-icon {
  position: absolute;
  top: -34px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #05112E;
  border: 1.5px solid var(--color-accent-gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.pkg-icon svg {
  width: 28px;
  height: 28px;
}

.pkg-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pkg-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #05112E;
}

.pkg-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
}

.pkg-subtitle.gold-text {
  color: var(--color-accent-gold);
}

.pkg-subtitle.green-text {
  color: #05112E;
}

.pkg-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
}

.pkg-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  text-align: left;
}

/* ----------------------------------------------------
   9. INFRASTRUCTURE SECTION
   ---------------------------------------------------- */
.infra-section {
  padding: clamp(40px, 6vw, 60px) 0;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.infra-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-fast);
}

.infra-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.infra-img {
  height: 180px;
  overflow: hidden;
}

.infra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-fast);
}

.infra-card:hover .infra-img img {
  transform: scale(1.05);
}

.infra-caption {
  padding: 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  background: var(--color-bg-card);
}

/* ----------------------------------------------------
   10. CERTIFICATIONS & STATS SECTION (REPLACED BY STRIP COMPONENT)
   ---------------------------------------------------- */

/* ----------------------------------------------------
   11. TESTIMONIALS & FAQ SECTION
   ---------------------------------------------------- */
.testimonials-faq-section {
  padding: clamp(36px, 5vw, 60px) 0;
}

.tf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  perspective: 1000px;
}

/* Initial Stacked Card Deck position */
.testimonials-grid:not(.deck-unfolded) .testimonial-card {
  transition-delay: 0s !important;
}

.testimonials-grid:not(.deck-unfolded) .testimonial-card:nth-child(1) {
  transform: translate3d(108%, 40px, -120px) rotate(-14deg) scale(0.86);
  opacity: 0.15;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.testimonials-grid:not(.deck-unfolded) .testimonial-card:nth-child(2) {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1.04);
  opacity: 0.9;
  box-shadow: 0 24px 50px rgba(5, 17, 46, 0.22);
  z-index: 5;
}

.testimonials-grid:not(.deck-unfolded) .testimonial-card:nth-child(3) {
  transform: translate3d(-108%, 40px, -120px) rotate(14deg) scale(0.86);
  opacity: 0.15;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Dealt Out State */
.testimonials-grid.deck-unfolded .testimonial-card {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1) !important;
  opacity: 1 !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05) !important;
  z-index: 4;
}

.testimonials-grid.deck-unfolded .testimonial-card:nth-child(1) {
  transition-delay: 0.05s;
}

.testimonials-grid.deck-unfolded .testimonial-card:nth-child(2) {
  transition-delay: 0.25s;
}

.testimonials-grid.deck-unfolded .testimonial-card:nth-child(3) {
  transition-delay: 0.45s;
}

.testimonial-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: var(--transition-fast);
  will-change: transform, opacity;
  position: relative;
  overflow: hidden;
}

.testimonial-bg-leaves {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  opacity: 0.08;
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 0;
}


.testimonial-card:hover {
  transform: translateY(-12px) scale(1.03) !important;
  box-shadow: 0 22px 45px rgba(5, 17, 46, 0.18) !important;
  border-color: var(--color-accent-gold);
}

.quote-mark {
  color: var(--color-accent-gold);
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-gold);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-info {
  text-align: left;
}

.author-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.author-info p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ----------------------------------------------------
   11.5 ULTRA-PREMIUM FAQ SECTION
   ---------------------------------------------------- */
.premium-faq-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 140px) 0;
  background-color: #F8F5EF;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  overflow: hidden;
  z-index: 1;
}

/* Background Layers */
.faq-bg-botanical {
  position: absolute;
  width: 500px;
  opacity: 0.03;
  z-index: -1;
  pointer-events: none;
}

.faq-bg-botanical.top-right {
  top: -80px;
  right: -80px;
  transform: rotate(-12deg);
}

.faq-bg-botanical.bottom-left {
  bottom: -80px;
  left: -80px;
  transform: rotate(-12deg);
}

.faq-bg-gold-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(#C89A3D 0.5px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

/* Layout */
.faq-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.faq-gold-line {
  width: 30px;
  height: 1px;
  background-color: #C89A3D;
}

.faq-label {
  font-size: 14px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #C89A3D;
  font-weight: 600;
}

.faq-main-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #05112E;
  margin-bottom: 12px;
}

.faq-leaf-divider {
  margin-bottom: 24px;
}

.faq-description {
  max-width: 700px;
  margin: 0 auto;
  color: #646464;
  font-size: 1.05rem;
  line-height: 1.6;
  padding-bottom: 25px;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.premium-faq-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  border: 1px solid rgba(180, 165, 135, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(.22, .61, .36, 1), border-color 0.4s, box-shadow 0.4s;
  padding: 16px 24px 12px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
  text-align: left;
}

.premium-faq-card:last-child {
  margin-bottom: 0;
}

.premium-faq-card:hover {
  transform: translateY(-4px) scale(1.005);
  border-color: #1A2F5C;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.faq-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-card-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1A2F5C, #0A1B40);
  box-shadow: 0 6px 20px rgba(5, 17, 46, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFFFFF;
}

.faq-card-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.faq-card-question {
  flex: 1;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  color: #05112E;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}

.faq-card-toggle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(180, 165, 135, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.22, .61, .36, 1);
  position: relative;
}

.toggle-icon {
  width: 12px;
  height: 2px;
  background-color: #C89A3D;
  position: absolute;
  transition: all 0.4s cubic-bezier(.22, .61, .36, 1);
}

.toggle-icon::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: #C89A3D;
  top: -5px;
  left: 5px;
  transition: all 0.4s cubic-bezier(.22, .61, .36, 1);
}

.premium-faq-card:hover .faq-card-toggle {
  transform: rotate(90deg);
  background: #1A2F5C;
  border-color: #1A2F5C;
}

.premium-faq-card:hover .toggle-icon,
.premium-faq-card:hover .toggle-icon::after {
  background-color: #FFFFFF;
}

/* Expanded State overrides */
.premium-faq-card.expanded .faq-card-toggle {
  transform: rotate(180deg);
  background: #1A2F5C;
  border-color: #1A2F5C;
}

.premium-faq-card.expanded .toggle-icon,
.premium-faq-card.expanded .toggle-icon::after {
  background-color: #FFFFFF;
}

.premium-faq-card.expanded .toggle-icon::after {
  transform: scaleY(0);
}

/* Accordion Animation Logic */
.faq-card-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.7s cubic-bezier(.22, .61, .36, 1);
}

.premium-faq-card.expanded .faq-card-body {
  grid-template-rows: 1fr;
}

.faq-card-content {
  overflow: hidden;
  display: flex;
  gap: 24px;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, clip-path 0.7s cubic-bezier(.22, .61, .36, 1);
  padding-top: 0;
}

.premium-faq-card.expanded .faq-card-content {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
  padding-top: 16px;
  min-height: 90px;
}

.faq-card-answer {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  max-width: 700px;
  padding-left: 60px;
}

.faq-card-artwork {
  position: absolute;
  right: 24px;
  bottom: 16px;
  width: 240px;
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(.22, .61, .36, 1);
}

.premium-faq-card.expanded .faq-card-artwork {
  opacity: 1;
  transform: translateY(10px);
}

.premium-faq-card:hover .faq-card-artwork {
  transform: translateY(5px);
}

.artwork-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(210, 195, 160, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.artwork-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: scale(1.2) translateX(15px);
}

/* Bottom Floating Info Bar */
.faq-bottom-bar {
  height: 120px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(185, 165, 130, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.faq-info-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
  margin-top: -24px;
}

.faq-info-icon {
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 50%;
  border: 1px solid rgba(185, 165, 130, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C89A3D;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-info-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #05112E;
  margin-bottom: 4px;
}

.faq-info-text p {
  font-size: 0.75rem;
  color: #666666;
}

.faq-info-divider {
  width: 1px;
  height: 40px;
  background: rgba(200, 154, 61, 0.3);
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .faq-bottom-bar {
    height: auto;
    flex-wrap: wrap;
    padding: 30px;
    gap: 30px;
    margin-top: 40px;
  }

  .faq-info-col {
    width: 45%;
    margin-top: 0;
  }

  .faq-info-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .faq-main-title {
    font-size: 42px;
  }

  .premium-faq-card {
    border-radius: 22px;
    padding: 24px;
  }

  .faq-card-question {
    font-size: 24px;
  }

  .faq-card-icon-wrapper {
    width: 52px;
    height: 52px;
  }

  .faq-card-answer {
    padding-left: 0;
  }

  .faq-card-content {
    flex-direction: column;
    gap: 20px;
  }

  .faq-card-artwork {
    width: 100%;
    height: 120px;
  }

  .faq-info-col {
    width: 100%;
  }
}

/* ----------------------------------------------------
   12. CTA BANNER
   ---------------------------------------------------- */
.cta-banner-section {
  padding: 60px 0 0 0;
  background: linear-gradient(rgba(5, 17, 46, 0.6), rgba(5, 17, 46, 0.6)), url('assets/images/Let-Grow-Together.png') center/cover no-repeat;
}

.cta-banner {
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  gap: 40px;
}

.cta-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  flex: 1;
  padding-bottom: 80px;
}

.cta-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.cta-right img {
  margin-bottom: -70px;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner .btn-primary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid var(--color-accent-gold);
  padding: 18px 48px;
  font-size: 1.1rem;
  border-radius: 8px;
}

.cta-banner .btn-primary:hover {
  background: #05112E;
  border-color: #05112E;
  color: #FFFFFF;
}

/* ----------------------------------------------------
   13. FOOTER
   ---------------------------------------------------- */
.footer {
  background-color: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-info-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ============================================================
   MOBILE NAVIGATION OVERLAY
   ============================================================ */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 17, 46, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 32px 40px 32px;
  overflow-y: auto;
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.mobile-nav-close:hover {
  background: rgba(200, 157, 66, 0.25);
}

.mobile-nav-logo-wrap {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav-logo-icon {
  width: 36px;
  height: 36px;
  background: #C89D42;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05112E;
}

.mobile-nav-brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  max-width: 360px;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 5vw, 1.8rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.25s ease;
  width: 100%;
  letter-spacing: 0.5px;
}

.mobile-nav-links a:hover {
  background: rgba(200, 157, 66, 0.15);
  color: #C89D42;
}

.mobile-nav-divider {
  width: 60px;
  height: 1px;
  background: rgba(200, 157, 66, 0.4);
  margin: 20px 0;
}

.mobile-nav-cta {
  margin-top: 8px;
}

.mobile-nav-cta .btn-primary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid var(--color-accent-gold);
  padding: 14px 40px;
  font-size: 1rem;
  border-radius: 8px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-nav-cta .btn-primary:hover {
  background: var(--color-accent-gold);
  color: #05112E;
}

/* ============================================================
   @1280 — Large Laptop
   ============================================================ */
@media (max-width: 1280px) {
  .nav-menu {
    gap: 20px;
  }

  .cert-stats-wrapper {
    flex-direction: column;
    filter: none;
    box-shadow: 0 8px 24px rgba(5, 17, 46, 0.12);
    border-radius: 12px;
    overflow: hidden;
  }

  .stats-panel {
    clip-path: none;
    margin-left: 0;
    padding: 24px;
    border-radius: 0 0 12px 12px;
    justify-content: space-around;
  }

  .cert-logos-grid {
    border-radius: 12px 12px 0 0;
    border-right: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: none;
    padding: 16px;
    flex-wrap: wrap;
  }

  .cert-header {
    border-radius: 12px 0 0 0;
  }

  .stat-box-vertical::after {
    display: none;
  }
}

/* ============================================================
   @1024 — Tablet Landscape
   ============================================================ */
@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
    padding: 120px 0 100px 0;
    background-position: center top;
  }

  .about-bg-leaves {
    width: 100%;
    opacity: 0.25;
    clip-path: none;
  }

  .about-slant-card {
    max-width: 65%;
  }

  .why-floating-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .why-bar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
  }

  .why-bar-item:nth-child(3n) {
    border-bottom: none;
  }

  .why-bar-item:last-child {
    border-bottom: none;
  }

  .features-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .feature-bar-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-right: 0;
    padding-bottom: 8px;
  }

  .feature-bar-item:nth-child(3n) {
    border-bottom: none;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .packaging-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .global-markets-grid {
    grid-template-columns: 1fr;
  }

  .world-map-stage {
    height: 280px;
  }

  .process-showcase-card {
    grid-template-columns: 1fr;
  }

  .showcase-content-left {
    padding: 32px;
  }

  .showcase-image-right {
    min-height: 280px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .faq-bottom-bar {
    height: auto;
    flex-wrap: wrap;
    padding: 24px;
    gap: 20px;
    margin-top: 0;
  }

  .faq-info-col {
    width: 45%;
    margin-top: 0;
  }

  .faq-info-divider {
    display: none;
  }
}

/* ============================================================
   @992 — Small Tablet
   ============================================================ */
@media (max-width: 992px) {
  .navbar .btn-primary {
    display: none;
  }

  .features-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-bar-item:nth-child(even) {
    border-right: none;
  }

  .why-floating-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-bar-item:nth-child(2n) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    perspective: none;
  }

  .testimonials-grid:not(.deck-unfolded) .testimonial-card:nth-child(1),
  .testimonials-grid:not(.deck-unfolded) .testimonial-card:nth-child(3) {
    transform: none;
    opacity: 1;
    z-index: 1;
  }

  .about-slant-card {
    max-width: 100%;
  }

  .about-top-banner {
    min-height: auto;
    padding: 10px 0 40px 0;
  }

  .about-bg-leaves {
    opacity: 0.15;
  }

  .about-bottom-bar-container {
    margin-top: 0;
  }
}

/* ============================================================
   @768 — Tablet Portrait
   ============================================================ */
@media (max-width: 768px) {

  /* Navbar */
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-section {
    min-height: 100svh;
    padding: 100px 0 70px 0;
    background-position: center top;
    background-size: cover;
  }

  .hero-countries {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-buttons {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Features bar */
  .features-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 16px;
  }

  .feature-bar-item {
    border-right: none;
    padding-right: 0;
  }

  /* About */
  .about-slant-card {
    max-width: 100%;
    padding: 0 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-bg-leaves {
    width: 100%;
    clip-path: none;
  }

  .about-bg-leaves img {
    opacity: 0.12 !important;
  }

  .about-bottom-bar-container {
    margin-top: 0;
    position: relative;
    z-index: 1;
  }

  .why-floating-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    border-radius: 12px;
  }

  .why-bar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
  }

  .why-bar-item:last-child,
  .why-bar-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  /* Cert/Stats */
  .cert-stats-wrapper {
    flex-direction: column;
    filter: none;
    box-shadow: 0 8px 24px rgba(5, 17, 46, 0.12);
    border-radius: 12px;
    overflow: hidden;
  }

  .cert-logos-grid {
    flex-wrap: wrap;
    border-radius: 12px 12px 0 0;
    border-right: 1px solid rgba(0, 0, 0, 0.04);
    padding: 16px;
    gap: 8px;
  }

  .stats-panel {
    clip-path: none;
    margin-left: 0;
    border-radius: 0 0 12px 12px;
    padding: 20px 16px;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 16px;
  }

  .stat-box-vertical::after {
    display: none;
  }

  /* Process */
  .process-scroll-spacer {
    height: 500vh;
  }

  .process-section.process-pinned {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 80px 0 20px 0;
    align-items: flex-start;
    overflow-y: auto;
  }

  .process-showcase-card {
    grid-template-columns: 1fr;
  }

  .showcase-content-left {
    padding: 24px;
  }

  .showcase-image-right {
    min-height: 250px;
  }

  .stepper-progress-track {
    display: none;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Global map */
  .global-markets-grid {
    grid-template-columns: 1fr;
  }

  .global-stats-mini {
    flex-wrap: wrap;
    gap: 12px;
  }

  .world-map-stage {
    height: 240px;
  }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Disable 3D deck on tablet */
  .products-grid:not(.deck-unfolded) .product-card:nth-child(1),
  .products-grid:not(.deck-unfolded) .product-card:nth-child(3) {
    transform: none;
    opacity: 1;
    z-index: 1;
  }

  /* Packaging — Horizontal Swipe Slider */
  .packaging-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
    margin-top: 30px;
    scrollbar-width: none;         /* Firefox */
  }

  .packaging-grid::-webkit-scrollbar {
    display: none;                 /* Chrome/Safari */
  }

  .pkg-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
  }

  /* Infra */
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    perspective: none;
  }

  .testimonials-grid:not(.deck-unfolded) .testimonial-card:nth-child(1),
  .testimonials-grid:not(.deck-unfolded) .testimonial-card:nth-child(3) {
    transform: none;
    opacity: 1;
    z-index: 1;
  }

  /* FAQ */
  .premium-faq-card {
    border-radius: 16px;
    padding: 16px;
  }

  .faq-card-question {
    font-size: clamp(0.95rem, 3vw, 1.05rem);
  }

  .faq-card-answer {
    padding-left: 0;
    font-size: 14px;
  }

  .faq-card-content {
    flex-direction: column;
    gap: 16px;
  }

  .faq-card-artwork {
    display: none;
  }

  .faq-header {
    margin-bottom: 36px;
  }

  .faq-bottom-bar {
    height: auto;
    flex-wrap: wrap;
    padding: 20px;
    gap: 16px;
    border-radius: 20px;
  }

  .faq-info-col {
    width: 45%;
    margin-top: 0;
  }

  .faq-info-divider {
    display: none;
  }

  /* CTA */
  .cta-banner {
    flex-direction: column;
    gap: 24px;
  }

  .cta-left {
    padding-bottom: 0;
  }

  .cta-right {
    justify-content: center;
  }

  .cta-right img {
    margin-bottom: 0;
    max-height: 260px;
    width: auto;
    margin: 0 auto;
    transform: translateY(20%);
  }

  .cta-banner .btn-primary {
    padding: 14px 32px;
    font-size: 0.95rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* ============================================================
   @640 — Large Mobile
   ============================================================ */
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .features-bar {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-bar-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
    padding-right: 0;
  }

  .feature-bar-item:last-child {
    border-bottom: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-grid:not(.deck-unfolded) .product-card:nth-child(1),
  .products-grid:not(.deck-unfolded) .product-card:nth-child(2),
  .products-grid:not(.deck-unfolded) .product-card:nth-child(3) {
    transform: none;
    opacity: 1;
    z-index: 1;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  }

  .pkg-card {
    flex: 0 0 260px;
  }

  .infra-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }



  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .faq-info-col {
    width: 100%;
  }

  .faq-bottom-bar {
    border-radius: 16px;
    padding: 16px 14px;
  }

  .stepper-header-wrapper {
    margin: 16px 0 24px 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .showcase-content-left {
    padding: 20px;
  }

  .stats-row {
    gap: 12px;
  }

  .stat-item-inline {
    width: calc(50% - 6px);
  }

  .cert-logos-grid {
    flex-wrap: wrap;
    gap: 8px;
  }

  .section-header-center {
    margin-bottom: 28px;
  }

  .features-bar-section {
    margin-top: 0;
    padding-bottom: 30px;
  }

  .features-bar {
    border-radius: 12px;
    padding: 12px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   @480 — Mobile
   ============================================================ */
@media (max-width: 480px) {
  .hero-section {
    padding: 90px 0 60px 0;
  }

  .hero-title {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .faq-card-icon-wrapper {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .faq-card-icon-wrapper svg {
    width: 16px;
    height: 16px;
  }

  .faq-card-question {
    font-size: 0.9rem;
  }

  .premium-faq-card {
    padding: 14px;
    margin-bottom: 14px;
  }

  .process-icon-circle {
    width: 48px;
    height: 48px;
  }

  .cta-banner-section {
    padding: 40px 0 0 0;
  }

  .cta-right img {
    max-height: 220px;
  }

  .global-stat-box {
    flex: 1;
    min-width: 110px;
  }

  .world-map-stage {
    height: 200px;
  }

  .about-top-banner {
    padding: 10px 0 40px 0;
    min-height: auto;
  }

  .pkg-img-wrapper {
    height: 220px;
  }

  .infra-img {
    height: 160px;
  }
}

/* ============================================================
   @390 — Medium Mobile (iPhone 14 Pro)
   ============================================================ */
@media (max-width: 390px) {
  .container {
    padding: 0 14px;
  }

  .logo-title {
    font-size: 1rem;
  }

  .logo-tagline {
    display: none;
  }

  .navbar {
    padding: 16px 0;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .faq-card-question {
    font-size: 0.85rem;
  }

  .faq-card-header {
    gap: 10px;
  }

  .faq-card-toggle {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .global-markets-grid {
    padding: 18px 14px;
  }

  .world-map-stage {
    height: 190px;
  }

  .pkg-img-wrapper {
    height: 200px;
  }

  .showcase-content-left {
    padding: 18px 14px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .process-icon-circle {
    width: 44px;
    height: 44px;
  }

  .footer-grid {
    gap: 20px;
  }

  .faq-bottom-bar {
    padding: 14px 12px;
    gap: 14px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .cert-logos-grid {
    padding: 12px;
    gap: 8px;
  }

  .cert-card {
    min-width: 72px;
  }
}

/* ============================================================
   @360 — Small Mobile
   ============================================================ */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 1.45rem;
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .faq-main-title {
    font-size: 1.4rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-title {
    font-size: 0.9rem;
  }

  .process-icon-circle {
    width: 40px;
    height: 40px;
  }

  .process-icon-circle svg {
    width: 18px;
    height: 18px;
  }

  .process-title {
    font-size: 0.72rem;
  }

  .world-map-stage {
    height: 170px;
  }

  .pkg-img-wrapper {
    height: 180px;
  }

  .cta-right img {
    max-height: 180px;
  }

  .faq-info-icon {
    width: 40px;
    height: 40px;
  }

  .stats-panel {
    gap: 10px;
    padding: 16px 12px;
  }

  .infra-img {
    height: 140px;
  }

  .highlight-pill {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

/* ============================================================
   @320 — Minimum Supported Width
   ============================================================ */
@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 0.82rem;
  }

  .faq-main-title {
    font-size: 1.2rem;
  }

  .faq-card-question {
    font-size: 0.82rem;
  }

  .navbar {
    padding: 12px 0;
  }

  .logo-title {
    font-size: 0.82rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .stats-panel {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .stat-box-vertical {
    width: 100%;
  }

  .global-markets-grid {
    border-radius: 12px;
  }

  .world-map-stage {
    height: 150px;
  }

  .cta-right img {
    max-height: 160px;
  }

  .showcase-highlights {
    gap: 8px;
  }

  .footer-col h4 {
    font-size: 0.85rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }
}
/* Decorative Elements for Testimonials */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.luxury-soft-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(247,232,190,.35) 0%,
        rgba(247,232,190,.18) 35%,
        rgba(247,232,190,.08) 60%,
        transparent 100%
    );
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
    transform: translate(-20%, 20%) rotate(-15deg);
}
.luxury-wave-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 0;
    pointer-events: none;
}
/* ============================================================
   LUXURY PRODUCTS PAGE STYLES
   ============================================================ */

.luxury-products-page {
    background: var(--color-bg-cream);
}

.products-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--color-primary-dark);
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.luxury-soft-glow-hero {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at top, rgba(212,176,106,0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.products-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.products-hero .section-label {
    color: var(--color-accent-gold);
    margin-bottom: 24px;
}

.products-hero .hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.products-hero .hero-title span {
    color: var(--color-accent-gold);
    font-style: italic;
}

.products-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
}

.luxury-curved-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 10;
}

.luxury-curved-divider svg {
    width: 100%;
    height: 100%;
}

.luxury-product-section {
    padding: 120px 0;
    background: var(--color-bg-light);
}

.luxury-product-section.bg-alt {
    background: var(--color-bg-cream);
}

.luxury-product-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.luxury-product-row.reverse-row {
    flex-direction: row-reverse;
}

.product-image-editorial {
    flex: 1;
    position: relative;
}

.product-image-editorial img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-image-editorial:hover img {
    transform: translateY(-10px) scale(1.02);
}

.editorial-frame {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-accent-gold);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.5;
    transition: transform 0.6s ease;
}

.product-image-editorial:hover .editorial-frame {
    transform: translate(10px, -10px);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212,176,106,0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.product-details-editorial {
    flex: 1;
}

.product-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-accent-gold);
    border: 1px solid rgba(212,176,106,0.3);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.editorial-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    font-style: italic;
    border-left: 2px solid var(--color-accent-gold);
    padding-left: 24px;
}

.luxury-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luxury-specs-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--color-text-dark);
}

.luxury-specs-list li svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-gold);
    flex-shrink: 0;
}

.luxury-specs-list li strong {
    font-weight: 600;
    color: var(--color-text-dark);
}

@media (max-width: 992px) {
    .luxury-product-row, .luxury-product-row.reverse-row {
        flex-direction: column;
        gap: 60px;
    }
    
    .editorial-frame {
        left: 10px;
        top: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
}

/* ============================================================
   LUXURY ABOUT PAGE STYLES
   ============================================================ */

.luxury-about-page {
    background: var(--color-bg-cream);
}

.about-hero {
    position: relative;
    padding: 180px 0 120px;
    background: var(--color-primary-dark);
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero .section-label {
    color: var(--color-accent-gold);
    margin-bottom: 24px;
    letter-spacing: 3px;
}

.about-hero .hero-title {
    font-size: clamp(3.5rem, 7vw, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-hero .hero-title span {
    color: var(--color-accent-gold);
    font-style: italic;
    font-weight: 400;
}

.about-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
}

.legacy-story-section {
    padding: 120px 0;
    background: var(--color-bg-cream);
}

.luxury-story-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-image-editorial {
    flex: 1;
    position: relative;
}

.story-image-editorial img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.story-details-editorial {
    flex: 1.2;
}

.core-values-section {
    padding: 120px 0;
}

.luxury-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card-premium {
    background: var(--color-bg-card);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.value-card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(212,176,106,0.08) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.value-card-premium:hover::before {
    opacity: 1;
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--color-bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-gold);
    border: 1px solid rgba(212,176,106,0.3);
    transition: transform 0.4s ease;
}

.value-card-premium:hover .value-icon-wrapper {
    transform: scale(1.1);
    background: var(--color-accent-gold);
    color: #fff;
}

.value-title {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.value-desc {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.global-footprint-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #020713 100%);
    position: relative;
    overflow: hidden;
}

.global-footprint-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(212,176,106,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.global-footprint-cta .cta-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.text-white {
    color: #fff !important;
}

@media (max-width: 992px) {
    .luxury-story-row {
        flex-direction: column;
    }
}
/* ============================================================
   LUXURY CONTACT PAGE STYLES (GLASSMORPHISM)
   ============================================================ */

.luxury-contact-page {
    background: var(--color-bg-cream);
    min-height: 100vh;
}

.contact-hero {
    position: relative;
    padding: 160px 0 250px;
    background: var(--color-primary-dark);
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.1;
    background-image: radial-gradient(var(--color-accent-gold) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.contact-card-section {
    position: relative;
    margin-top: -180px;
    padding-bottom: 120px;
    z-index: 10;
}

.contact-glass-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Left Panel - Dark Info */
.contact-info-panel {
    flex: 0 0 40%;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #020713 100%);
    color: #fff;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.info-bg-overlay {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212,176,106,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.info-content-relative {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-title {
    font-size: 2rem;
    font-family: var(--font-serif);
    margin-bottom: 16px;
    color: var(--color-bg-cream);
}

.info-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-details-list {
    margin-bottom: auto;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(212,176,106,0.1);
    border: 1px solid rgba(212,176,106,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon {
    background: var(--color-accent-gold);
    color: #fff;
    transform: scale(1.1);
}

.detail-text {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 500;
}

.social-links-glass {
    display: flex;
    gap: 16px;
    margin-top: 50px;
}

.social-links-glass a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links-glass a:hover {
    background: var(--color-accent-gold);
    transform: translateY(-3px);
}

/* Right Panel - Form */
.contact-form-panel {
    flex: 1;
    padding: 60px 70px;
    background: #fff;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.floating-group {
    position: relative;
    flex: 1;
}

.floating-input {
    width: 100%;
    padding: 16px 0 10px;
    font-size: 1.05rem;
    color: var(--color-text-dark);
    background: transparent;
    border: none;
    border-bottom: 1px solid #dcdcdc;
    outline: none;
    transition: all 0.3s ease;
}

.floating-textarea {
    resize: vertical;
    min-height: 100px;
}

.floating-label {
    position: absolute;
    top: 16px;
    left: 0;
    font-size: 1.05rem;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-gold);
    transition: width 0.4s ease;
}

.floating-input:focus ~ .input-focus-line,
.floating-input:not(:placeholder-shown) ~ .input-focus-line {
    width: 100%;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--color-accent-gold);
    font-weight: 600;
}

.btn-submit-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-accent-gold);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 10px 20px rgba(212,176,106,0.3);
}

.btn-submit-luxury:hover {
    background: #b58d3b;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212,176,106,0.4);
}

@media (max-width: 992px) {
    .contact-glass-wrapper {
        flex-direction: column;
    }
    .contact-info-panel, .contact-form-panel {
        padding: 40px 30px;
    }
    .form-row {
        flex-direction: column;
        gap: 30px;
    }
}

/* Packaging Slider Navigation Arrows (Mobile Only) */
.pkg-slider-nav {
    display: none;
}

@media (max-width: 768px) {
    .pkg-slider-nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .pkg-nav-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1.5px solid var(--color-accent-gold);
        background: transparent;
        color: var(--color-accent-gold);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .pkg-nav-btn:hover,
    .pkg-nav-btn:active {
        background: var(--color-accent-gold);
        color: #fff;
        transform: scale(1.08);
    }

    .pkg-nav-btn:active {
        transform: scale(0.95);
    }

    .pkg-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Brand Logo Image Overrides */
.brand-logo {
  height: 65px;
  width: auto;
  display: block;
}

.brand-logo-mobile {
  height: 55px;
  width: auto;
  display: block;
}

.brand-logo-footer {
  height: 75px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 50px;
  }
}

/* ============================================================
   FEATURES BAR � Mobile Card Redesign (matches reference image)
   ============================================================ */

/* Top botanical badge - hidden on desktop */
.fb-mobile-badge {
  display: none;
}

/* Chevron - hidden on desktop */
.fb-chevron {
  display: none;
  flex-shrink: 0;
  margin-left: auto;
}

@media (max-width: 768px) {

  .features-bar-section {
    margin-top: 0;
    padding: 0 0 40px 0;
  }

  /* Badge shown at the top center of the card */
  .fb-mobile-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #05112E;
    border: 4px solid #FDFCF8;
    box-shadow: 0 4px 16px rgba(5, 17, 46, 0.25);
    margin: 0 auto -31px auto;
    position: relative;
    z-index: 2;
  }

  /* Card */
  .features-bar {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 48px 0 8px 0 !important;
    border-radius: 20px !important;
    background: #FDFCF8 !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
  }

  /* Each row */
  .feature-bar-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 18px 20px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.07) !important;
  }

  .feature-bar-item:last-child {
    border-bottom: none !important;
  }

  /* Icon circle */
  .feature-icon-wrapper {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: #F0EDE4 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .feature-icon-wrapper svg {
    width: 34px !important;
    height: 34px !important;
  }

  /* Text */
  .feature-bar-text {
    flex: 1;
  }

  .feature-bar-text h4 {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #05112E !important;
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
  }

  .feature-bar-text p {
    font-size: 0.82rem !important;
    color: #666 !important;
    line-height: 1.4 !important;
  }

  /* Chevron arrow */
  .fb-chevron {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
  }
}

/* Desktop: hide description text in features-bar (only title shown) */
@media (min-width: 769px) {
  .feature-bar-text p {
    display: none !important;
  }

  .feature-bar-item {
    align-items: center;
    gap: 10px;
  }

  .feature-icon-wrapper {
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
    background: transparent !important;
  }

  .feature-icon-wrapper svg {
    width: 40px !important;
    height: 40px !important;
  }

  .feature-bar-text h4 {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
  }

  .fb-mobile-badge {
    display: none !important;
  }

  .fb-chevron {
    display: none !important;
  }
}

/* Fix: features-bar now has 5 items, update desktop grid */
@media (min-width: 769px) {
  .features-bar {
    grid-template-columns: repeat(5, 1fr) !important;
    justify-items: center;
  }
}
