/* =============================================================
   MedX Careers — Main Stylesheet
   Author: MedX Careers (medxcareers.co.uk)
   Last Updated: 2025
   ============================================================= */

:root {
  --nhs-navy:     #003087;
  --nhs-blue:     #0072CE;
  --nhs-light:    #005EB8;
  --accent:       #00A9CE;
  --gold:         #FFB81C;
  --green:        #1a7a4a;
  --white:        #ffffff;
  --off-white:    #F4F8FD;
  --text-dark:    #0D1B2E;
  --text-mid:     #3D5470;
  --text-light:   #7A90A8;
  --border:       #D5E4F3;
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --section-pad:  80px 5%;
  --max-width:    1100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); overflow-x: hidden; }

/* ════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 26, 80, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 1px 0 rgba(255, 184, 28, 0.4);
  transition: background 0.3s;
}

nav.scrolled { background: rgba(0, 26, 92, 0.99); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; z-index: 101; }
.nav-logo-circle { width: 40px; height: 40px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--nhs-navy); border: 2px solid var(--accent); flex-shrink: 0; }
.nav-logo-circle span { color: var(--nhs-blue); }
.nav-brand { font-family: var(--font-display); font-size: 18px; color: white; font-weight: 700; }

.nav-links { display: flex; gap: 28px; list-style: none; }

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent !important;
  color: var(--gold) !important;
  padding: 7px 18px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border: 1px solid rgba(255,184,28,0.5) !important;
  transition: all 0.3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--nhs-navy) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 24px rgba(255,184,28,0.3) !important;
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  background: none;
  border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile full-screen menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(0, 18, 60, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
  animation: slideDown 0.3s ease;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { display: block; color: white; text-decoration: none; font-size: 22px; font-weight: 500; padding: 14px 40px; border-radius: 10px; text-align: center; width: 100%; max-width: 300px; transition: background 0.2s; letter-spacing: -0.01em; }
.nav-mobile-menu a:hover { background: rgba(255,255,255,0.08); }
.nav-mobile-menu .nav-cta-mobile { background: var(--gold); color: var(--nhs-navy) !important; font-weight: 700; margin-top: 12px; border-radius: 10px; }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #001a5c 0%, #003087 45%, #005EB8 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

/* NHS staff photo layer — subtle background */
.hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=1600&q=80');
  background-size: cover;
  background-position: center right;
  opacity: 0.15;
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,169,206,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,184,28,0.1) 0%, transparent 40%),
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
}

/* Gradient to keep text readable over image */
.hero-text-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0,20,80,0.92) 0%, rgba(0,48,135,0.7) 50%, transparent 100%);
}

.hero-content { position: relative; z-index: 3; max-width: 620px; animation: fadeUp 0.8s ease both; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,184,28,0.15); border: 1px solid rgba(255,184,28,0.4); color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: blink 1.5s infinite; }

.hero h1 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 58px); font-weight: 900; color: white; line-height: 1.12; margin-bottom: 20px; }
.hero h1 em { color: var(--accent); font-style: italic; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); font-size: 13px; }
.trust-icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.hero-visual { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 340px; display: none; animation: fadeUp 1s 0.3s ease both; z-index: 3; }
.floating-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 20px 22px; backdrop-filter: blur(16px); margin-bottom: 16px; animation: float 3s ease-in-out infinite; }
.floating-card:nth-child(2) { animation-delay: 1s; margin-left: 30px; }
.floating-card:nth-child(3) { animation-delay: 2s; }
.card-label { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.card-value { font-size: 15px; color: white; font-weight: 500; }
.card-tag { display: inline-block; margin-top: 8px; background: rgba(0,169,206,0.3); color: var(--accent); font-size: 11px; padding: 3px 10px; border-radius: 100px; }

/* ════════════════════════════════════════════
   SOCIAL PROOF BAR
   ════════════════════════════════════════════ */
.proof-bar { background: var(--nhs-navy); padding: 18px 5%; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; border-bottom: 3px solid var(--gold); }
.proof-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 14px; }
.proof-num { font-family: var(--font-display); font-size: 22px; color: var(--gold); font-weight: 700; }

/* ════════════════════════════════════════════
   STAFF PHOTO BANNER
   ════════════════════════════════════════════ */
.staff-banner {
  display: flex;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.staff-banner-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: flex 0.4s ease;
}

.staff-banner-img:hover { flex: 1.4; }

/* Dark overlay on each panel */
.staff-banner-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,48,135,0.25) 0%, rgba(0,18,60,0.65) 100%);
  z-index: 1;
  transition: background 0.3s;
}

.staff-banner-img:hover::before {
  background: linear-gradient(to bottom, rgba(0,48,135,0.15) 0%, rgba(0,18,60,0.45) 100%);
}

/* Divider line between panels */
.staff-banner-img + .staff-banner-img { border-left: 2px solid rgba(255,255,255,0.2); }

.staff-banner-img.admin {
  background-image: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=800&q=80');
  background-position: center top;
}

.staff-banner-img.clinical {
  background-image: url('https://images.unsplash.com/photo-1582750433449-648ed127bb54?w=800&q=80');
  background-position: center center;
}

.staff-banner-img.team {
  background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=800&q=80');
  background-position: center center;
}

.staff-banner-label {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ════════════════════════════════════════════
   SECTION SHARED
   ════════════════════════════════════════════ */
section { padding: var(--section-pad); }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--nhs-blue); margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px); font-weight: 700; color: var(--nhs-navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--text-mid); line-height: 1.7; max-width: 580px; }
.section-header { max-width: var(--max-width); margin: 0 auto 48px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════ */
.services-bg { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: var(--max-width); margin: 0 auto; }
.service-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 28px 26px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--nhs-blue), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,48,135,0.12); border-color: var(--nhs-blue); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: var(--nhs-navy); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon-wrap svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 17px; font-weight: 600; color: var(--nhs-navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.service-tag { display: inline-block; font-size: 11px; font-weight: 600; color: var(--nhs-blue); background: rgba(0,114,206,0.1); padding: 4px 12px; border-radius: 100px; }

/* ════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════ */
.steps-wrap { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; }
.step { display: flex; gap: 28px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); opacity: 0; transform: translateX(-20px); transition: opacity 0.5s, transform 0.5s; }
.step.visible { opacity: 1; transform: translateX(0); }
.step:last-child { border-bottom: none; }
.step-number { width: 52px; height: 52px; border-radius: 50%; background: var(--nhs-navy); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; font-weight: 700; flex-shrink: 0; }
.step-content h3 { font-size: 18px; font-weight: 600; color: var(--nhs-navy); margin-bottom: 6px; }
.step-content p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* ════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.price-card { border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; background: white; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.price-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(0,48,135,0.12); }
.price-card.featured { border: 2px solid var(--nhs-blue); background: var(--nhs-navy); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--nhs-navy); font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.price-tier { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--nhs-blue); margin-bottom: 8px; }
.price-card.featured .price-tier { color: var(--accent); }
.price-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--nhs-navy); margin-bottom: 4px; }
.price-card.featured .price-name { color: white; }
.price-amount { font-size: 38px; font-weight: 700; color: var(--nhs-navy); margin: 12px 0 4px; font-family: var(--font-display); }
.price-card.featured .price-amount { color: var(--gold); }
.price-amount span { font-size: 18px; font-weight: 400; }
.price-note { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.price-card.featured .price-note { color: rgba(255,255,255,0.5); }
.price-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.price-card.featured .price-divider { border-color: rgba(255,255,255,0.15); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); }
.price-card.featured .price-features li { color: rgba(255,255,255,0.8); }
.check-icon { width: 18px; height: 18px; background: rgba(0,169,206,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.price-card.featured .check-icon { background: rgba(0,169,206,0.25); }
.check-icon svg { width: 10px; height: 10px; stroke: var(--nhs-blue); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.price-card.featured .check-icon svg { stroke: var(--accent); }

.btn-book { display: block; text-align: center; padding: 13px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; width: 100%; font-family: var(--font-body); }
.btn-book-outline { background: transparent; color: var(--nhs-navy); border: 1.5px solid var(--nhs-blue); }
.btn-book-outline:hover { background: var(--nhs-blue); color: white; }
.btn-book-gold { background: var(--gold); color: var(--nhs-navy); box-shadow: 0 4px 16px rgba(255,184,28,0.3); }
.btn-book-gold:hover { box-shadow: 0 6px 24px rgba(255,184,28,0.45); transform: translateY(-1px); }

.btn-gold { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--nhs-navy); font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 8px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(255,184,28,0.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,184,28,0.45); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: white; font-size: 15px; font-weight: 500; padding: 14px 28px; border-radius: 8px; text-decoration: none; border: 1px solid rgba(255,255,255,0.35); transition: background 0.2s, border-color 0.2s; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.testimonials-bg { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: var(--max-width); margin: 0 auto; }
.testimonial-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 26px; }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card blockquote { font-size: 15px; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 18px; border: none; padding: 0; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; flex-shrink: 0; }
.reviewer-info .name { font-size: 14px; font-weight: 600; color: var(--nhs-navy); }
.reviewer-info .role { font-size: 12px; color: var(--text-light); }

/* ════════════════════════════════════════════
   BOOKING SECTION
   ════════════════════════════════════════════ */
.booking-section { background: linear-gradient(135deg, #001a5c, #003087); padding: var(--section-pad); position: relative; overflow: hidden; }
.booking-bg-image { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1584820927498-cfe5211fd8bf?w=1400&q=80'); background-size: cover; background-position: center; opacity: 0.07; z-index: 0; }
.booking-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 50%, rgba(0,169,206,0.12) 0%, transparent 60%); z-index: 1; pointer-events: none; }
.booking-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; text-align: center; }
.booking-inner .section-title { color: white; }
.booking-inner .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto 36px; }
.booking-form { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 36px; backdrop-filter: blur(12px); text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 11px 14px; font-size: 14px; color: white; font-family: var(--font-body); outline: none; transition: border-color 0.2s; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-select { color: rgba(255,255,255,0.85); }
.form-select option { background: var(--nhs-navy); color: white; }
.form-textarea { min-height: 90px; resize: vertical; }
.btn-submit { width: 100%; background: var(--gold); color: var(--nhs-navy); font-size: 15px; font-weight: 700; padding: 15px 20px; border-radius: 8px; border: none; cursor: pointer; font-family: var(--font-body); margin-top: 8px; transition: all 0.2s; box-shadow: 0 4px 20px rgba(255,184,28,0.3); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,184,28,0.45); }
.btn-submit.sent { background: var(--green); color: white; cursor: default; transform: none; }
.form-privacy { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 14px; line-height: 1.5; }

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; font-size: 16px; font-weight: 500; color: var(--nhs-navy); gap: 12px; user-select: none; }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--nhs-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s, background 0.2s; }
.faq-icon svg { width: 12px; height: 12px; stroke: var(--nhs-blue); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--nhs-blue); }
.faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.faq-a-inner { padding-bottom: 18px; }
.faq-item.open .faq-a { max-height: 200px; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
footer { background: #00112e; padding: 50px 5% 30px; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; max-width: var(--max-width); margin: 0 auto 40px; }
.footer-brand h3 { font-family: var(--font-display); font-size: 20px; color: white; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600; transition: background 0.2s, color 0.2s; }
.social-btn:hover { background: var(--nhs-blue); color: white; }
.footer-col h4 { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; max-width: var(--max-width); margin: 0 auto; font-size: 13px; }

/* ════════════════════════════════════════════
   WHATSAPP FLOAT
   ════════════════════════════════════════════ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-visual { display: none !important; }
  .hero { padding: 100px 5% 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .staff-banner { height: 220px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 680px)
   ════════════════════════════════════════════ */
@media (max-width: 680px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 88px 5% 50px; }
  .hero h1 { font-size: clamp(28px, 8vw, 38px); }
  .hero p { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-gold,
  .hero-actions .btn-outline { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-trust { gap: 12px; }
  .trust-item { font-size: 12px; }

  /* Staff banner — vertical stack */
  .staff-banner { flex-direction: column; height: auto; }
  .staff-banner-img { height: 160px; flex: none; }
  .staff-banner-img + .staff-banner-img { border-left: none; border-top: 2px solid rgba(255,255,255,0.2); }

  /* Proof bar */
  .proof-bar { gap: 16px; padding: 14px 5%; }
  .proof-item { font-size: 13px; }
  .proof-num { font-size: 18px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 22px 20px; }

  /* Steps */
  .step { gap: 16px; }
  .step-number { width: 42px; height: 42px; font-size: 16px; flex-shrink: 0; }

  /* Booking */
  .booking-form { padding: 22px 16px; }
  .form-row { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-q { font-size: 14px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* General */
  section { padding: 52px 5%; }
  .section-title { font-size: clamp(22px, 6vw, 30px); }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 380px)
   ════════════════════════════════════════════ */
@media (max-width: 380px) {
  nav { padding: 0 4%; }
  .nav-brand { font-size: 15px; }
  .hero { padding: 80px 4% 40px; }
  .booking-form { padding: 18px 12px; }
}

@media (min-width: 900px) { .hero-visual { display: block; } }
a.service-card,
a.service-card h3,
a.service-card p {
  text-decoration: none;
  color: inherit;
}