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

:root {
  --black: #0A0A0A;
  --black-light: #141414;
  --black-card: #1A1A1A;
  --black-border: #2A2A2A;
  --gold: #C8A96E;
  --gold-light: #D4B87A;
  --gold-dim: #A88D58;
  --gold-glow: rgba(200,169,110,0.15);
  --white: #FFFFFF;
  --off-white: #F5F5F0;
  --text: #E8E8E8;
  --text-dim: #999999;
  --text-muted: #666666;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 32px rgba(200,169,110,0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --max-w: 1200px;
  --transition: 0.4s cubic-bezier(0.4,0,0.2,1);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; font-weight: 600; }

.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 560px;
  margin: 0 auto 56px;
  color: var(--text-dim);
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.8;
}

/* ─── Header / Nav ─── */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(200,169,110,0.08);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(10,10,10,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom-color: rgba(200,169,110,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}
.nav-logo img { filter: brightness(1.3); transition: filter var(--transition); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }

.nav-links a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: color var(--transition);
  position: relative;
  letter-spacing: 0.02em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 10px 28px;
  border-radius: 4px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  transition: all var(--transition);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  box-shadow: var(--shadow-gold);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 1px;
}

/* ─── Hero ─── */
.hero {
  padding: 180px 0 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%; left: -10%; right: -10%; bottom: -10%;
  background: url('images/hero-option-2.jpg') center/cover no-repeat;
  animation: heroZoom 30s ease-in-out infinite alternate;
  filter: brightness(0.3) saturate(0.8);
  z-index: 0;
  transition: opacity 1.5s ease;
}
.hero:has(.hero-slide)::after { opacity: 0; }
.hero-slide {
  position: absolute;
  top: -10%; left: -10%; right: -10%; bottom: -10%;
  background-size: cover;
  background-position: center;
  animation: heroZoom 30s ease-in-out infinite alternate;
  filter: brightness(0.3) saturate(0.8);
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.2) 40%,
    rgba(10,10,10,0.4) 70%,
    rgba(10,10,10,0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; width: 100%; }

.hero .section-label {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 0.68rem;
}

.hero h1 {
  margin-bottom: 24px;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  padding: 18px 48px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-cta:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.hero-cta svg { width: 16px; height: 16px; }

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  padding: 18px 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  transition: all var(--transition);
  letter-spacing: 0.05em;
}
.hero-cta-secondary:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-badge svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; opacity: 0.8; }

/* ─── Sections ─── */
section { padding: 120px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

/* Alternating section backgrounds */
.section-dark { background: var(--black); }
.section-darker { background: var(--black-light); }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ─── Before/After Gallery ─── */
.ba-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ba-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ba-card:hover img { transform: scale(1.05); }

.ba-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.ba-card:hover .ba-card-overlay { opacity: 1; }

.ba-card-overlay span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
}
.ba-card-overlay p {
  color: var(--white);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Before/After Slider */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  border: 1px solid var(--black-border);
}

.ba-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }

.ba-slider-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gold);
  z-index: 5;
  transform: translateX(-50%);
}

.ba-slider-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
}

.ba-slider-handle::before {
  content: '\2194';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  z-index: 6;
}

.ba-labels {
  position: absolute;
  top: 16px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 4;
  pointer-events: none;
}

.ba-label {
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Visit Section ─── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.visit-text h2 { margin-bottom: 24px; }
.visit-text p { color: var(--text-dim); margin-bottom: 16px; line-height: 1.8; font-size: 0.95rem; }

.visit-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.visit-photo-placeholder {
  aspect-ratio: 4/3;
  background: var(--black-card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  overflow: hidden;
  transition: transform var(--transition);
  border: 1px solid var(--black-border);
}
.visit-photo-placeholder:hover { transform: scale(1.02); }
.visit-photo-placeholder.large {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

/* ─── Why Cards ─── */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 44px 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,169,110,0.15); }

.why-card-icon {
  width: 52px; height: 52px;
  background: var(--gold-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}

.why-card h3 { margin-bottom: 12px; font-family: var(--serif); color: var(--white); }
.why-card p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.75; }

/* ─── How It Works ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.step { text-align: center; position: relative; }

.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--black-card);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}

.step:hover .step-number {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.step h3 { margin-bottom: 10px; font-size: 1.1rem; font-family: var(--serif); color: var(--white); }
.step p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; }

/* ─── Pricing ─── */
.pricing-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 56px;
  border: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
}

.pricing-range { text-align: center; margin-bottom: 40px; }

.pricing-range .price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
}

.pricing-range .price-note {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 8px;
}

.pricing-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pricing-list h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 600;
}

.pricing-list ul { list-style: none; }

.pricing-list li {
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.pricing-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

.included li::before { background: var(--gold); }
.excluded li::before { background: var(--black-border); }

.pricing-disclosure {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--black-border);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--black-border);
  transition: transform var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,169,110,0.15);
}

.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 20px; letter-spacing: 4px; }

.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.2);
}

.testimonial-name { font-weight: 600; font-size: 0.9rem; font-family: var(--sans); color: var(--white); }
.testimonial-detail { font-size: 0.78rem; color: var(--text-muted); }

.testimonials-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── About / Group ─── */
.about-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-inner p {
  color: var(--text-dim);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.85;
}

.group-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.group-logo-placeholder {
  padding: 12px 28px;
  background: var(--black-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--black-border);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color var(--transition);
}
.group-logo-placeholder:hover { border-color: var(--gold-dim); }

/* ─── Contact / Form ─── */
.form-section { background: var(--black-light); }
.form-section .section-label { color: var(--gold); }
.form-section h2 { color: var(--white); }
.form-section .section-subtitle { color: var(--text-dim); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.form-info h3 { color: var(--white); margin-bottom: 16px; font-size: 1.4rem; font-family: var(--serif); }
.form-info p { color: var(--text-dim); margin-bottom: 28px; line-height: 1.8; }

.form-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.form-contact-item:hover { color: var(--white); }

.form-contact-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

.enquiry-form {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 44px;
  border: 1px solid var(--black-border);
}

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--black-border);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--sans);
  transition: border-color var(--transition), background var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(200,169,110,0.05);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.consent-group input[type="checkbox"] {
  width: 20px; height: 20px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.consent-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 18px 32px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-submit:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); }
.form-submit:disabled { opacity: 0.4; cursor: not-allowed; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--white);
}

.form-success h3 { color: var(--gold); margin-bottom: 12px; font-family: var(--serif); }

/* ─── Footer ─── */
.site-footer {
  background: var(--black);
  color: var(--text-muted);
  padding: 64px 0 28px;
  font-size: 0.85rem;
  border-top: 1px solid var(--black-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand p { margin-top: 10px; max-width: 320px; line-height: 1.7; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--black-card); color: var(--text-muted);
  border: 1px solid var(--black-border);
  transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-2px); }

.footer-links { display: flex; gap: 56px; }
.footer-links-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dim);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links-col a {
  display: block;
  color: var(--text-muted);
  padding: 5px 0;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ─── WhatsApp Button ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black-card);
  padding: 22px 24px;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
  z-index: 200;
  display: none;
  border-top: 1px solid var(--black-border);
}

.cookie-banner.show { display: block; }

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 300px; font-size: 0.88rem; color: var(--text-dim); }
.cookie-text a { text-decoration: underline; color: var(--gold); }

.cookie-buttons { display: flex; gap: 12px; }

.cookie-btn {
  padding: 10px 24px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--gold);
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--gold);
  color: var(--black);
}
.cookie-accept:hover { background: var(--gold-light); }

.cookie-reject {
  background: transparent;
  color: var(--gold);
}
.cookie-reject:hover { background: rgba(200,169,110,0.1); }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Guarantee Bar ─── */
.guarantee-bar {
  background: var(--gold);
  padding: 14px 0;
  text-align: center;
}
.guarantee-bar p {
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─── Results Strip ─── */
.results-strip {
  display: flex;
  gap: 4px;
  overflow: hidden;
  padding: 0;
}
.results-strip img {
  flex: 1;
  min-width: 0;
  height: 280px;
  object-fit: cover;
  filter: grayscale(0.3);
  transition: filter 0.4s, transform 0.4s;
}
.results-strip img:hover {
  filter: grayscale(0);
  transform: scale(1.02);
}

/* ─── Flights Widget ─── */
.hero-flights-widget {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  min-width: 280px;
  max-width: 320px;
}

.flights-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.flight-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
}
.flight-row:last-child { border: none; }
.flight-row a { color: var(--text-dim); }
.flight-row a:hover { color: var(--white); }
.flight-price { color: #34D399; font-weight: 600; }

/* ─── Responsive ─── */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--black-light);
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--black-border);
    animation: slideDown 0.3s ease;
  }
  .nav-links.open li { opacity: 1 !important; transform: none !important; pointer-events: auto !important; }
  .nav-links.open li a {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
  }
  .nav-links.open li a::after { display: none; }
  .nav-links.open li a:hover { background: rgba(200,169,110,0.08); }
  .nav-links.open .nav-cta {
    text-align: center;
    margin-top: 8px;
    padding: 16px 24px !important;
    font-size: 0.9rem !important;
  }
  .nav-toggle { display: block; }
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .pricing-lists { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ba-gallery { grid-template-columns: 1fr 1fr; }
  .results-strip img { height: 200px; }
}

@media (max-width: 600px) {
  section { padding: 80px 0; }
  .hero { padding: 140px 0 100px; min-height: auto; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-cta { padding: 16px 36px; font-size: 0.85rem; }
  .hero-badges { gap: 16px; flex-direction: column; align-items: center; }
  .steps { grid-template-columns: 1fr; }
  .step-number { width: 56px; height: 56px; font-size: 1.2rem; }
  .pricing-box { padding: 32px; }
  .pricing-range .price { font-size: 2.4rem; }
  .enquiry-form { padding: 28px; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 24px; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item h3 { font-size: 2rem; }
  .ba-gallery { grid-template-columns: 1fr; }
  .results-strip img { height: 150px; }
  .hero-flights-widget { min-width: auto !important; max-width: 100% !important; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Doctor Banner ─── */
.doctor-banner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--black-border);
}
@media (max-width: 968px) {
  .doctor-banner { grid-template-columns: 1fr !important; padding: 32px; }
}

/* ─── Flight deals ─── */
.flight-deal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--black-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--black-border);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.flight-deal:hover {
  border-color: var(--gold-dim);
  transform: translateY(-1px);
}
.flight-route { font-size: 0.85rem; font-weight: 500; color: var(--text-dim); display: flex; align-items: center; gap: 6px; }
.flight-flag { font-size: 1rem; }
