/*
Theme Name: Aqaba Leaders Dive Center
Theme URI: https://aqabaleadersdive.com
Author: Aqaba Leaders
Author URI: https://aqabaleadersdive.com
Description: Custom theme for Aqaba Leaders Dive Center - Luxury Red Sea Diving
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: aqaba-leaders
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --ocean-deep: #042C53;
  --ocean-mid: #185FA5;
  --teal-dark: #0F6E56;
  --teal-mid: #1D9E75;
  --sand: #FAC775;
  --bg-dark: #0a1628;
  --bg-card: #0d1e35;
  --bg-section: #06101f;
  --text-light: #e8f0f8;
  --text-mid: #8eacc8;
  --nav-h: 72px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-light);
  background: var(--bg-dark);
  overflow-x: hidden;
}
a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 0.75rem;
  font-weight: 500;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: #e8f0f8;
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}
.body-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
#aldc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
#aldc-nav.scrolled {
  background: rgba(2,18,36,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}
.nav-logo-tagline {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sand); }
.nav-cta {
  background: var(--teal-mid) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: white; }

/* =============================================
   HERO
   ============================================= */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #042C53 0%, #0F6E56 60%, #1D9E75 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('https://aqabaleadersdive.com/wp-content/uploads/2024/05/ALDC-BOAT-AQABA.webp') center/cover no-repeat;
  opacity: 0.22;
}
.bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bubble {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: rise linear infinite;
}
@keyframes rise { to { transform: translateY(-110vh) translateX(30px); opacity: 0; } }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 680px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--sand); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 440px;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2.5s ease infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: grow 2.5s ease infinite;
}
@keyframes grow { 0%,100%{height:20px;opacity:0.3} 50%{height:40px;opacity:0.8} }
@keyframes pulse { 0%,100%{opacity:0.5} 50%{opacity:1} }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  background: var(--sand);
  color: var(--ocean-deep);
  padding: 0.85rem 2.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #f0b860; transform: translateY(-1px); color: var(--ocean-deep); }
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 0.85rem 2.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  margin-left: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }

/* =============================================
   SERVICES SECTION
   ============================================= */
#services { background: var(--bg-card); padding: 6rem 5vw; }
.services-intro { margin-bottom: 4rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { background: var(--ocean-deep); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-name,
.service-card:hover .service-desc,
.service-card:hover .service-icon { color: #fff; }
.service-icon { font-size: 2rem; margin-bottom: 1.25rem; color: var(--teal-mid); transition: color 0.25s; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #c8dff2;
  margin-bottom: 0.75rem;
  transition: color 0.25s;
}
.service-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; transition: color 0.25s; }
.service-arrow {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  font-size: 1.25rem;
  color: var(--teal-mid);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s, color 0.25s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); color: var(--sand); }

/* =============================================
   WHY SECTION
   ============================================= */
#why { background: var(--ocean-deep); color: white; position: relative; overflow: hidden; padding: 6rem 5vw; }
#why::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(29,158,117,0.08);
}
#why .section-title { color: #fff; }
#why .section-label { color: var(--sand); }
#why .section-sub { color: rgba(255,255,255,0.65); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.why-item { border-left: 2px solid var(--teal-mid); padding-left: 1.5rem; }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.why-title { font-size: 1rem; font-weight: 500; color: white; margin-bottom: 0.5rem; }
.why-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; }

/* =============================================
   CONSERVATION SECTION
   ============================================= */
.cons-logo-divider {
  background: var(--bg-section);
  display: flex;
  justify-content: flex-start;
  padding: 3rem 5vw 1rem;
}
.cons-watermark-logo {
  width: 140px; height: 140px;
  object-fit: contain;
  opacity: 0.35;
  filter: grayscale(100%) brightness(1.2);
}
#conservation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  min-height: 520px;
}
.cons-image {
  background: url('https://aqabaleadersdive.com/wp-content/uploads/2024/05/Clean-up.-volunteers-.-Red-sea-.-Aqaba--scaled-e1716736865858.webp') center/cover no-repeat;
  min-height: 400px;
}
.cons-content {
  background: var(--teal-dark);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.cons-content .section-label { color: var(--sand); }
.cons-content .section-title { color: white; }
.cons-content .section-sub { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.cons-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.cons-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.cons-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sand); flex-shrink: 0; }

/* =============================================
   FAQ SECTION
   ============================================= */
#faq { background: var(--bg-card); padding: 6rem 5vw; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
}
.faq-item { background: var(--bg-card); padding: 2rem; }
.faq-q { font-size: 0.9rem; font-weight: 500; color: #c8dff2; margin-bottom: 0.75rem; line-height: 1.4; }
.faq-a { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

/* =============================================
   CONTACT SECTION
   ============================================= */
#contact { background: var(--ocean-deep); text-align: center; padding: 6rem 5vw; }
#contact .section-label { color: var(--sand); }
#contact .section-title { color: white; margin: 0 auto 1rem; }
#contact .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto 3rem; }
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 1.75rem 2.5rem;
  color: white;
  text-decoration: none;
  transition: background 0.2s;
  min-width: 200px;
}
.contact-card:hover { background: rgba(255,255,255,0.12); color: white; }
.contact-card-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.4rem; }
.contact-card-val { font-size: 0.95rem; color: white; }

/* =============================================
   FOOTER
   ============================================= */
.aldc-footer {
  background: #020d1a;
  color: rgba(255,255,255,0.45);
  padding: 2rem 5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
}
.aldc-footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
.aldc-footer a:hover { color: var(--sand); }
.footer-links { display: flex; gap: 1.5rem; }

/* =============================================
   INNER PAGE STYLES
   ============================================= */
.page-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, #042C53 0%, #063a6b 50%, #0F6E56 100%);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--bg-dark);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-inner { padding: 4rem 5vw 2rem; max-width: 720px; }
.breadcrumb {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--sand); }
.breadcrumb span { margin: 0 0.5rem; }
.page-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.75rem; font-weight: 500; }
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.page-title em { font-style: italic; color: var(--sand); }
.page-intro { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; font-weight: 300; max-width: 560px; }
.content { padding: 5rem 5vw; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* Price Box */
.price-box {
  background: var(--ocean-deep);
  border-radius: 4px;
  padding: 2.5rem;
  color: white;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.price-from { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--sand); line-height: 1; margin-bottom: 0.25rem; }
.price-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.price-includes { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.price-includes li { font-size: 0.875rem; color: rgba(255,255,255,0.8); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.4; }
.price-includes li::before { content: '✓'; color: var(--teal-mid); font-weight: 500; flex-shrink: 0; }
.btn-book {
  display: block; text-align: center;
  background: var(--sand); color: var(--ocean-deep);
  padding: 1rem 2rem; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background 0.2s; margin-bottom: 0.75rem;
}
.btn-book:hover { background: #f0b860; color: var(--ocean-deep); }
.btn-contact {
  display: block; text-align: center;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  padding: 0.85rem 2rem; font-size: 0.875rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-contact:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* Feature List */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }
.feature-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-mid); flex-shrink: 0; margin-top: 0.45rem; }

/* Testimonial */
.testimonial {
  background: var(--bg-card);
  border-left: 3px solid var(--teal-mid);
  padding: 1.5rem 2rem;
  border-radius: 0 4px 4px 0;
  margin-top: 2rem;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #c8dff2;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.testimonial-author { font-size: 0.8rem; color: var(--text-mid); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

/* Packages */
.packages {
  display: flex; flex-direction: column;
  gap: 1px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; overflow: hidden; margin-bottom: 3rem;
}
.pkg {
  background: var(--bg-card);
  padding: 1.5rem 1.75rem;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap;
}
.pkg-info { flex: 1; }
.pkg-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #c8dff2; font-weight: 400; margin-bottom: 0.25rem; }
.pkg-desc { font-size: 0.85rem; color: var(--text-mid); font-weight: 300; }
.pkg-price { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--teal-mid); font-weight: 300; white-space: nowrap; }
.pkg-book {
  background: var(--ocean-deep); color: white;
  padding: 0.5rem 1.25rem; border-radius: 2px;
  text-decoration: none; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s; white-space: nowrap;
}
.pkg-book:hover { background: #185FA5; color: white; }

/* Dive Types */
.dive-types {
  display: flex; flex-direction: column;
  gap: 1px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; overflow: hidden; margin-bottom: 2rem;
}
.dive-type {
  background: var(--bg-card);
  padding: 1.5rem 1.75rem;
  display: flex; justify-content: space-between; align-items: center;
}
.dive-type-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #c8dff2; font-weight: 400; }
.dive-type-desc { font-size: 0.85rem; color: var(--text-mid); margin-top: 0.25rem; font-weight: 300; }
.dive-type-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--teal-mid); font-weight: 300; white-space: nowrap; margin-left: 1rem; }

/* PADI Courses */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-bottom: 5rem;
}
.course-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; overflow: hidden;
  background: var(--bg-card);
  display: flex; flex-direction: column;
}
.course-card-header {
  background: var(--ocean-deep);
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
}
.course-level { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; }
.course-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: #fff; line-height: 1.2; }
.course-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--teal-mid); color: white;
  font-size: 0.7rem; padding: 0.3rem 0.7rem;
  border-radius: 20px; letter-spacing: 0.08em;
}
.course-body { padding: 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.course-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem; }
.course-reqs { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.course-reqs li { font-size: 0.8rem; color: var(--text-mid); display: flex; gap: 0.6rem; line-height: 1.4; }
.course-reqs li::before { content: '·'; color: var(--teal-mid); font-weight: 700; flex-shrink: 0; }
.btn-course {
  display: block; text-align: center;
  background: var(--ocean-deep); color: white;
  padding: 0.75rem 1.5rem; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background 0.2s; margin-top: auto;
}
.btn-course:hover { background: #185FA5; color: white; }

/* Other Services */
.other-services { background: var(--bg-section); padding: 5rem 5vw; }
.other-services .section-title { color: #e8f0f8; }
.services-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; overflow: hidden; margin-top: 2.5rem;
}
.service-mini-card {
  background: var(--bg-card);
  padding: 1.75rem 1.5rem;
  text-decoration: none; color: inherit;
  transition: background 0.2s;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.service-mini-card:hover { background: var(--ocean-deep); }
.service-mini-card:hover .smc-name,
.service-mini-card:hover .smc-arrow { color: #fff; }
.smc-icon { font-size: 1.5rem; }
.smc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #c8dff2; transition: color 0.2s; }
.smc-arrow { color: var(--teal-mid); font-size: 0.9rem; transition: color 0.2s; margin-top: auto; }

/* Dive image */
.dive-image { width: 100%; border-radius: 4px; object-fit: cover; display: block; margin-bottom: 2rem; }

/* Tags */
.tags-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.tag {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e8f0f8;
  padding: 0.35rem 0.9rem;
  border-radius: 20px; font-size: 0.8rem; font-weight: 400;
}

/* Snorkeling site cards */
.sites-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.site-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 1.25rem; text-align: center;
}
.site-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.site-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: #c8dff2; font-weight: 400; }

/* Price tab row */
.price-tab-row { display: flex; gap: 0.5rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.price-tab {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; font-size: 0.8rem;
  color: rgba(255,255,255,0.6); cursor: pointer;
  transition: all 0.2s; background: transparent;
}
.price-tab.active { background: var(--teal-mid); border-color: var(--teal-mid); color: white; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .price-box { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(2,18,36,0.98);
    padding: 2rem 5vw; gap: 1.25rem;
    z-index: 999;
  }
  #conservation { grid-template-columns: 1fr; }
  .cons-image { min-height: 280px; }
  .cons-content { padding: 3rem 2rem; }
  .btn-ghost { margin-left: 0; margin-top: 1rem; display: block; text-align: center; }
  .pkg { flex-direction: column; align-items: flex-start; }
}
