/* ========================================================
   AZ NATIONAL TRADERS — Premium Export Website
   Design System & Styles
   ======================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Greens */
  --green-900: #041A0D;
  --green-800: #072E17;
  --green-700: #0A4D2E;
  --green-600: #0E6B3E;
  --green-500: #1B7A4A;
  --green-400: #2A9D5C;
  --green-300: #4CC77A;
  --green-200: #A0E6BC;
  --green-100: #D4F5E0;

  /* Accent Golds */
  --gold-700: #8B6914;
  --gold-600: #A9811A;
  --gold-500: #C5A24D;
  --gold-400: #D4B866;
  --gold-300: #E8C86A;
  --gold-200: #F2DC96;
  --gold-100: #FBF0D0;

  /* Neutrals */
  --dark-bg: #061A0F;
  --dark-surface: #0D2A18;
  --dark-card: #112E1F;
  --white: #FFFFFF;
  --cream: #F0EDE5;
  --cream-dim: #C8C4BA;
  --text-muted: rgba(255,255,255,0.6);
  --text-subtle: rgba(255,255,255,0.4);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #041A0D 0%, #0A4D2E 40%, #1B7A4A 70%, #C5A24D 100%);
  --gradient-gold: linear-gradient(135deg, #C5A24D, #E8C86A);
  --gradient-green: linear-gradient(135deg, #0A4D2E, #1B7A4A);
  --gradient-green-dark: linear-gradient(180deg, #072E17 0%, #041A0D 100%);
  --gradient-card: linear-gradient(145deg, rgba(17,46,31,0.8), rgba(10,77,46,0.3));
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(197,162,77,0.3);
  --shadow-green: 0 4px 24px rgba(27,122,74,0.3);
  --shadow-lift: 0 20px 60px rgba(0,0,0,0.5);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1240px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { color: var(--cream-dim); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(197,162,77,0.12);
  border: 1px solid rgba(197,162,77,0.25);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--green-900);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(197,162,77,0.5);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  background: rgba(197,162,77,0.08);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.85rem;
}

/* ---------- Keyframe Animations ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes float-delayed {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(2deg); }
  66% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-12px) scale(1.02); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(197,162,77,0.2); }
  50% { box-shadow: 0 0 40px rgba(197,162,77,0.4); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dash {
  to { stroke-dashoffset: 0; }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.4s; }

/* ---------- Section Separator (Wave) ---------- */
.section-separator {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
}

.section-separator svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ================================================================
   HEADER / NAVIGATION
   ================================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(6,26,15,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(197,162,77,0.1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

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

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--ease-bounce);
}

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

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

.nav-link {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream-dim);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-link.active {
  color: var(--gold-300);
}

.nav-cta {
  margin-left: 16px;
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Overlay */
.nav-overlay {
  display: none;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(4,26,13,0.95) 0%,
    rgba(10,77,46,0.8) 40%,
    rgba(27,122,74,0.6) 70%,
    rgba(197,162,77,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 160px 0 120px;
}

.hero-text {
  animation: fadeInLeft 1s var(--ease-out) 0.3s both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(197,162,77,0.12);
  border: 1px solid rgba(197,162,77,0.25);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 28px;
}

.hero-eyebrow svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero-title .line {
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s var(--ease-out) 0.5s both;
}

.hero-globe {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-globe svg {
  width: 100%;
  height: auto;
}

.hero-floating-badge {
  position: absolute;
  padding: 12px 20px;
  background: rgba(6,26,15,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(197,162,77,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
  white-space: nowrap;
}

.hero-floating-badge:nth-child(2) { animation-delay: -2s; }
.hero-floating-badge:nth-child(3) { animation-delay: -4s; }

.hero-floating-badge .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.badge-green { background: rgba(27,122,74,0.3); }
.badge-gold { background: rgba(197,162,77,0.3); }

/* Hero decorative elements */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  z-index: 0;
}

.hero-decor-1 {
  width: 400px;
  height: 400px;
  background: var(--green-500);
  top: 10%;
  right: -10%;
  animation: float-slow 8s ease-in-out infinite;
}

.hero-decor-2 {
  width: 300px;
  height: 300px;
  background: var(--gold-500);
  bottom: 10%;
  left: -5%;
  animation: float-slow 10s ease-in-out infinite;
  animation-delay: -3s;
}

/* ================================================================
   COMPANY OVERVIEW
   ================================================================ */
.overview {
  padding: var(--section-padding);
  background: var(--dark-bg);
  position: relative;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.overview-person {
  text-align: center;
}

.person-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.person-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.4s;
}

.person-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197,162,77,0.2);
}

.person-card:hover::before {
  opacity: 1;
}

.person-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid rgba(197,162,77,0.3);
  box-shadow: 0 0 30px rgba(197,162,77,0.15);
  transition: all 0.5s var(--ease-out);
}

.person-card:hover .person-photo {
  border-color: var(--gold-400);
  box-shadow: 0 0 40px rgba(197,162,77,0.3);
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-name {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.person-title {
  font-size: 0.85rem;
  color: var(--gold-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.overview-content {
  padding: 40px;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  position: relative;
}

.overview-content::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(197,162,77,0.3), transparent, rgba(27,122,74,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.overview-company-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,162,77,0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.overview-heading {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.overview-sub {
  font-size: 1rem;
  color: var(--gold-400);
  font-weight: 500;
  margin-bottom: 8px;
}

.overview-location {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.overview-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--cream-dim);
}

/* ================================================================
   PRODUCTS SECTION
   ================================================================ */
.products {
  padding: var(--section-padding);
  background: var(--dark-surface);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.product-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 50%, rgba(197,162,77,0.06) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(197,162,77,0.2);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-image img,
.product-card:hover .product-placeholder {
  transform: scale(1.08);
}

.product-badges {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.quality-badge {
  padding: 4px 10px;
  background: rgba(6,26,15,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197,162,77,0.3);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 1px;
}

.product-info {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.product-name {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ================================================================
   EXPORT NETWORK
   ================================================================ */
.export-network {
  padding: var(--section-padding);
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.map-container {
  position: relative;
  margin-top: 60px;
  padding: 8px;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.network-map {
  width: 100%;
  height: 480px;
  border-radius: calc(var(--radius-xl) - 8px);
  z-index: 1;
}

/* Leaflet overrides for dark theme */
.network-map .leaflet-control-zoom a {
  background: rgba(10,77,46,0.8);
  color: var(--gold-300);
  border-color: rgba(197,162,77,0.2);
}

.network-map .leaflet-control-zoom a:hover {
  background: rgba(10,77,46,1);
  color: var(--gold-400);
}

/* Custom map markers */
.map-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-marker-dot {
  width: 14px;
  height: 14px;
  background: var(--gradient-gold);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(197,162,77,0.6);
}

.map-marker-pulse {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(197,162,77,0.2);
  border-radius: 50%;
  animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 0; }
}

.map-marker-origin .map-marker-dot {
  width: 18px;
  height: 18px;
  box-shadow: 0 0 24px rgba(197,162,77,0.8);
}

.map-marker-origin .map-marker-pulse {
  width: 50px;
  height: 50px;
}

/* Destination label */
.map-label-icon {
  border: none !important;
  background: transparent !important;
}

.map-label-text {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(6,26,15,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(197,162,77,0.25);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-300);
  white-space: nowrap;
  pointer-events: none;
}

.map-destinations {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.destination-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(17,46,31,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  transition: all 0.4s var(--ease-out);
}

.destination-chip:hover {
  border-color: rgba(197,162,77,0.3);
  background: rgba(197,162,77,0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.destination-flag {
  font-size: 1.5rem;
}

.destination-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-us {
  padding: var(--section-padding);
  background: var(--dark-surface);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.why-card {
  padding: 48px 36px;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197,162,77,0.15);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: rgba(197,162,77,0.1);
  border: 1px solid rgba(197,162,77,0.2);
  transition: all 0.4s var(--ease-out);
}

.why-card:hover .why-icon {
  background: rgba(197,162,77,0.15);
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(197,162,77,0.2);
}

.why-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 1.5;
}

.why-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================================
   CERTIFICATIONS
   ================================================================ */
.certifications {
  padding: 80px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.cert-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 40px;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease-out);
  min-width: 180px;
}

.cert-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(197,162,77,0.25);
  animation: pulse-glow 2s ease-in-out infinite;
}

.cert-logo {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-logo svg {
  width: 100%;
  height: 100%;
}

.cert-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cert-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery {
  padding: var(--section-padding);
  background: var(--dark-surface);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 60px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:nth-child(1) img {
  min-height: 500px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4,26,13,0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq {
  padding: var(--section-padding);
  background: var(--dark-bg);
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.faq-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.faq-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.faq-item:hover {
  border-color: rgba(197,162,77,0.15);
}

.faq-item.active {
  border-color: rgba(197,162,77,0.25);
  box-shadow: var(--shadow-green);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  background: none;
  width: 100%;
  text-align: left;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.faq-question:hover {
  color: var(--gold-300);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197,162,77,0.1);
  border: 1px solid rgba(197,162,77,0.2);
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out);
}

.faq-item.active .faq-toggle {
  background: var(--gradient-gold);
  transform: rotate(45deg);
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 2;
}

.faq-item.active .faq-toggle svg {
  stroke: var(--green-900);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact {
  padding: var(--section-padding);
  background: var(--dark-surface);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 60px;
}

.contact-form-wrapper {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(197,162,77,0.2), transparent, rgba(27,122,74,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-subtle);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(197,162,77,0.1);
  background: rgba(255,255,255,0.06);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1rem;
  justify-content: center;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  padding: 32px;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s var(--ease-out);
}

.contact-info-card:hover {
  border-color: rgba(197,162,77,0.2);
  transform: translateX(8px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(197,162,77,0.1);
  border: 1px solid rgba(197,162,77,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.6;
}

.contact-info-value a {
  transition: color 0.3s;
}

.contact-info-value a:hover {
  color: var(--gold-300);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.6) brightness(0.7) contrast(1.2);
  transition: filter 0.4s;
}

.contact-map:hover iframe {
  filter: grayscale(0.2) brightness(0.85) contrast(1.1);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: 80px 0 0;
  background: var(--green-900);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s var(--ease-out);
}

.footer-social-link:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-social-link:hover svg {
  stroke: var(--green-900);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--cream-dim);
  fill: none;
  stroke-width: 1.5;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-300);
  margin-bottom: 24px;
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-out);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-cert-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-cert-badge {
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cream-dim);
  letter-spacing: 1px;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--gold-300);
}

/* ================================================================
   SECTION WAVE SEPARATORS
   ================================================================ */
.wave-separator {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.wave-separator.flip {
  transform: rotate(180deg);
}

.wave-separator svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ---------- Privacy Policy Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,26,13,0.92);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lift);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--ease-out);
}

.modal-overlay.open .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}

.modal-close:hover {
  background: rgba(197,162,77,0.15);
  border-color: rgba(197,162,77,0.3);
  color: var(--gold-300);
}

.modal-body {
  padding: 28px 36px 36px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(197,162,77,0.2) transparent;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgba(197,162,77,0.2);
  border-radius: 3px;
}

.modal-body p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 16px;
}

.modal-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-300);
  margin: 28px 0 12px;
}

.modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.modal-body ul li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

.modal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  opacity: 0.6;
}

.modal-body a {
  color: var(--gold-300);
  text-decoration: none;
}

.modal-body a:hover {
  text-decoration: underline;
}

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .overview-person:last-child {
    grid-column: span 2;
    justify-self: center;
    max-width: 300px;
  }

  .overview-person:nth-last-child(3) {
    grid-column: span 2;
    justify-self: center;
    max-width: 300px;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 140px 0 80px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .overview-person:last-child {
    grid-column: auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-item:nth-child(1) img {
    min-height: 300px;
  }
}

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

  /* Mobile Nav */
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(6,26,15,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: visibility 0.4s, opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  }

  .nav-overlay.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .nav-overlay .nav-link {
    font-size: 1.3rem;
    padding: 14px 28px;
  }

  .nav-overlay .nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }

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

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

  .gallery-item:nth-child(1) {
    grid-column: auto;
  }

  .map-destinations {
    gap: 16px;
  }

  .network-map {
    height: 320px;
  }

  .cert-track {
    gap: 24px;
  }

  .cert-item {
    min-width: 140px;
    padding: 24px;
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .hero-stat {
    text-align: center;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .overview-content {
    padding: 28px;
  }

  h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  .product-image {
    height: 200px;
  }

  .product-info {
    padding: 20px;
  }

  .contact-map {
    height: 160px;
  }

  .contact-info-card {
    padding: 24px;
  }

  .why-card {
    padding: 36px 24px;
  }

  .person-photo {
    width: 120px;
    height: 120px;
  }

  .person-card {
    padding: 28px 20px;
  }

  .footer {
    padding: 56px 0 0;
  }

  .wave-separator svg {
    height: 60px;
  }

  .container {
    padding: 0 20px;
  }

  .iti__dropdown-content {
    max-width: min(320px, calc(100vw - 40px));
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 48px 0;
  }

  .hero-content {
    padding: 100px 0 60px;
  }

  h1 {
    font-size: 2rem;
  }

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

  .hero-stat-value {
    font-size: 1.8rem;
  }

  .product-image {
    height: 180px;
  }

  .product-badges {
    top: 10px;
    right: 10px;
  }

  .product-info {
    padding: 16px;
  }

  .product-name {
    font-size: 1.1rem;
  }

  .gallery-item img {
    min-height: 180px;
  }

  .gallery-item:nth-child(1) img {
    min-height: 200px;
  }

  .contact-form-wrapper {
    padding: 24px 16px;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .contact-map {
    height: 140px;
  }

  .contact-info-label {
    font-size: 0.75rem;
  }

  .contact-info-value {
    font-size: 0.85rem;
  }

  .why-card {
    padding: 28px 20px;
  }

  .why-icon {
    width: 60px;
    height: 60px;
  }

  .person-photo {
    width: 100px;
    height: 100px;
  }

  .person-card {
    padding: 24px 16px;
  }

  .person-name {
    font-size: 1rem;
  }

  .person-title {
    font-size: 0.8rem;
  }

  .overview-content {
    padding: 24px 20px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
  }

  .network-map {
    height: 240px;
  }

  .map-destinations {
    gap: 12px;
  }

  .destination-chip {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .cert-item {
    min-width: 120px;
    padding: 18px;
  }

  .cert-name {
    font-size: 0.85rem;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-heading {
    font-size: 0.9rem;
  }

  .logo-img {
    height: 40px;
  }

  .header {
    padding: 12px 0;
  }

  .wave-separator svg {
    height: 40px;
  }

  .modal-header {
    padding: 20px 24px 16px;
  }

  .modal-body {
    padding: 16px 24px 24px;
  }

  .iti__dropdown-content {
    max-width: min(300px, calc(100vw - 40px));
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 80px 0 40px;
  }

  h1 {
    font-size: 1.7rem;
  }

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

  .product-image {
    height: 160px;
  }

  .contact-form-wrapper {
    padding: 20px 12px;
  }

  .contact-info-card {
    padding: 16px;
  }

  .nav-overlay .nav-link {
    font-size: 1.1rem;
    padding: 12px 20px;
  }

  .network-map {
    height: 200px;
  }

  .iti__dropdown-content {
    max-width: calc(100vw - 32px);
  }
}

/* ---------- Utility Classes ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(27,122,74,0.2);
  border: 2px solid var(--green-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--green-400);
  fill: none;
  stroke-width: 2;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* Loading spinner on button */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn.loading::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: rotate-slow 0.6s linear infinite;
}

/* ─── intl-tel-input dark theme overrides ─────────── */
.iti {
  width: 100%;
}

.iti__country-container {
  z-index: 2;
  padding: 4px;
}

.iti__selected-country {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 0 6px 0 12px;
  transition: all 0.3s var(--ease-out);
}

.iti__selected-country:hover {
  background: rgba(255,255,255,0.1);
}

.iti--allow-dropdown .iti__selected-country:focus {
  box-shadow: none;
}

.iti__selected-dial-code {
  color: var(--cream-dim);
  font-size: 0.9rem;
}

.iti__arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--cream-dim);
  margin-left: 6px;
}

.iti__dropdown-content {
  border: 1px solid rgba(255,255,255,0.12);
  background: #0D2A18 !important;
  border-radius: var(--radius-md);
  margin-top: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  max-width: 320px;
}

.iti--inline-dropdown .iti__dropdown-content,
.iti--container .iti__dropdown-content {
  background: #0D2A18 !important;
}

.iti__search-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  padding: 12px 16px;
  margin: 8px;
  width: calc(100% - 16px);
  box-sizing: border-box;
}

.iti__search-input::placeholder {
  color: var(--text-subtle);
}

.iti__search-input:focus {
  border-color: var(--gold-500);
  outline: none;
}

.iti__country-list {
  max-height: 240px;
  background: transparent;
}

.iti__country {
  padding: 10px 16px;
  color: var(--cream);
  transition: background 0.15s;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background: rgba(197,162,77,0.12);
}

.iti__country-name {
  color: var(--white);
  margin-right: 8px;
}

.iti__dial-code {
  color: var(--text-subtle);
}

.iti__divider {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.iti__flag {
  transform: scale(0.9);
  transform-origin: left center;
}

.iti--container {
  z-index: 9999;
}

.iti--fullscreen-popup .iti__dropdown-content {
  background: #0D2A18 !important;
}

.iti--show-flags .iti__selected-country-primary {
  gap: 6px;
}

.iti__a11y-text {
  color: var(--cream-dim);
  font-size: 0.8rem;
}

.iti__tel-input {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: var(--radius-md) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  outline: none !important;
  transition: all 0.3s var(--ease-out) !important;
}

.iti__tel-input::placeholder {
  color: var(--text-subtle) !important;
}

.iti__tel-input:focus {
  border-color: var(--gold-500) !important;
  box-shadow: 0 0 0 3px rgba(197,162,77,0.1) !important;
  background: rgba(255,255,255,0.06) !important;
}
