/* Police chargée via <link preconnect> dans le <head> de chaque page (Cinzel + Cormorant Garamond + Lato — identique à Dansira) */

/* ===== MASTER SAGARAYA UK — MAIN STYLESHEET ===== */
/* Modern, clean, spiritual — built for UK market */

:root {
  --f-display:    'Cinzel', 'Georgia', serif;
  --f-body:       'Cormorant Garamond', serif;
  --f-ui:         'Lato', sans-serif;
  --navy:         #07090f;
  --navy-2:       #0d1117;
  --navy-3:       #131a27;
  --navy-4:       #1a2436;
  --gold:         #c9a84c;
  --gold-light:   #e8c96a;
  --gold-dark:    #a07c28;
  --gold-pale:    #f5e9c8;
  --teal:         #1a8fa0;
  --teal-light:   #22b8cc;
  --cream:        #f8f5ef;
  --cream-2:      #ede8de;
  --white:        #ffffff;
  --text-body:    #c8cdd8;
  --text-muted:   #6b7585;
  --border:       rgba(201,168,76,0.15);
  --border-2:     rgba(255,255,255,0.06);
  --radius:       10px;
  --radius-lg:    18px;
  --radius-xl:    28px;
  --shadow:       0 8px 40px rgba(0,0,0,0.4);
  --shadow-gold:  0 6px 30px rgba(201,168,76,0.25);
  --shadow-teal:  0 6px 30px rgba(26,143,160,0.25);
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w:        1100px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  font-weight: 300;
  font-style: italic;
  background: var(--navy);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--f-ui); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-style: normal;
  line-height: 1.25;
  color: var(--cream);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.05rem; font-family: var(--f-display); font-weight: 600; }
p  { color: var(--text-body); font-size: 1.05rem; font-family: var(--f-body); font-weight: 300; font-style: italic; }

.gold  { color: var(--gold); }
.teal  { color: var(--teal-light); }
.cream { color: var(--cream); }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--f-ui);
  font-size: 0.95rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,168,76,0.45);
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(26,143,160,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--cream);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }
.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-gold {
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
}
.badge-teal {
  background: rgba(26,143,160,0.12);
  color: var(--teal-light);
  border: 1px solid rgba(26,143,160,0.25);
}
.badge-white {
  background: rgba(255,255,255,0.06);
  color: var(--cream-2);
  border: 1px solid var(--border-2);
}

/* ===== DIVIDER ===== */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 14px 0 22px;
}
.divider-center { margin: 14px auto 22px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,9,15,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-2);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(7,9,15,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.nav-logo-text { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; color: var(--cream); }
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: normal;
  color: var(--text-body);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--cream); background: var(--border-2); }
.nav-links a.active { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-burger {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--border-2);
  color: var(--cream);
  font-size: 1.2rem;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border-2);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-2);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 70%, rgba(26,143,160,0.06) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 50%, var(--navy-2) 100%);
}
.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(201,168,76,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 15%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 60%, rgba(201,168,76,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 80%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 85%, rgba(26,143,160,0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 90% 55%, rgba(201,168,76,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 30%, rgba(255,255,255,0.25) 0%, transparent 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: 60px 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-eyebrow-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 { margin-bottom: 22px; }
.hero-desc { font-family: var(--f-body); font-weight: 300; font-style: italic; font-size: 1.2rem; color: var(--text-body); margin-bottom: 36px; max-width: 520px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust-num {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Hero card */
.hero-card {
  background: linear-gradient(145deg, var(--navy-3), var(--navy-4));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}
.hero-card-header { text-align: center; margin-bottom: 28px; }
.hero-card-avatar {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: var(--shadow-gold);
}
.hero-card-name { font-family: var(--f-display); font-size: 1.3rem; color: var(--cream); margin-bottom: 4px; }
.hero-card-title { font-size: 0.85rem; color: var(--text-muted); }
.hero-card-stars { color: var(--gold); font-size: 1rem; margin: 8px 0; letter-spacing: 2px; }

.hero-card-form { display: flex; flex-direction: column; gap: 12px; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-field label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.form-field input, .form-field select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--cream);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  width: 100%;
}
.form-field input:focus, .form-field select:focus {
  outline: none;
  border-color: rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.06);
}
.form-field select option { background: var(--navy-3); }
.hero-card-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.hero-card-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.trust-bar-item svg, .trust-bar-item .icon { color: var(--gold); font-size: 1.1rem; }
.trust-bar-item strong { color: var(--cream); font-weight: 600; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-body); font-size: 1.05rem; }
.section-header .divider { margin: 14px auto 20px; }

/* ===== IMAGE GALLERY (hero strip + spiritual world grid) ===== */
.img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.img-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-2);
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.img-card:hover img { transform: scale(1.06); }
.img-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(7,9,15,0.85), transparent);
}
.img-overlay p {
  font-family: var(--f-ui);
  font-style: normal;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-2);
}
.gallery-item.featured { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(7,9,15,0.85), transparent);
}
.gallery-caption p {
  font-family: var(--f-ui);
  font-style: normal;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
}
@media (max-width: 768px) {
  .img-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.featured { grid-column: span 2; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.featured { grid-column: span 1; }
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: linear-gradient(145deg, var(--navy-2), var(--navy-3));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.service-card h3 { color: var(--cream); margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { font-size: 0.95rem; color: var(--text-body); margin-bottom: 20px; line-height: 1.7; }
.service-card .link-more { font-size: 0.85rem; color: var(--gold); display: flex; align-items: center; gap: 6px; font-weight: 600; }
.service-card .link-more:hover { gap: 10px; }

/* ===== HOW IT WORKS ===== */
.how-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: var(--navy-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.how-step:hover { border-color: rgba(201,168,76,0.15); }
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h4 { color: var(--cream); margin-bottom: 6px; font-size: 1rem; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--navy-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.15); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-family: var(--f-body); font-weight: 300; font-size: 1.05rem; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-4), var(--navy-3));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}
.testimonial-name { font-size: 0.9rem; font-weight: 600; color: var(--cream); }
.testimonial-location { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CITIES GRID ===== */
.cities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.city-card {
  background: var(--navy-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
}
.city-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-3px); background: var(--navy-3); }
.city-card-icon { font-size: 1.4rem; margin-bottom: 8px; }
.city-card-name { font-size: 0.9rem; font-weight: 600; color: var(--cream); }
.city-card-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--navy-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.97rem;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-chevron { font-size: 0.8rem; color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.95rem; color: var(--text-body); line-height: 1.75; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open { border-color: rgba(201,168,76,0.2); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-4) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--text-body); max-width: 520px; margin: 0 auto 32px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== CONTACT SECTION ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--navy-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; }
.contact-value { color: var(--cream); font-size: 1rem; font-weight: 600; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .btn { margin-top: 4px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border-2);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); margin-top: 12px; line-height: 1.7; max-width: 300px; }
.footer-col h5 { color: var(--cream); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col .footer-cities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.footer-bottom {
  border-top: 1px solid var(--border-2);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== PAGE HERO (service/city pages) ===== */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-3) 0%, var(--navy) 100%);
}
.page-hero-content { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: var(--text-muted); }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span { color: var(--gold); }
.page-hero h1 { margin-bottom: 18px; }
.page-hero .page-hero-desc { font-family: var(--f-body); font-weight: 300; font-style: italic; font-size: 1.2rem; color: var(--text-body); max-width: 600px; margin: 0 auto 28px; }
.page-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-2);
}
.page-hero-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-muted); }
.page-hero-meta-item strong { color: var(--gold); font-size: 1rem; }

/* ===== CONTENT SECTIONS ===== */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block h2 { margin-bottom: 16px; }
.content-block p { margin-bottom: 14px; }
.content-block ul { display: flex; flex-direction: column; gap: 10px; }
.content-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-body);
}
.content-block ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 5px;
  flex-shrink: 0;
}
.content-visual {
  background: linear-gradient(145deg, var(--navy-3), var(--navy-4));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}
.content-visual-icon { font-size: 5rem; margin-bottom: 20px; opacity: 0.85; }

/* ===== STICKY SIDEBAR ===== */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h4 { color: var(--cream); margin-bottom: 18px; font-size: 1rem; }
.sidebar-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-body);
  transition: var(--transition);
  border-bottom: 1px solid var(--border-2);
}
.sidebar-service-link:last-child { border-bottom: none; }
.sidebar-service-link:hover { color: var(--gold); background: rgba(201,168,76,0.05); }
.sidebar-service-link.active { color: var(--gold); font-weight: 600; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}
.highlight-box p { color: var(--cream-2); font-size: 0.97rem; }

/* ===== STATS ROW ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-2); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-2); }
.stat-block { background: var(--navy-2); padding: 32px 20px; text-align: center; }
.stat-num { font-family: var(--f-display); font-size: 2.4rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-gold);
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-3px); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-teal    { color: var(--teal-light); }
.text-muted   { color: var(--text-muted); }
.text-cream   { color: var(--cream); }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-12 { gap: 12px; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; gap: 40px; }
  .hero-card       { max-width: 480px; }
  .grid-4          { grid-template-columns: 1fr 1fr; }
  .cities-grid     { grid-template-columns: repeat(3, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .stats-row       { grid-template-columns: 1fr 1fr; }
  .page-layout     { grid-template-columns: 1fr; }
  .sidebar         { position: static; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section  { padding: 64px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .cities-grid  { grid-template-columns: repeat(2, 1fr); }
  .content-block { grid-template-columns: 1fr; gap: 32px; }
  .content-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-grid { padding: 40px 0; }
  .hero-trust { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { padding: 16px 28px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ===== LEGAL CONTENT (privacy/terms) ===== */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin-top: 44px; margin-bottom: 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal-content ul li { margin-bottom: 8px; color: var(--text-body); font-size: 1.05rem; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content .legal-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 36px; }
.legal-content strong { color: var(--cream); }
