/* ═══════════════════════════════════════════════════════════
   I AM YOUR LIGHTHOUSE — Static Site Stylesheet
   Faithful clone of iamyourlighthouse.com with bilingual support
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --sun-700: #e18700;
  --sun-600: #f09c00;
  --sun-500: #ffb100;
  --sun-400: #ffd166;
  --sun-300: #ffe29a;
  --sky-800: #0a2c4a;
  --sky-700: #0d3660;
  --brand-900: #4a3b24;
  --surface: #ffffff;
  --surface-soft: #f7f8fb;
  --border: #e6e8ef;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 10px 25px rgba(16,24,40,.12);
  --shadow-soft: 0 8px 18px rgba(16,24,40,.08);
  --container: 1200px;
  --green-wa: #25d366;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  color: var(--brand-900);
  line-height: 1.65;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sun-700); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }

/* ── Language — Noto Sans SC for Chinese ──────────────── */
:lang(zh) { font-family: 'Noto Sans SC', 'Inter', sans-serif; }

/* ── Container ─────────────────────────────────────────── */
.container {
  width: min(100%, calc(var(--container) + 48px));
  margin-inline: auto;
  padding-inline: 24px;
}

/* ══════════════════════════════════════════════════════════
   LANGUAGE BAR
══════════════════════════════════════════════════════════ */
.lang-bar {
  background: var(--sky-800);
  color: #fff;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.lang-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lang-bar__label {
  font-size: 13px;
  font-weight: 600;
  opacity: .85;
  letter-spacing: .02em;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.2);
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.lang-btn.active {
  background: var(--sun-500);
  color: #1a1000;
}
.lang-btn:hover:not(.active) {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.lang-flag { font-size: 15px; }
.lang-slider-track {
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,.2);
  margin: 0 2px;
}

/* ══════════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 41px;
  z-index: 100;
  background: rgba(10,44,74,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: .25s;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.brand { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; }
#nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
#nav-links a {
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  text-decoration: none;
}
#nav-links a:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 999px;
  padding: 10px 22px;
  border: 0;
  cursor: pointer;
  transition: transform .06s, box-shadow .2s, background .2s, color .2s, filter .2s;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.3;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(90deg, var(--sun-600), var(--sun-500));
  color: #1f1300;
  box-shadow: 0 8px 20px rgba(255,177,0,.35);
}
.btn-primary:hover { filter: brightness(1.06); text-decoration: none; }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); text-decoration: none; }
.btn-ghost-dark {
  background: transparent;
  color: var(--sky-800);
  border: 1.5px solid var(--sky-800);
}
.btn-ghost-dark:hover { background: var(--sky-800); color: #fff; text-decoration: none; }
.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5d; text-decoration: none; }
.pkg-btn {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  font-size: 13px;
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,31,53,.62), rgba(10,24,41,.78)),
    url('../assets/images/hero-bg.avif') center/cover no-repeat;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  max-width: 900px;
}
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 14px;
}
.hero h1 {
  margin: 0 0 10px;
  line-height: 1.05;
  font-size: clamp(40px, 5.6vw, 70px);
  font-weight: 800;
}
.accent { color: var(--sun-400); text-shadow: 0 2px 18px rgba(255,209,102,.35); }
.hero .sub {
  font-size: clamp(16px, 2.1vw, 20px);
  opacity: .95;
  max-width: 820px;
  margin: 8px auto 28px;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 20px;
  z-index: 1;
}
.scroll-hint::after {
  content: "";
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  animation: wheel 1.6s infinite ease-in-out;
}
@keyframes wheel {
  0% { opacity: 0; transform: translate(-50%,0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,10px); }
}

/* ══════════════════════════════════════════════════════════
   SECTIONS — shared
══════════════════════════════════════════════════════════ */
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 36px; }
.section-title h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin: 0 0 10px;
  color: var(--sky-800);
  letter-spacing: .2px;
}
.section-title p {
  margin: 0 auto;
  max-width: 820px;
  color: #4b5b6b;
  font-size: clamp(15px, 1.8vw, 17px);
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

/* ══════════════════════════════════════════════════════════
   ABOUT — Beacon of Hope
══════════════════════════════════════════════════════════ */
.about { background: linear-gradient(180deg, #fff, var(--surface-soft)); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: start;
}
.about-text h3 {
  font-size: 20px;
  color: var(--sky-800);
  margin-bottom: 12px;
}
.about-text p { color: #3d4e60; margin-bottom: 14px; }
.dot-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.dot-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  color: #3d4e60;
  font-weight: 500;
}
.dot-list li:last-child { border-bottom: 0; }
.dot-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sun-500);
  flex-shrink: 0;
}
.about-card {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(160deg, #fffbf0, #fff8e1);
  border-color: #f0e0a0;
}
.about-card__icon { font-size: 40px; margin-bottom: 16px; }
.about-card blockquote {
  font-size: 16px;
  font-style: italic;
  color: var(--sky-800);
  line-height: 1.7;
  border: none;
  padding: 0;
}

/* ══════════════════════════════════════════════════════════
   LIFE NOT RANDOM
══════════════════════════════════════════════════════════ */
.life-not-random { background: #fff; }
.life-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px;
}
.dot-list-colored {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dot-list-colored li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 8px;
  border-bottom: 1px dashed var(--border);
  border-radius: 10px;
}
.dot-list-colored li:last-child { border-bottom: 0; }
.dot-list-colored li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.dot-orange::before { background: #f09c00; }
.dot-blue::before { background: #3b82f6; }
.dot-list-colored strong {
  color: var(--sky-800);
  margin-right: 8px;
  white-space: nowrap;
}
.dot-list-colored span { color: #4b5b6b; }
.life-clarity {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.life-clarity p {
  color: #4b5b6b;
  font-size: 16px;
  margin-bottom: 6px;
}
.life-clarity strong { color: var(--sky-800); font-size: 18px; }

/* ══════════════════════════════════════════════════════════
   GOOGLE REVIEWS CAROUSEL
══════════════════════════════════════════════════════════ */
.reviews { background: var(--surface-soft); }
.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.review-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 260px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.review-meta { flex: 1; min-width: 0; }
.review-name { font-weight: 700; font-size: 14px; color: var(--sky-800); }
.review-date { font-size: 12px; color: #8a9aaa; }
.review-google-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.review-stars { color: #fbbc04; font-size: 15px; letter-spacing: 1px; }
.review-verified { display: flex; align-items: center; gap: 4px; font-size: 12px; color: #4285f4; font-weight: 600; }
.review-text { font-size: 14px; color: #3d4e60; line-height: 1.6; flex: 1; }
.review-text.truncated { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.review-read-more { font-size: 13px; color: #4285f4; cursor: pointer; font-weight: 600; background: none; border: none; padding: 0; }
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--sky-800);
  transition: background .2s, box-shadow .2s;
}
.carousel-btn:hover { background: var(--sky-800); color: #fff; }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .2s;
}
.carousel-dot.active { background: var(--sun-500); }

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services { background: linear-gradient(360deg, #fff, var(--surface-soft)); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.service-card { display: flex; flex-direction: column; gap: 10px; }
.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sun-700);
  background: #fff8e1;
  border: 1px solid #f0d060;
  border-radius: 999px;
  padding: 3px 10px;
  width: fit-content;
}
.service-card h3 { font-size: 18px; color: var(--sky-800); }
.service-card p { font-size: 14px; color: #4b5b6b; }
.services-cta {
  text-align: center;
  padding: 28px;
  background: linear-gradient(135deg, #fffbf0, #fff);
  border-radius: var(--radius-lg);
  border: 1px solid #f0e0a0;
}
.services-cta p { color: #4b5b6b; margin-bottom: 16px; font-size: 16px; }

/* ══════════════════════════════════════════════════════════
   PACKAGES
══════════════════════════════════════════════════════════ */
.packages { background: linear-gradient(180deg, #fff, #fffaf1); padding-top: 64px; padding-bottom: 84px; }
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-cards .pkg-card:nth-child(4),
.price-cards .pkg-card:nth-child(5) {
  grid-column: span 1;
}
/* Centre the last 2 cards */
.price-cards-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 740px;
  margin: 22px auto 0;
}
.pkg-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg-card.featured {
  border-color: var(--sun-500);
  box-shadow: 0 8px 28px rgba(255,177,0,.22);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--sun-600), var(--sun-500));
  color: #1a0f00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pkg-card header h3 { margin: 0 0 4px; color: var(--sky-800); font-size: 18px; }
.pkg-card .strap { color: #5b6a7a; font-size: 13px; margin: 0; }
.pkg-card .price {
  font-weight: 800;
  font-size: 26px;
  margin: 12px 0 8px;
  color: var(--sky-800);
}
.pkg-card .price .sub {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: #6a7480;
}
.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  color: #3d4e60;
  flex: 1;
}
.bullets li {
  padding: 7px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13.5px;
}
.bullets li:last-child { border-bottom: 0; }
.pkg-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
.or-divider {
  font-weight: 700;
  color: #b0b0b0;
  font-size: 12px;
  flex-shrink: 0;
}
.form-ico, .wa-ico { display: inline-flex; align-items: center; }

/* ══════════════════════════════════════════════════════════
   SUPPORT
══════════════════════════════════════════════════════════ */
.support { background: #fff; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}
.support-card { text-align: center; padding: 32px 24px; }
.support-icon { font-size: 36px; margin-bottom: 14px; }
.support-card h3 { font-size: 20px; color: var(--sky-800); margin-bottom: 10px; }
.support-card p { color: #4b5b6b; font-size: 15px; }

/* Accreditations carousel */
.accreditations { text-align: center; }
.accred-title {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky-800);
  background: #fffbf0;
  border: 1px solid #f0d060;
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 8px;
}
.accred-sub { color: #6a7480; font-size: 14px; margin-bottom: 24px; }
.accred-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.accred-track {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.accred-item {
  flex: 0 0 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
.accred-logo { max-height: 60px; max-width: 160px; object-fit: contain; margin: 0 auto; }
.accred-badge {
  font-weight: 800;
  font-size: 14px;
  color: var(--sky-800);
  text-align: center;
  letter-spacing: .05em;
}

/* ══════════════════════════════════════════════════════════
   ABOUT ME
══════════════════════════════════════════════════════════ */
.aboutme { background: linear-gradient(180deg, #fff, #fffaf1); }
.aboutme-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.aboutme-text h2 { color: var(--sky-800); font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 16px; }
.aboutme-text p { color: #3d4e60; margin-bottom: 14px; font-size: 16px; }
.aboutme-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.photo-img { border-radius: 18px; box-shadow: var(--shadow); border: 1px solid var(--border); width: 100%; }

/* ══════════════════════════════════════════════════════════
   DEEP RELAXATION AUDIO — Product Section
══════════════════════════════════════════════════════════ */
.audio-product { background: #f5f0e8; }
.audio-product-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.audio-product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.audio-product-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.audio-product-body { padding: 24px; text-align: left; }
.audio-product-body h3 { font-size: 22px; color: var(--sky-800); margin-bottom: 8px; line-height: 1.3; }
.audio-price { font-size: 20px; font-weight: 700; color: var(--sky-800); margin-bottom: 16px; }
.btn-buy {
  display: block;
  width: 100%;
  background: #1a7a5e;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background .2s;
  text-decoration: none;
}
.btn-buy:hover { background: #145f49; text-decoration: none; color: #fff; }

/* ══════════════════════════════════════════════════════════
   GOOGLE MAP
══════════════════════════════════════════════════════════ */
.map-section { background: var(--surface-soft); }
.map-section .section-title { margin-bottom: 24px; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: 0;
}
.map-cta { text-align: center; }

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact { background: linear-gradient(180deg, #fff, var(--surface-soft)); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: start;
}
.contact-form-wrap h3 { font-size: 20px; color: var(--sky-800); margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: 14px; color: var(--sky-800); }
.form-group input,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--brand-900);
  transition: border-color .2s;
  background: #fff;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sun-500);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: #8a9aaa; margin-top: 4px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-block h3 { font-size: 20px; color: var(--sky-800); margin-bottom: 16px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.contact-detail:last-child { border-bottom: 0; }
.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 13px; color: var(--sky-800); margin-bottom: 2px; }
.contact-detail a, .contact-detail span { font-size: 14px; color: #4b5b6b; }
.contact-note { background: linear-gradient(160deg, #eef6ff, #fff4d6); border-color: #dfe8f2; }
.contact-note p { font-size: 14px; color: #283f57; font-style: italic; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer {
  background: #f8f5ef;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  color: #546579;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: #6a7a8a; max-width: 280px; }
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links nav a { font-size: 14px; color: #546579; font-weight: 600; }
.footer-links nav a:hover { color: var(--sky-800); text-decoration: none; }
.footer-social p { font-weight: 700; font-size: 15px; color: var(--sky-800); margin-bottom: 14px; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s, opacity .2s;
  text-decoration: none !important;
}
.social-link:hover { transform: translateY(-2px); opacity: .9; }
.social-link.instagram { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.social-link.facebook { background: #1877f2; }
.social-link.threads { background: #000; }
.social-link.tiktok { background: #010101; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #8a9aaa;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ══════════════════════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   FORM SUCCESS MESSAGE
══════════════════════════════════════════════════════════ */
.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: 10px;
  padding: 16px;
  color: #065f46;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .price-cards-row2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .support-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .aboutme-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  #nav-links { display: none; }
  .nav-toggle { display: flex; }
  .review-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .price-cards-row2 { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .review-card { flex: 0 0 calc(100% - 0px); }
  .hero__content { padding: 100px 0 60px; }
  .lang-bar__inner { gap: 10px; }
}
@media (max-width: 480px) {
  .pkg-actions { flex-direction: column; }
  .pkg-actions .btn { width: 100%; }
  .or-divider { display: none; }
  .aboutme-actions { flex-direction: column; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE NAV OPEN STATE
══════════════════════════════════════════════════════════ */
#nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10,44,74,.97);
  padding: 16px 24px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 99;
}
#site-header { position: relative; }

/* ══════════════════════════════════════════════════════════
   ACCREDITATIONS — overflow fix for carousel
══════════════════════════════════════════════════════════ */
.accred-carousel-wrap {
  overflow: hidden;
  padding: 8px 0;
}
.accred-track {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.accreditations > div[style] {
  padding: 0 32px;
}

/* ══════════════════════════════════════════════════════════
   REVIEWS — grid fallback when JS not loaded
══════════════════════════════════════════════════════════ */
.reviews-carousel-wrap {
  overflow: hidden;
  padding: 4px 0;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* ══════════════════════════════════════════════════════════
   AUDIO PRODUCT — image crop fix
══════════════════════════════════════════════════════════ */
.audio-product-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
}

/* ══════════════════════════════════════════════════════════
   PACKAGES — row 2 centering
══════════════════════════════════════════════════════════ */
.price-cards-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 740px;
  margin: 22px auto 0;
}

/* ══════════════════════════════════════════════════════════
   HERO background fallback
══════════════════════════════════════════════════════════ */
.hero__bg {
  background:
    linear-gradient(180deg, rgba(14,31,53,.62), rgba(10,24,41,.78)),
    url('images/hero-bg.avif') center/cover no-repeat,
    linear-gradient(180deg, #0a2c4a, #0d3660);
}

/* ══════════════════════════════════════════════════════════
   CONTACT FORM — submit button hover
══════════════════════════════════════════════════════════ */
.contact-form button[type="submit"] {
  width: 100%;
  font-size: 16px;
  padding: 14px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER — social link colours
══════════════════════════════════════════════════════════ */
.social-link svg { flex-shrink: 0; }
