/* =====================================================
   ARII TOURS MAUPITI — Stylesheet
   Palette : bleu lagon, blanc, vert tropical
   ===================================================== */

/* =====================================================
   VARIABLES
   ===================================================== */
:root {
  --primary:       #0891b2;
  --primary-dark:  #0e7490;
  --primary-light: #22d3ee;
  --primary-xlight:#cffafe;
  --accent:        #059669;
  --accent-light:  #34d399;
  --deep:          #0c4a6e;
  --sand:          #fef9ef;
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --gray-100:      #f1f5f9;
  --gray-200:      #e2e8f0;
  --gray-400:      #94a3b8;
  --gray-600:      #475569;
  --gray-700:      #334155;
  --gray-800:      #1e293b;
  --gray-900:      #0f172a;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --nav-height:   72px;
  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-full:  9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.08);

  --transition:      .3s ease;
  --transition-fast: .15s ease;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img    { max-width: 100%; height: auto; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, textarea, select { font-family: inherit; outline: none; }

/* =====================================================
   TYPOGRAPHIE
   ===================================================== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--gray-900); text-wrap: balance; }

h1 { font-size: clamp(2.25rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.125rem; }

p { color: var(--gray-600); line-height: 1.75; text-wrap: pretty; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}

.section-title    { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.0625rem; color: var(--gray-600); max-width: 560px; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 6rem 0; }

.section-header           { margin-bottom: 3.5rem; }
.section-header.centered  { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* =====================================================
   BOUTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-full);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(8,145,178,.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(8,145,178,.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition);
  padding: 0 1.5rem;
}
.nav.transparent { background: transparent; }
.nav.solid {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo-sub {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.nav.transparent .nav-logo-main,
.nav.transparent .nav-logo-sub,
.nav.transparent .nav-link { text-shadow: 0 1px 6px rgba(0,0,0,.6); }

.nav.solid .nav-logo-main { color: var(--deep); }
.nav.solid .nav-logo-sub  { color: var(--gray-400); }

/* Links */
.nav-links { display: flex; align-items: center; gap: 2.5rem; }

.nav-link {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--primary-light);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav.solid .nav-link        { color: var(--gray-600); }
.nav.solid .nav-link:hover,
.nav.solid .nav-link.active { color: var(--primary-dark); }
.nav.solid .nav-link::after { background: var(--primary); }

/* CTA in nav */
.nav-cta { margin-left: 1rem; }
.nav.transparent .nav-cta .btn-primary {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.45);
  box-shadow: none;
  color: var(--white);
}
.nav.transparent .nav-cta .btn-primary:hover { background: rgba(255,255,255,.25); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.solid .nav-toggle span { background: var(--gray-700); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-100);
}
.nav-mobile.open { display: flex; }

.nav-mobile-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition-fast);
}
.nav-mobile-link:last-of-type { border-bottom: none; }
.nav-mobile-link:hover,
.nav-mobile-link.active { color: var(--primary); }
.nav-mobile .btn { margin-top: 1rem; justify-content: center; }

/* =====================================================
   PAGE HERO (pages internes)
   ===================================================== */
.page-hero {
  height: 42vh;
  min-height: 280px;
  background: linear-gradient(135deg, var(--deep) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(6,182,212,.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(5,150,105,.2) 0%, transparent 50%);
}
.page-hero-content { position: relative; z-index: 2; text-align: center; width: 100%; }
.page-hero-content h1  { color: var(--white); margin-bottom: .75rem; text-shadow: 0 2px 12px rgba(0,0,0,.7), 0 4px 30px rgba(0,0,0,.4); }
.page-hero-content > p { color: rgba(255,255,255,.75); font-size: 1.125rem; text-shadow: 0 1px 8px rgba(0,0,0,.65); }
.page-hero-content .section-label { text-shadow: 0 1px 6px rgba(0,0,0,.6); }

.page-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  z-index: 0;
}

/* =====================================================
   HERO ACCUEIL
   ===================================================== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0c4a6e;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  z-index: 0;
}
@keyframes oceanFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(6,182,212,.25) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(5,150,105,.2)  0%, transparent 50%),
    linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.35) 100%);
}

/* Particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  animation: floatUp linear infinite;
}
.particle:nth-child(1) { width:8px;  height:8px;  left:10%; animation-duration:8s;  animation-delay:0s; }
.particle:nth-child(2) { width:12px; height:12px; left:25%; animation-duration:12s; animation-delay:2s; }
.particle:nth-child(3) { width:6px;  height:6px;  left:45%; animation-duration:9s;  animation-delay:4s; }
.particle:nth-child(4) { width:10px; height:10px; left:65%; animation-duration:11s; animation-delay:1s; }
.particle:nth-child(5) { width:7px;  height:7px;  left:80%; animation-duration:10s; animation-delay:3s; }
.particle:nth-child(6) { width:14px; height:14px; left:90%; animation-duration:14s; animation-delay:5s; }
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .5; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

/* Waves */
.hero-waves { position: absolute; bottom: 0; left: 0; right: 0; height: 140px; overflow: hidden; }
.hero-wave { position: absolute; bottom: 0; left: -50%; width: 200%; height: 100%; }
.hero-wave svg { width: 100%; height: 100%; }
.hero-wave-1 { animation: waveShift 9s linear infinite; opacity: 1; }
.hero-wave-2 { animation: waveShift 13s linear infinite reverse; opacity: .85; bottom: -10px; }
.hero-wave-3 { animation: waveShift 17s linear infinite; opacity: .7; bottom: -18px; }
@keyframes waveShift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* Content */
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
  animation: fadeInDown .8s ease forwards;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .65; }
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.7), 0 4px 30px rgba(0,0,0,.4);
  animation: fadeInUp .9s ease .2s both;
}
.hero-title em { font-style: italic; color: var(--primary-light); }

.hero-subtitle {
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0 auto 2.5rem;
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(0,0,0,.65);
  animation: fadeInUp 1s ease .4s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease .6s both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.55);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,.65);
  border-radius: 2px;
  animation: scrollDot 2.2s ease infinite;
}
@keyframes scrollDot {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown{ from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =====================================================
   FEATURE CARDS
   ===================================================== */
.features-section { background: var(--off-white); }

.feature-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  text-align: center;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary-xlight), rgba(8,145,178,.08));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}
.feature-card h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.feature-card p  { font-size: .9375rem; }

/* =====================================================
   EXCURSION CARDS
   ===================================================== */
.excursion-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.excursion-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

.excursion-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.excursion-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.excursion-card:hover .excursion-card-image img { transform: scale(1.06); }

/* Gradient placeholders */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.img-placeholder-1 { background: linear-gradient(135deg,#0369a1 0%,#0891b2 40%,#22d3ee 100%); }
.img-placeholder-2 { background: linear-gradient(135deg,#0d9488 0%,#14b8a6 40%,#5eead4 100%); }
.img-placeholder-3 { background: linear-gradient(135deg,#b45309 0%,#d97706 40%,#fcd34d 100%); }
.img-placeholder-4 { background: linear-gradient(135deg,#166534 0%,#16a34a 40%,#86efac 100%); }

.excursion-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  color: var(--primary-dark);
  font-size: .75rem; font-weight: 600; letter-spacing: .05em;
  padding: .375rem .875rem;
  border-radius: var(--radius-full);
}

.excursion-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.excursion-card-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: .875rem; }
.meta-item { display: flex; align-items: center; gap: .375rem; font-size: .8125rem; color: var(--gray-600); }
.meta-icon { font-size: .875rem; }
.excursion-card-body h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.excursion-card-body > p { font-size: .9375rem; margin-bottom: 1rem; }

/* Includes */
.excursion-includes { margin-top: 1.5rem; margin-bottom: 1rem; }
.includes-title {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-700); margin-bottom: .625rem;
}
.includes-list { display: flex; flex-direction: column; gap: .375rem; }
.includes-item {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .875rem; color: var(--gray-600);
}
.includes-item .check { color: var(--accent); font-weight: 700; font-size: .875rem; flex-shrink: 0; margin-top: 1px; }
.includes-item .cross { color: var(--gray-400); font-weight: 700; font-size: .875rem; flex-shrink: 0; margin-top: 1px; }

.excursion-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}
.excursion-price { display: flex; flex-direction: column; }
.price-amount { font-size: 1.375rem; font-weight: 700; color: var(--primary-dark); font-family: var(--font-heading); }
.price-label  { font-size: .75rem; color: var(--gray-400); }

/* =====================================================
   À PROPOS
   ===================================================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image-main {
  width: 100%; height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-accent {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 180px; height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
.stat-box {
  text-align: center; padding: 1.5rem;
  background: linear-gradient(135deg,rgba(8,145,178,.07),rgba(8,145,178,.02));
  border-radius: var(--radius);
  border: 1px solid rgba(8,145,178,.12);
}
.stat-number { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; color: var(--primary-dark); display: block; }
.stat-label  { font-size: .875rem; color: var(--gray-600); }

.about-content { }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p  { margin-bottom: 1.25rem; font-size: 1.0625rem; }

.value-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(8,145,178,.2); }
.value-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.125rem; margin-bottom: .625rem; }

.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: stretch;
}
.guide-image {
  height: 100%;
  min-height: 300px;
}
.guide-image .img-placeholder {
  height: 100%;
  font-size: 5rem;
  background: linear-gradient(135deg,#0369a1,#0891b2 50%,#0d9488);
}
.guide-body { padding: 2.5rem; }
.guide-name { font-size: 1.75rem; margin-bottom: .25rem; }
.guide-role { font-size: .875rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); margin-bottom: 1.5rem; display: block; }
.guide-body p { margin-bottom: 1rem; }
.guide-tags  { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.guide-tag {
  background: var(--primary-xlight);
  color: var(--primary-dark);
  font-size: .8125rem; font-weight: 500;
  padding: .375rem .875rem;
  border-radius: var(--radius-full);
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section { background: var(--off-white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  padding: 2.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-form-card h2 { margin-bottom: .5rem; }
.contact-form-card > p { margin-bottom: 2rem; }

.form-group { margin-bottom: 1.5rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group label {
  display: block;
  font-size: .875rem; font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .5rem;
}
.form-group label .required { color: var(--primary); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: .875rem 1.125rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition-fast);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(8,145,178,.12); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-control.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }

.phone-prefix-wrapper {
  display: flex;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.phone-prefix-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8,145,178,.12);
}
.phone-prefix-select {
  border: none;
  border-right: 1.5px solid var(--gray-200);
  border-radius: 0;
  padding: .875rem .625rem;
  font-size: .9375rem;
  color: var(--gray-800);
  background: var(--gray-50);
  cursor: pointer;
  flex-shrink: 0;
  outline: none;
  appearance: auto;
  max-width: 100px;
}
.phone-number-input {
  border: none;
  border-radius: 0;
  padding: .875rem 1.125rem;
  font-size: .9375rem;
  color: var(--gray-800);
  background: transparent;
  flex: 1;
  min-width: 0;
  outline: none;
  width: 100%;
}
.phone-number-input::placeholder { color: var(--gray-400); }

.form-error { display: none; font-size: .8125rem; color: #ef4444; margin-top: .375rem; }

.form-submit { width: 100%; padding: 1rem; font-size: 1rem; margin-top: .5rem; display: flex; align-items: center; justify-content: center; gap: .5rem; }

.form-success {
  display: none;
  background: linear-gradient(135deg,rgba(5,150,105,.1),rgba(5,150,105,.04));
  border: 1px solid rgba(5,150,105,.3);
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--accent);
  font-weight: 500;
}
.form-success .success-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.form-success p { color: var(--accent); }

/* Contact info */
.contact-info-card {
  background: linear-gradient(160deg, var(--deep), var(--primary-dark));
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.75rem; font-size: 1.375rem; }

.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; flex-shrink: 0;
}
.contact-info-label {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: .25rem;
}
.contact-info-value { color: rgba(255,255,255,.9); font-size: .9375rem; line-height: 1.5; }

.contact-note {
  margin-top: 1.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 1rem 1.125rem;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}
.contact-note strong { color: rgba(255,255,255,.9); }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  position: relative;
  padding: 5.5rem 0;
  text-align: center;
  overflow: hidden;
  background: #0c4a6e;
}
.cta-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.4);
  transform: scale(1.08);
  z-index: 0;
}
.cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section > .container > p { color: rgba(255,255,255,.75); font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: #f2f2f2; color: var(--gray-600); padding: 4.5rem 0 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo-main { color: var(--deep); font-size: 1.5rem; }
.footer-brand .nav-logo-sub  { color: var(--gray-400); }
.footer-tagline {
  margin-top: 1.25rem; font-size: .9375rem; line-height: 1.75;
  color: var(--gray-700); max-width: 300px;
}

.footer-heading { color: var(--gray-800); font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { color: var(--gray-600); font-size: .9375rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--primary); }

.footer-divider { height: 1px; background: rgba(0,0,0,.1); margin-bottom: 2rem; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p, .footer-bottom a { font-size: .875rem; color: var(--gray-400); }
.footer-bottom a:hover { color: var(--primary); }
.footer-legal { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  color: var(--gray-500, #64748b);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer-instagram:hover { color: var(--primary); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .guide-card { grid-template-columns: 220px 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-accent { right: 1rem; bottom: -1.5rem; }

  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-card { padding: 1.75rem; }
  .contact-info-card { position: static; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  .guide-card { grid-template-columns: 1fr; }
  .guide-image { min-height: 220px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-image-accent { display: none; }
  .contact-form-card { padding: 1.25rem; }
}
