/* ============================================
   Scuba Expeditions Fuvahmulah — Main Styles
   ============================================ */

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

/* ── Variables ── */
:root {
  /* Brand primary */
  --navy:       #231F20;
  --ocean:      #0049B6;
  --teal:       #01CAFE;
  --teal-light: #40E0D0;
  --teal-pale:  #d4e8ff;
  --gold:       #e8d29a;
  --coral:      #8b6a4a;
  --white:      #ffffff;
  --off-white:  #F3F3F3;
  --text-dark:  #231F20;
  --text-mid:   #0049B6;
  --text-light: #4a6fa5;
  --border:     rgba(1,202,254,0.2);
  --shadow:     0 8px 32px rgba(35,31,32,0.12);
  --shadow-lg:  0 20px 60px rgba(35,31,32,0.2);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { font-size: 1rem; color: var(--text-mid); }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 0.6rem;
}
.section-title { color: var(--navy); margin-bottom: 1rem; }
.section-desc  { color: var(--text-mid); max-width: 600px; font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}
.btn-primary:hover {
  background: transparent;
  color: var(--ocean);
  border-color: var(--ocean);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: transparent;
  color: var(--navy);
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ── Section spacing ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── ===== NAVBAR ===== ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.88) 70%, rgba(255,255,255,0) 100%);
  backdrop-filter: blur(8px);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(35,31,32,0.12);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.nav-logo .logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--ocean);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--ocean); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -8px 0 32px rgba(35,31,32,0.15);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { display: none; }
}

/* ── ===== HERO ===== ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}
/* ── Full-page fixed video background ── */
.page-video-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  /* Poster frame — shows instantly while video loads */
  background: url('../images/hero-poster.jpg') center/cover no-repeat var(--navy);
}
.page-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Use max() so the iframe always covers the full viewport regardless of aspect ratio */
  width:  max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  /* Scale up 15% to bury YouTube's internal padding / letterbox bars */
  transform: translate(-50%, -50%) scale(1.15);
  border: none;
  pointer-events: none;
}
.page-video-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(8, 20, 35, 0.58);
  pointer-events: none;
}

/* ── Mobile: hide iframe, keep poster ── */
@media (max-width: 768px) {
  .page-video-bg iframe {
    display: none;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(8,20,35,0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.2);
  border: 1px solid rgba(0,180,216,0.4);
  color: var(--teal-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero h1 em { font-style: italic; color: var(--teal-light); }
.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,0.82); margin-bottom: 36px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 48px;
  background: rgba(13,27,42,0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 48px;
}
.hero-stat { text-align: center; }
.hero-stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--teal-light); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

@media (max-width: 768px) {
  .hero-stats { gap: 24px; padding: 20px 24px; bottom: 24px; }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-scroll { display: none; }
}

/* ── ===== INTRO / ABOUT STRIP ===== ── */
.intro-strip {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}
.intro-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-strip .section-title { color: var(--white); }
.intro-strip p { color: rgba(255,255,255,0.72); margin-bottom: 1rem; }
.intro-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.intro-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.intro-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(13,27,42,0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
}
.intro-img-badge strong { display: block; color: var(--teal-light); font-size: 1.1rem; }

@media (max-width: 768px) {
  .intro-strip-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── ===== EXPERIENCES ===== ── */
.experiences { background: var(--off-white); }
.experiences-header { text-align: center; margin-bottom: 56px; }
.experiences-header .section-desc { margin: 0 auto; }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.exp-card-img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.exp-card:hover .exp-card-img { transform: scale(1.05); }
.exp-card-img-wrap { overflow: hidden; }
.exp-card-body { padding: 24px; }
.exp-card-icon {
  width: 44px; height: 44px;
  background: rgba(0,180,216,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--teal);
}
.exp-card-icon svg { width: 22px; height: 22px; }
.exp-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.exp-card p { font-size: 0.92rem; color: var(--text-light); }

@media (max-width: 1024px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .exp-grid { grid-template-columns: 1fr; } }

/* ── ===== PACKAGES PREVIEW ===== ── */
.packages-preview { background: var(--white); }
.packages-header { margin-bottom: 48px; }
.packages-header-inner { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pkg-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  background: var(--white);
}
.pkg-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pkg-card.featured {
  border-color: var(--teal);
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  color: var(--white);
}
.pkg-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.pkg-card.featured .pkg-badge { background: var(--gold); color: var(--navy); }
.pkg-duration { font-size: 0.85rem; color: var(--text-light); margin-bottom: 8px; }
.pkg-card.featured .pkg-duration { color: rgba(255,255,255,0.6); }
.pkg-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pkg-card.featured .pkg-name { color: var(--white); }
.pkg-price { font-size: 2rem; font-weight: 700; color: var(--teal); margin: 16px 0; font-family: 'Inter', sans-serif; }
.pkg-price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.pkg-card.featured .pkg-price { color: var(--teal-light); }
.pkg-divider { height: 1px; background: var(--border); margin: 20px 0; }
.pkg-card.featured .pkg-divider { background: rgba(255,255,255,0.15); }
.pkg-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pkg-feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-mid); }
.pkg-card.featured .pkg-feature { color: rgba(255,255,255,0.8); }
.pkg-feature svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.pkg-card.featured .pkg-feature svg { color: var(--teal-light); }

@media (max-width: 1024px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pkg-grid { grid-template-columns: 1fr; } }

/* ── ===== FUVAHMULAH FEATURE ===== ── */
.fuvahmulah-feature {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2540 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.fuvahmulah-feature::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.fv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fv-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.fv-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}
.fv-img-main img { width: 100%; height: 100%; object-fit: cover; }
.fv-img-sm {
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
}
.fv-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.fv-content .section-title { color: var(--white); }
.fv-content p { color: rgba(255,255,255,0.72); margin-bottom: 1.2rem; }
.fv-features { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }
.fv-feature { display: flex; align-items: flex-start; gap: 14px; }
.fv-feature-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal-light);
}
.fv-feature-icon svg { width: 20px; height: 20px; }
.fv-feature-text h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.fv-feature-text p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 0; }

@media (max-width: 900px) { .fv-inner { grid-template-columns: 1fr; gap: 48px; } }

/* ── ===== TESTIMONIALS ===== ── */
.testimonials { background: var(--off-white); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-desc { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.quote-icon {
  position: absolute;
  top: 28px; right: 28px;
  color: rgba(0,180,216,0.15);
}
.quote-icon svg { width: 48px; height: 48px; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; color: var(--gold); }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--teal-pale); }
.testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.testimonial-location { font-size: 0.8rem; color: var(--text-light); }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── ===== MAATHUNDI CTA ===== ── */
.maathundi-cta {
  background: var(--white);
}
.maathundi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.maathundi-img { position: relative; overflow: hidden; }
.maathundi-img img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.maathundi-content {
  background: var(--navy);
  color: var(--white);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.maathundi-content .section-title { color: var(--white); margin-bottom: 16px; }
.maathundi-content p { color: rgba(255,255,255,0.72); margin-bottom: 1rem; }
.maathundi-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 36px;
}
.amenity { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.amenity svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

@media (max-width: 900px) {
  .maathundi-inner { grid-template-columns: 1fr; }
  .maathundi-img img { min-height: 300px; }
  .maathundi-content { padding: 48px 32px; }
}

/* ── ===== NEWSLETTER ===== ── */
.newsletter {
  background: linear-gradient(135deg, var(--teal) 0%, #0096c7 100%);
  padding: 72px 0;
}
.newsletter-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.newsletter h2 { color: var(--white); margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.82); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
}
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form .btn {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.newsletter-form .btn:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
@media (max-width: 520px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form .btn { width: 100%; justify-content: center; }
}

/* ── ===== FOOTER ===== ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo { margin-bottom: 20px; }
.footer-brand .footer-logo img { height: 38px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-link:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 20px; letter-spacing: 0.04em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--teal-light); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── ===== PAGE HERO (inner pages) ===== ── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/hero-aerial.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--teal-light); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── ===== PACKAGES PAGE ===== ── */
.packages-page { background: var(--off-white); }
.packages-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
.pkg-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.pkg-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-full-card.highlight { border: 2px solid var(--teal); }
.pkg-card-header {
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  padding: 28px;
  color: var(--white);
  position: relative;
}
.pkg-card-header .pkg-badge { margin-bottom: 12px; }
.pkg-card-header h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 6px; }
.pkg-card-header .pkg-duration-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.pkg-card-header .pkg-duration-tag svg { width: 14px; height: 14px; }
.pkg-card-price-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--teal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
}
.pkg-full-card.highlight .pkg-card-price-badge { background: var(--gold); color: var(--navy); }
.pkg-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.pkg-includes-title { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 14px; }
.pkg-includes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.pkg-include-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-mid); }
.pkg-include-item svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }
.pkg-dives-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,0.08); border: 1px solid rgba(0,180,216,0.2);
  border-radius: 8px; padding: 10px 16px;
  font-size: 0.9rem; color: var(--teal); font-weight: 600;
  margin-bottom: 20px;
}
.pkg-dives-badge svg { width: 18px; height: 18px; }

/* A la carte */
.alacarte-section {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  margin-top: 16px;
}
.alacarte-section h2 { color: var(--white); margin-bottom: 12px; }
.alacarte-section p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.alacarte-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.alacarte-item:hover { background: rgba(0,180,216,0.12); border-color: var(--teal); }
.alacarte-dives { font-size: 0.78rem; color: var(--text-light); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.alacarte-price { font-size: 1.5rem; font-weight: 700; color: var(--teal-light); font-family: 'Playfair Display', serif; }
.alacarte-per { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

@media (max-width: 1024px) { .packages-full-grid { grid-template-columns: repeat(2, 1fr); } .alacarte-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .packages-full-grid { grid-template-columns: 1fr; } .alacarte-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── ===== GALLERY PAGE ===== ── */
.gallery-page { background: var(--off-white); }
.gallery-filters {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.gallery-filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(3n+1) { grid-column: span 2; }
.gallery-item:nth-child(5n+3) { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-size: 0.82rem; font-weight: 500; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-nav svg { width: 22px; height: 22px; }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-item:nth-child(3n+1) { grid-column: span 1; } .gallery-item:nth-child(5n+3) { grid-row: span 1; } }
@media (max-width: 520px)  { .gallery-grid { grid-template-columns: 1fr; } }

/* ── ===== TEAM PAGE ===== ── */
.team-page { background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-img-wrap {
  height: 260px; overflow: hidden; position: relative;
}
.team-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.team-card:hover .team-card-img-wrap img { transform: scale(1.05); }
.team-card-body { padding: 24px 20px 28px; }
.team-card-role {
  display: inline-block;
  background: rgba(0,180,216,0.1); color: var(--teal);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 10px;
}
.team-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.team-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

.team-consultants-title {
  text-align: center; margin: 56px 0 36px;
}
.team-consultants-title h2 { font-size: 1.8rem; }

@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .team-grid { grid-template-columns: 1fr; } }

/* ── ===== CONTACT PAGE ===== ── */
.contact-page { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  position: sticky;
  top: 100px;
}
.contact-info-card h2 { color: var(--white); margin-bottom: 12px; }
.contact-info-card > p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.contact-info-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal-light);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.contact-info-value a { color: var(--teal-light); }
.contact-social-title { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.contact-social-links { display: flex; gap: 10px; }
.contact-social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.contact-social-link:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.contact-social-link svg { width: 15px; height: 15px; }

/* Contact form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-light); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dce7ef;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.1);
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23627d98' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { text-align: right; }
.form-success {
  display: none;
  background: rgba(0,180,216,0.08);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .contact-info-card { position: static; } }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } .contact-form-card { padding: 32px 24px; } }

/* ── ===== ANIMATIONS ===== ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── ===== MISC ===== ── */
.text-center { text-align: center; }
.text-teal    { color: var(--teal); }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* Overlay for mobile menu */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.nav-overlay.open { display: block; }

/* Divider */
.divider-wave {
  width: 100%; line-height: 0; display: block;
}
