
/* ============================================================
   WISTERIA HOME CARE, Shared Stylesheet
   Palette: Plum · Sage · Warm Cream · Gold
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --plum:        #5C3D7A;
  --plum-deep:   #3E2254;
  --plum-mid:    #7A559A;
  --plum-soft:   #B89FCC;
  --plum-ghost:  #F4F0F9;
  --sage:        #4A7C6B;
  --sage-light:  #E6F2EE;
  --gold:        #C8944A;
  --gold-pale:   #FDF3E5;
  --cream:       #FDFAF6;
  --charcoal:    #1C1C2E;
  --mid:         #4A4A5A;
  --muted:       #7A7A8C;
  --line:        rgba(92,61,122,0.12);
  --shadow-sm:   0 2px 8px rgba(60,30,80,0.08);
  --shadow:      0 6px 24px rgba(60,30,80,0.10);
  --shadow-lg:   0 16px 48px rgba(60,30,80,0.14);
  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   24px;
  --nav-h:       72px;
  --font-display:"Playfair Display", Georgia, serif;
  --font-body:   "Nunito", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--plum); text-decoration: none; }
a:hover { color: var(--plum-deep); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── Google Fonts ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ── Container ───────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 5%; }

/* ── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.25; color: var(--charcoal); }
h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 700; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--plum); }
p { color: var(--mid); }
.lead { font-size: 18px; line-height: 1.8; color: var(--mid); }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: white;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; max-width: 1160px;
  margin: 0 auto; padding: 0 5%;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--plum-deep); }
.nav-logo-text .tagline { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--mid);
  transition: all 0.2s; white-space: nowrap; cursor: pointer;
  background: none; border: none;
}
.nav-link:hover, .nav-link.active { color: var(--plum); background: var(--plum-ghost); }
.nav-link .chevron { font-size: 10px; transition: transform 0.2s; }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s; z-index: 300;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-section { padding: 6px 0; }
.dropdown-label {
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
  padding: 4px 12px 6px; display: block;
}
.dropdown a {
  display: block; padding: 7px 12px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; color: var(--mid);
  transition: all 0.15s;
}
.dropdown a:hover { background: var(--plum-ghost); color: var(--plum); }
.dropdown hr { border: none; border-top: 1px solid var(--line); margin: 4px 0; }

.nav-cta {
  background: var(--plum); color: white !important;
  padding: 9px 18px; border-radius: 30px;
  font-size: 13.5px; font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { background: var(--plum-deep); transform: translateY(-1px); }

/* Mobile nav */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--plum); border-radius: 2px; transition: all 0.3s; }
.mobile-nav {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: white; z-index: 190; overflow-y: auto; padding: 24px 5%;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--mid); font-size: 15px; }
.mobile-nav a:hover { color: var(--plum); }
.mobile-section-label { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin: 16px 0 4px; }
.mobile-nav-cta { margin-top: 20px; display: block; text-align: center; background: var(--plum); color: white !important; padding: 14px; border-radius: 12px; font-weight: 700; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 40px;
  font-size: 14.5px; font-weight: 700;
  transition: all 0.2s; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--plum); color: white; }
.btn-primary:hover { background: var(--plum-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,61,122,0.3); color: white; }
.btn-secondary { background: white; color: var(--plum); border: 2px solid var(--plum); }
.btn-secondary:hover { background: var(--plum-ghost); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: #B07A3A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,148,74,0.3); }
.btn-white { background: white; color: var(--plum); }
.btn-white:hover { background: var(--plum-ghost); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: 80px 5%; }
.section-sm { padding: 48px 5%; }
.section-alt { background: var(--plum-ghost); }
.section-dark { background: var(--plum-deep); }
.section-cream { background: var(--cream); }
.section-sage { background: var(--sage-light); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--plum);
  margin-bottom: 12px;
}
.section-label::before { content: ""; display: block; width: 20px; height: 2px; background: var(--gold); }
.section-title { margin-bottom: 14px; }
.section-desc { font-size: 17px; color: var(--mid); max-width: 580px; line-height: 1.8; margin-bottom: 40px; }
.section-center { text-align: center; }
.section-center .section-desc { margin-left: auto; margin-right: auto; }
.section-center .section-label { justify-content: center; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 28px; transition: all 0.3s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-icon { font-size: 32px; margin-bottom: 14px; }
.card h3, .card h4 { margin-bottom: 8px; }
.card p { font-size: 14px; }

/* ── Grids ───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ── Pills ───────────────────────────────────────────────── */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 30px; font-size: 12px; font-weight: 700; }
.pill-plum { background: var(--plum-ghost); color: var(--plum); }
.pill-sage { background: var(--sage-light); color: var(--sage); }
.pill-gold { background: var(--gold-pale); color: var(--gold); }

/* ── Page hero ───────────────────────────────────────────── */
.page-hero {
  background: var(--plum-ghost);
  border-bottom: 1px solid var(--line);
  padding: 64px 5% 56px;
}
.page-hero .section-label { margin-bottom: 10px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 620px; margin-bottom: 28px; }
.page-hero-pills { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--plum); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb .current { color: var(--plum); font-weight: 600; }

/* ── Service page layout ─────────────────────────────────── */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.service-content h2 { font-size: clamp(22px, 3vw, 32px); margin: 32px 0 12px; }
.service-content h3 { font-size: 20px; margin: 24px 0 8px; color: var(--plum); }
.service-content p { margin-bottom: 14px; font-size: 15.5px; line-height: 1.85; }
.service-content ul { margin: 12px 0 20px 0; display: flex; flex-direction: column; gap: 8px; }
.service-content ul li { display: flex; gap: 10px; font-size: 15px; color: var(--mid); }
.service-content ul li::before { content: "✦"; color: var(--gold); font-size: 12px; flex-shrink: 0; margin-top: 4px; }

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }
.sidebar-card { background: white; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: 24px; }
.sidebar-card h4 { font-size: 15px; margin-bottom: 12px; color: var(--plum-deep); }
.sidebar-cta { background: var(--plum-deep); border-radius: var(--radius); padding: 28px; color: white; }
.sidebar-cta h4 { color: white; font-size: 17px; margin-bottom: 10px; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 13.5px; margin-bottom: 18px; }
.sidebar-price { background: var(--gold-pale); border: 1px solid rgba(200,148,74,0.2); border-radius: var(--radius); padding: 20px; }
.sidebar-price .price { font-size: 32px; font-weight: 800; color: var(--plum); font-family: var(--font-display); }
.sidebar-price .price-label { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.sidebar-links { display: flex; flex-direction: column; gap: 6px; }
.sidebar-links a { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--mid); padding: 8px 10px; border-radius: var(--radius-sm); transition: all 0.15s; }
.sidebar-links a:hover { background: var(--plum-ghost); color: var(--plum); }

/* ── What's included checklist ───────────────────────────── */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
.include-item { display: flex; align-items: flex-start; gap: 10px; background: var(--plum-ghost); border-radius: var(--radius-sm); padding: 12px 14px; }
.include-item .tick { color: var(--sage); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.include-item span { font-size: 13.5px; font-weight: 600; color: var(--charcoal); }

/* ── Info box ────────────────────────────────────────────── */
.info-box { border-left: 4px solid var(--plum); background: var(--plum-ghost); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 20px; margin: 20px 0; }
.info-box.gold { border-left-color: var(--gold); background: var(--gold-pale); }
.info-box.sage { border-left-color: var(--sage); background: var(--sage-light); }
.info-box p { font-size: 14px; margin: 0; }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band {
  background: var(--plum-deep);
  padding: 64px 5%;
  text-align: center;
}
.cta-band h2 { color: white; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 520px; margin: 0 auto 32px; }
.cta-band-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Related services ────────────────────────────────────── */
.related-service-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; background: white;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: all 0.2s; text-decoration: none;
}
.related-service-card:hover { border-color: var(--plum-soft); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.related-service-card .icon { font-size: 24px; flex-shrink: 0; }
.related-service-card .text .label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.related-service-card .text .name { font-size: 14px; font-weight: 700; color: var(--charcoal); }

/* ── Stats strip ─────────────────────────────────────────── */
.stats-strip { display: flex; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-item { flex: 1; text-align: center; padding: 28px 16px; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: none; }
.stat-item .num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--plum); line-height: 1; }
.stat-item .lbl { font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 4px; }

/* ── Forms ───────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--charcoal); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid rgba(92,61,122,0.15);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--plum);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--charcoal); padding: 64px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; margin-bottom: 10px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 20px; }
.footer-col h5 { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.75); margin-bottom: 8px; transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: white; } .footer-col a[data-nav] { color: rgba(255,255,255,0.75); } .footer-col a[data-nav]:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.6); margin-left: 16px; }
.footer-bottom a:hover { color: white; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact-item .icon { font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ── Accreditation / Trust bar ───────────────────────────── */
.trust-bar { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.trust-item .icon { font-size: 18px; }

/* ── Process steps ───────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--plum); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.step-body h4 { margin-bottom: 4px; font-size: 16px; }
.step-body p { font-size: 14px; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; gap: 16px; }
.faq-q h4 { font-size: 15.5px; font-weight: 700; color: var(--charcoal); }
.faq-icon { font-size: 20px; color: var(--plum); flex-shrink: 0; transition: transform 0.3s; }
.faq-a { font-size: 14.5px; color: var(--mid); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 16px; }

/* ── Utility ─────────────────────────────────────────────── */
.text-plum { color: var(--plum); }
.text-sage { color: var(--sage); }
.text-gold { color: var(--gold); }
.text-white { color: white; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.hidden { display: none; }
.flex { display: flex; } .flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 56px 5%; }
  .stats-strip { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--line); }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* ── SPA overrides ── */
.page { display: none; }
[data-nav] { cursor: pointer; }
a[data-nav] { text-decoration: none; color: inherit; }

/* ── Services mega panel ── */
.svc-nav-item { position: relative; }
.svc-mega-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 780px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(60,30,80,0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 500;
}
.svc-nav-item:hover .svc-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.svc-mega-header {
  padding: 10px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--plum-ghost);
  border-radius: var(--radius) var(--radius) 0 0;
}
.svc-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 16px 8px 20px;
}
.svc-mega-col {
  padding: 0 12px;
  border-right: 1px solid var(--line);
}
.svc-mega-col:last-child { border-right: none; }
.svc-mega-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--plum);
  padding: 4px 8px 10px;
  display: block;
}
.svc-mega-col a {
  display: block;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
}
.svc-mega-col a:hover { background: var(--plum-ghost); color: var(--plum); }
@media (max-width: 1024px) {
  .svc-mega-panel { width: 560px; }
  .svc-mega-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-mega-col:nth-child(2) { border-right: none; }
  .svc-mega-col:nth-child(3) { border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .svc-mega-col:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 768px) { .svc-mega-panel { display: none; } }


::placeholder { color: rgba(255,255,255,0.65) !important; } select option { color: var(--charcoal); background: white; }

.footer a[data-nav] {
  color: rgba(255,255,255,0.75) !important;
  cursor: pointer;
  display: block;
  font-size: 13.5px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer a[data-nav]:hover {
  color: white !important;
}
.footer-brand a[data-nav] {
  display: inline;
}

