/* =========================================================
   Zane's Detailing — Premium Stylesheet
   Brand: #09a5d6 cyan-blue · navy · refined neutrals
   ========================================================= */

:root {
  /* Brand */
  --primary: #09a5d6;
  --primary-dark: #0788b3;
  --primary-darker: #066b8e;
  --primary-light: #e0f6fd;
  --primary-50: #f4fbfe;

  /* Neutrals */
  --navy: #0a1628;
  --navy-2: #0f1d36;
  --navy-3: #16294a;
  --text: #0f172a;
  --text-soft: #334155;
  --gray: #64748b;
  --gray-light: #f1f5f9;
  --gray-50: #f8fafc;
  --border: #e2e8f0;
  --white: #ffffff;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 28px rgba(9, 165, 214, 0.12);
  --shadow-lg: 0 24px 60px rgba(9, 165, 214, 0.18);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
button { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { color: var(--text); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); line-height: 1.05; font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-soft); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 96px 0; }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.72); }

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

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { max-width: 620px; margin: 1rem auto 0; font-size: 1.075rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: -0.01em;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(9, 165, 214, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(9, 165, 214, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--primary-light);
  color: var(--primary-darker);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.025rem; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav__logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.025em;
}
.nav__logo span { color: var(--primary); }
.nav__logo-img { height: 44px; width: auto; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color var(--transition);
  position: relative;
}
.nav__links a:hover { color: var(--primary); }
.nav__links a[aria-current="page"] { color: var(--primary); }
.nav__cta { display: flex; align-items: center; gap: 1.25rem; }
.nav__phone {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav__phone:hover { color: var(--primary); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  background-color: var(--navy);
  background-image: url('/images/Hero%20shot%203.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 120px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10,22,40,0.72), rgba(10,22,40,0.72)),
    radial-gradient(ellipse at 80% 20%, rgba(9, 165, 214, 0.15) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero__visual { display: none; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(9, 165, 214, 0.12);
  border: 1px solid rgba(9, 165, 214, 0.4);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #67e8f9;
  margin-bottom: 1.5rem;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #22d3ee;
  border-radius: 50%;
  box-shadow: 0 0 8px #22d3ee;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.hero h1 span {
  background: linear-gradient(135deg, #22d3ee 0%, #09a5d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.25rem;
  max-width: 640px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}
.hero__visual-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(9, 165, 214, 0.2), transparent),
    linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius-lg);
}
.hero__visual-placeholder p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  text-align: center;
  max-width: 240px;
}
.hero__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.section-photo {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.before-after__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.before-after__item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.before-after__label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.before-after__label.after {
  background: rgba(9,165,214,0.85);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-soft);
  font-size: 0.875rem;
  font-weight: 600;
}
.trust-item__icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── ICON CIRCLE ── */
.icon-circle {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  position: relative;
}
.icon-circle::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), transparent);
  opacity: 0.15;
  z-index: -1;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(9, 165, 214, 0.25);
}
.card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.card p { font-size: 0.95rem; }

/* ── PACKAGES ── */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.package-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.package-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.package-card--featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--primary-50) 0%, var(--white) 25%);
}
.package-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(9, 165, 214, 0.4);
}
.package-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.package-card__duration {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.package-card__prices {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: 10px;
}
.package-card--featured .package-card__prices {
  background: rgba(9, 165, 214, 0.07);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  font-size: 0.92rem;
}
.price-row + .price-row { border-top: 1px solid rgba(15, 23, 42, 0.06); }
.price-row__label { color: var(--gray); }
.price-row__value { font-weight: 700; color: var(--text); font-size: 1rem; }
.package-features { list-style: none; margin-bottom: 1.75rem; flex-grow: 1; }
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  padding: 0.4rem 0;
}
.package-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2309a5d6'><path fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── COMPARISON TABLE ── */
.compare-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 1.1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.compare-table th { background: var(--gray-50); font-weight: 700; color: var(--text); font-size: 0.88rem; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--gray-50); }
.compare-table th:nth-child(3) { background: rgba(9, 165, 214, 0.08); color: var(--primary-darker); }
.compare-table td:nth-child(3) { background: rgba(9, 165, 214, 0.03); }
.check { color: var(--primary); font-weight: 700; font-size: 1.1rem; }
.dash { color: var(--border); font-weight: 600; }

/* ── FAQ ── */
.faq-list { background: var(--white); border-radius: var(--radius); }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
  letter-spacing: -0.01em;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p { padding-bottom: 1.4rem; color: var(--text-soft); }
.faq-item.open .faq-answer { max-height: 500px; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-light);
  cursor: pointer;
  border: 1px solid var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.25rem 1.1rem;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.85));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}
.before-after__side {
  position: relative;
  aspect-ratio: 3/2;
  background: var(--gray-light);
}
.before-after__side img { width: 100%; height: 100%; object-fit: cover; }
.before-after__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}

/* ── SERVICE AREAS ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.area-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--primary);
  background: var(--primary-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.area-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.area-card p { font-size: 0.85rem; color: var(--gray); }
.area-card__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.75rem;
  color: var(--primary);
}

/* ── REVIEWS ── */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stars { color: #f59e0b; font-size: 1.05rem; margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.review-text { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.7; }
.reviewer { font-weight: 700; font-size: 0.875rem; color: var(--navy); }
.reviewer-meta { font-size: 0.78rem; color: var(--gray); font-weight: 500; margin-top: 0.15rem; }

/* ── FEATURE LIST ITEM ── */
.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.feature-item__icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.feature-item h3 { margin-bottom: 0.25rem; font-size: 1.05rem; }
.feature-item p { font-size: 0.93rem; }

/* ── PROCESS STEP ── */
.process-step {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.process-step:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.process-step__num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(9, 165, 214, 0.4);
}
.process-step h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.process-step p { font-size: 0.9rem; }

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, var(--primary-darker) 100%);
  padding: 96px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.cta-section > .container { position: relative; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.88); max-width: 620px; margin: 0 auto 2.25rem; font-size: 1.075rem; }
.cta-section .btn-white { margin: 0.35rem; }
.cta-section .btn-ghost { margin: 0.35rem; color: var(--white); border-color: rgba(255,255,255,0.5); }
.cta-section .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(9, 165, 214, 0.4), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.75rem;
}
.footer__brand p { max-width: 320px; font-size: 0.92rem; margin-top: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer__logo { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -0.025em; }
.footer__logo span { color: var(--primary); }
.footer h4 { color: var(--white); margin-bottom: 1.1rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.5);
}
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { color: rgba(255,255,255,0.55); }
.footer__bottom-links a:hover { color: var(--white); }
.footer__phone {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.55rem 1rem;
  background: rgba(9, 165, 214, 0.15);
  border: 1px solid rgba(9, 165, 214, 0.3);
  border-radius: 8px;
  transition: all var(--transition);
}
.footer__phone:hover { background: rgba(9, 165, 214, 0.25); color: var(--white); }
.footer__social { display: flex; gap: 0.85rem; margin-top: 1.25rem; }
.footer__social a { color: rgba(255,255,255,0.55); transition: color var(--transition); display: flex; align-items: center; }
.footer__social a:hover { color: var(--primary); }

/* ── Gallery ── */
.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-video-item video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow);
  background: var(--navy-2);
}
.gallery-video-caption {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  margin-top: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Review spotlight & cards ── */
.review-spotlight {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}
.review-spotlight__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-avatar--sm {
  width: 36px;
  height: 36px;
  font-size: 0.9rem;
}
.local-guide-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-darker);
  background: var(--primary-50);
  border: 1px solid rgba(9,165,214,0.2);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.google-mark {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4285F4;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.google-mark--sm {
  width: 28px;
  height: 28px;
  font-size: 0.8rem;
}
.review-meta-inline { font-size: 0.8rem; color: var(--gray); font-weight: 400; }
.review-text--lg { font-size: 1.08rem; line-height: 1.75; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.reviewer { font-weight: 700; font-size: 0.95rem; }
.review-text { color: var(--text-soft); line-height: 1.7; margin: 0; }
.reviewer-meta { font-size: 0.8rem; color: var(--gray); margin-top: 0.5rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-50);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--gray);
}
.breadcrumb__inner a { color: var(--primary); font-weight: 500; }
.breadcrumb__inner span { color: var(--gray); }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 88px 0 80px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(9, 165, 214, 0.25) 0%, transparent 60%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1.1rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto; font-size: 1.075rem; }
.page-hero .eyebrow { color: #67e8f9; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.45rem; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(9, 165, 214, 0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info-item { display: flex; gap: 1.25rem; margin-bottom: 1.75rem; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 0.25rem; font-size: 0.95rem; }
.contact-info-item p { font-size: 0.92rem; color: var(--text-soft); margin: 0; }
.contact-info-item p.small { font-size: 0.82rem; color: var(--gray); margin-top: 0.25rem; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card__image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-light), #c8eef9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.blog-card__body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.blog-card__title { font-size: 1.1rem; margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card__title a { color: var(--text); }
.blog-card__title a:hover { color: var(--primary); }
.blog-card__excerpt { font-size: 0.92rem; color: var(--text-soft); margin-bottom: 1rem; flex-grow: 1; }
.blog-card__meta { font-size: 0.8rem; color: var(--gray); display: flex; gap: 0.75rem; align-items: center; }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; color: var(--navy); }
.legal-content h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; font-size: 1.1rem; }
.legal-content p { margin-bottom: 1rem; color: var(--text-soft); }
.legal-content ul, .legal-content ol { margin: 0.75rem 0 1.5rem 1.5rem; color: var(--text-soft); }
.legal-content li { margin-bottom: 0.4rem; }
.legal-meta { color: var(--gray); font-size: 0.875rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }

/* ── BANNERS ── */
.notice-banner {
  background: linear-gradient(135deg, var(--primary-light) 0%, #c8eef9 100%);
  border: 1px solid rgba(9, 165, 214, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.notice-banner__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice-banner h3 { color: var(--navy); margin-bottom: 0.25rem; font-size: 1.05rem; }
.notice-banner p { color: var(--text-soft); font-size: 0.92rem; margin: 0; }

/* ── MOBILE BADGE ── */
.mobile-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(9, 165, 214, 0.35);
}

/* ── PLACEHOLDER ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--primary-light) 0%, #c8eef9 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px dashed rgba(9, 165, 214, 0.35);
  padding: 2rem;
  text-align: center;
}
.img-placeholder svg { opacity: 0.6; }

/* ── BOOKING BOX ── */
.booking-cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary-darker) 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.booking-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 50%);
}
.booking-cta-box > * { position: relative; }
.booking-cta-box h2 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.65rem; }
.booking-cta-box p { color: rgba(255,255,255,0.88); margin-bottom: 1.75rem; }

/* ── PHOTO UPLOAD NOTE ── */
.photo-upload-note {
  background: var(--primary-50);
  border: 1.5px dashed rgba(9, 165, 214, 0.4);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}
.photo-upload-note h3 { color: var(--primary-darker); margin-bottom: 0.5rem; }
.photo-upload-note p { color: var(--text-soft); font-size: 0.9rem; }
.photo-upload-note code { background: rgba(9, 165, 214, 0.1); padding: 0.15rem 0.4rem; border-radius: 4px; font-size: 0.85em; color: var(--primary-darker); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__stats { gap: 1.75rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta .nav__phone { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  }
  .trust-bar__inner { gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.75rem 0.6rem; }
  .before-after { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 1.25rem; }
}
