/* ============================================================
   BRANCASTER HOMECARE — Complete Stylesheet
   Matching base44 design exactly
   ============================================================ */

/* --- FONTS & VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --indigo:     #2d1b4e;
  --indigo-dark:#1e1038;
  --magenta:    #c8376a;
  --magenta-dark:#a82d59;
  --blush:      #fdf0f6;
  --blush-mid:  #f5d5e8;
  --hero-bg:    #f8f7f5;
  --how-bg:     #f5f4f2;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a4a6a;
  --text-light: #7a7a9a;
  --border:     #e8e0f0;
  --card-shadow: 0 4px 24px rgba(45,27,78,0.08);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  padding-top: 76px;
  padding-bottom: 80px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
.serif { font-family: 'Playfair Display', Georgia, serif; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 76px;
  background: #fff;
  border-bottom: 1px solid #ede8f5;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 46px;
  width: auto;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.navbar-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.navbar-nav a:hover { color: var(--magenta); background: var(--blush); }
.navbar-nav a.active { color: var(--magenta); }
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
}
.navbar-phone svg { color: var(--magenta); flex-shrink: 0; }
.btn-get-started {
  background: var(--magenta);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-get-started:hover { background: var(--magenta-dark); transform: translateY(-1px); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--indigo);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  flex-direction: column;
  padding: 24px 28px 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-nav-header img { height: 42px; width: auto; }
.mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-mid);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-nav-links a {
  font-size: 22px;
  font-weight: 600;
  color: var(--indigo);
  padding: 10px 0;
  border-bottom: 1px solid #f0ebfa;
}
.mobile-nav-links a.active { color: var(--magenta); }
.mobile-nav-links a:hover { color: var(--magenta); }
.mobile-nav-footer {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
}
.mobile-nav-phone svg { color: var(--magenta); }
.mobile-cta-btn {
  display: block;
  text-align: center;
  background: var(--magenta);
  color: #fff;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
}

/* ============================================================
   FLOATING ACTION BAR (FAB)
   ============================================================ */
.fab {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  background: var(--indigo);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(45,27,78,0.35);
}
.fab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  background: none;
  border: none;
  transition: background .2s;
  white-space: nowrap;
  text-decoration: none;
}
.fab-btn:hover { background: rgba(255,255,255,.08); }
.fab-btn + .fab-btn { border-left: 1px solid rgba(255,255,255,.12); }
.fab-btn svg { flex-shrink: 0; }
.fab-btn.fab-primary { background: var(--magenta); }
.fab-btn.fab-primary:hover { background: var(--magenta-dark); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--hero-bg);
  padding: 72px 0 0;
}
.hero-text {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 52px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  color: var(--indigo);
  max-width: 720px;
  margin-bottom: 22px;
  line-height: 1.1;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.65;
}

/* Service cards grid */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hero-cards-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.service-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover img { transform: scale(1.04); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,27,78,.72) 0%, rgba(45,27,78,.1) 55%, transparent 100%);
}
.service-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.service-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.service-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.service-card:hover .service-card-arrow {
  background: var(--magenta);
  border-color: var(--magenta);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section { padding: 88px 0; }
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
  text-align: center;
}
.section-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--indigo);
  text-align: center;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.65;
}

/* ============================================================
   WHY FAMILIES CHOOSE US
   ============================================================ */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-3px);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  flex-shrink: 0;
}
.why-card h3 {
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--indigo);
  line-height: 1.3;
}
.why-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================================
   FULL-WIDTH TEAM BANNER
   ============================================================ */
.team-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #c5d8e8;
}
.team-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.team-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(45,27,78,.55) 0%, rgba(45,27,78,.1) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.team-banner-text {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  width: 100%;
}
.team-banner-text h2 {
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  max-width: 480px;
  line-height: 1.2;
}
.team-banner-text p {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  max-width: 400px;
  margin-top: 12px;
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--how-bg); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--blush-mid));
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 16px rgba(45,27,78,.08);
}
.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--magenta);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 8px;
}
.step p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--indigo); padding: 88px 0; }
.reviews .eyebrow { color: var(--blush-mid); }
.reviews .section-heading { color: #fff; }
.reviews .section-sub { color: rgba(255,255,255,.65); }

.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
}

/* homecare.co.uk style score badge */
.hc-badge {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 20px 36px 20px 20px;
  text-decoration: none;
  transition: background .2s;
}
.hc-badge:hover { background: rgba(255,255,255,.12); }
.hc-badge-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #3aab6d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(58,171,109,.4);
}
.hc-badge-num {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.5px;
}
.hc-badge-denom {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-top: 2px;
}
.hc-badge-detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hc-badge-stars {
  color: #f5c842;
  font-size: 22px;
  letter-spacing: 3px;
}
.hc-badge-reviews {
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.hc-badge-reviews strong { color: #fff; font-weight: 700; }
.hc-badge-site {
  font-size: 15px;
  font-weight: 800;
  color: #3aab6d;
  margin-top: 2px;
  letter-spacing: -.2px;
}
.hc-badge-site span { color: rgba(255,255,255,.55); font-weight: 400; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-quote-icon { color: var(--magenta); font-size: 28px; line-height: 1; font-family: Georgia, serif; }
.review-stars { color: #f5c842; font-size: 14px; letter-spacing: 1px; }
.review-text {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.review-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
}
.review-author { font-size: 13px; }
.review-name { font-weight: 700; color: #fff; }
.review-role { color: rgba(255,255,255,.5); font-size: 12px; margin-top: 2px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-wrap {
  background: var(--white);
  padding: 60px 48px;
}
.cta-box {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--blush);
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-deco {
  position: absolute;
  border-radius: 50%;
  background: var(--blush-mid);
  opacity: .55;
}
.cta-deco-1 { width: 280px; height: 280px; top: -100px; left: -80px; }
.cta-deco-2 { width: 200px; height: 200px; bottom: -60px; right: -50px; }
.cta-deco-3 { width: 140px; height: 140px; bottom: 40px; left: 60px; opacity: .3; }
.cta-box .eyebrow { margin-bottom: 16px; }
.cta-box h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--indigo);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-box p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--magenta);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--magenta-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--indigo);
  border: 2px solid var(--indigo);
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--indigo); color: #fff; transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--indigo);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo-box {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.footer-logo-box img { height: 40px; width: auto; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
}
.footer-contact-item svg { color: var(--magenta); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--blush-mid); }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-links a:hover { color: var(--blush-mid); }

.accreditation-cards { display: flex; flex-direction: column; gap: 12px; }
.accred-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 16px 18px;
}
.accred-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 6px;
}
.accred-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.accred-detail { font-size: 12px; color: rgba(255,255,255,.55); }

.footer-bottom {
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  background: var(--hero-bg);
  padding: 64px 0 72px;
  text-align: center;
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}
.page-hero .eyebrow { text-align: center; margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  color: var(--indigo);
  line-height: 1.12;
}
.page-hero h1 em { font-style: italic; color: var(--magenta); }
.page-hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  margin-top: 16px;
  line-height: 1.65;
}

/* Alternating service sections */
.service-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-section:last-child { border-bottom: none; }
.service-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-section.alt .service-section-inner { direction: rtl; }
.service-section.alt .service-section-inner > * { direction: ltr; }
.service-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.service-img-wrap:hover img { transform: scale(1.04); }
.service-content { display: flex; flex-direction: column; gap: 16px; }
.service-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta);
  opacity: .7;
}
.service-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--indigo);
  line-height: 1.15;
}
.service-content p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.7;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.5;
}
.service-features li::before {
  content: '✓';
  color: var(--magenta);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--magenta);
  font-weight: 600;
  font-size: 14.5px;
  margin-top: 8px;
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  padding: 80px 0;
  background: var(--hero-bg);
}
.about-intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-intro-text { display: flex; flex-direction: column; gap: 16px; }
.about-intro-text h1 {
  font-size: clamp(30px, 3.5vw, 44px);
  color: var(--indigo);
}
.about-intro-text p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.7;
}
/* ── Locations section ───────────────────────────────── */
.locations-section {
  background: var(--white);
  padding: 80px 0;
}
.location-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.location-row:last-child { margin-bottom: 0; }
.location-row-reverse { direction: rtl; }
.location-row-reverse > * { direction: ltr; }

.location-number {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--magenta);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.location-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--indigo);
  line-height: 1.15;
  margin: 0 0 14px;
}
.location-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--magenta);
  margin: 0 0 18px;
}
.location-address svg { flex-shrink: 0; }
.location-text p {
  color: #4a4a5a;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 24px;
}
.location-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--indigo);
  text-decoration: none;
  border-bottom: 2px solid var(--magenta);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.location-cta:hover { color: var(--magenta); }

.location-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(45,27,78,.13);
}
.location-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.location-img:hover img { transform: scale(1.04); }
.location-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(45,27,78,.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.location-badge span {
  font-size: 12px;
  font-weight: 500;
  opacity: .75;
  border-left: 1px solid rgba(255,255,255,.3);
  padding-left: 8px;
}

@media (max-width: 900px) {
  .location-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }
  .location-row-reverse { direction: ltr; }
  .location-img { aspect-ratio: 16/9; }
}

/* ── Regulated By section ────────────────────────────── */
.regulated-section {
  background: var(--blush);
  padding: 80px 0;
}
.regulated-logos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.regulated-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 200px;
}
.regulated-logo-wrap {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 4px 20px rgba(45,27,78,.08);
  width: 180px;
  transition: box-shadow .3s, transform .3s;
}
.regulated-logo-wrap:hover {
  box-shadow: 0 8px 32px rgba(45,27,78,.15);
  transform: translateY(-3px);
}
.regulated-logo-wrap img {
  max-height: 70px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}
.regulated-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo);
  text-align: center;
  margin: 0;
  opacity: .8;
}
@media (max-width: 600px) {
  .regulated-logos { gap: 32px; }
  .regulated-logo-wrap { width: 140px; padding: 16px 20px; }
}

/* ── Partners section ────────────────────────────────── */
.partners-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid #f0edf5;
}
.partners-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  max-width: 160px;
}
.partner-logo img {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(55%);
  transition: filter .3s ease, transform .3s ease;
}
.partner-logo:hover img {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.06);
}
@media (max-width: 600px) {
  .partners-track { gap: 28px 32px; }
  .partner-logo { height: 44px; max-width: 120px; }
  .partner-logo img { max-height: 44px; max-width: 120px; }
}

/* ── About split sections ─────────────────────────────── */
.about-split { padding: 80px 0; background: var(--white); }
.about-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split-reverse .about-split-inner {
  direction: rtl;
}
.about-split-reverse .about-split-inner > * {
  direction: ltr;
}
.about-split-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45,27,78,.12);
  aspect-ratio: 4/3;
}
.about-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.about-split-img:hover img { transform: scale(1.03); }
.about-split-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-split-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--indigo);
  line-height: 1.25;
  margin: 0;
}
.about-split-text h2 em {
  font-style: italic;
  color: var(--magenta);
}
.about-split-text p {
  color: #4a4a5a;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

/* responsive */
@media (max-width: 900px) {
  .about-split-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-split-reverse .about-split-inner { direction: ltr; }
  .about-split-img { aspect-ratio: 16/9; }
}

.values-section { background: var(--white); padding: 80px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.value-card {
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.value-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--indigo);
}
.value-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  background: var(--hero-bg);
  padding: 72px 0;
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info h1 { font-size: clamp(28px, 3vw, 40px); color: var(--indigo); }
.contact-info p { font-size: 15.5px; color: var(--text-mid); line-height: 1.7; }
.contact-detail-list { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 3px;
}
.contact-detail-text span {
  font-size: 14px;
  color: var(--text-mid);
}
.contact-form-box {
  background: var(--white);
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--card-shadow);
}
.contact-form-box h2 {
  font-size: 24px;
  color: var(--indigo);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--magenta); }
.form-group textarea { min-height: 100px; resize: vertical; }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.careers-why { background: var(--hero-bg); padding: 80px 0; }
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.career-perk {
  padding: 28px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.career-perk h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--indigo);
}
.career-perk p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.roles-section { background: var(--white); padding: 80px 0; }
.role-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: box-shadow .2s;
}
.role-card:hover { box-shadow: var(--card-shadow); }
.role-title { font-size: 16px; font-weight: 700; color: var(--indigo); }
.role-meta { font-size: 13.5px; color: var(--text-light); margin-top: 3px; }
.role-tag {
  display: inline-block;
  background: var(--blush);
  color: var(--magenta);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.resource-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.resource-card:hover { box-shadow: var(--card-shadow); transform: translateY(-3px); }
.resource-img { aspect-ratio: 16/9; overflow: hidden; }
.resource-img img { width: 100%; height: 100%; object-fit: cover; }
.resource-body { padding: 24px; }
.resource-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transfo