/* ============================================================
   Dr. Benard Gichina Mukuria — Dermatologist
   Stylesheet  |  Clean Professional Medical
   ============================================================ */

/* ---------- RESET & BOX MODEL ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Primary palette */
  --navy:       #0d2b45;
  --navy-mid:   #163d5f;
  --teal:       #1a7b6b;
  --teal-light: #e8f4f1;
  --teal-mid:   #c2dfd9;
  --gold:       #b8934a;
  --gold-light: #f5edd8;

  /* Neutrals */
  --off-white:  #f8f7f4;
  --white:      #ffffff;
  --border:     #dde4e8;
  --text:       #1c2b38;
  --text-mid:   #3e5462;
  --text-light: #6b8191;

  /* Type */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 10px rgba(0,0,0,.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,.09);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.11);

  /* Spacing scale */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 32px;
  --sp-lg: 64px;
  --sp-xl: 96px;
}

/* ---------- BASE ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { transition: color .2s; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--navy);
  font-weight: 600;
}

/* ---------- GOOGLE FONTS IMPORT ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---------- UTILITY ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--sp-xl) 0;
}

.section--alt {
  background: var(--white);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.75;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-mid); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: #15695b; }

.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover { background: #1fb757; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- WHATSAPP STICKY BUTTON ---------- */
.wa-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  padding: 13px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}
.wa-sticky:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}
.wa-sticky svg { fill: white; width: 19px; height: 19px; flex-shrink: 0; }

@media (max-width: 560px) {
  .wa-sticky .wa-label { display: none; }
  .wa-sticky { padding: 15px; border-radius: 50%; }
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 60px 32px 40px;
}
.mobile-menu.open { display: flex; }

/* Decorative teal line at top */
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
}

.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  text-decoration: none;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  letter-spacing: .02em;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .18s, padding-left .18s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--teal-mid); padding-left: 12px; }
.mobile-menu a.active { color: var(--teal-mid); font-style: italic; }

/* Book Now button inside mobile menu */
.mobile-menu .mob-book {
  margin-top: 20px;
  background: var(--teal);
  color: #fff !important;
  border-radius: 6px;
  padding: 13px 32px !important;
  font-style: normal !important;
  border-bottom: none !important;
  width: auto !important;
  font-size: 1rem !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  letter-spacing: .04em;
}
.mobile-menu .mob-book:hover {
  background: var(--teal-d, #14604f);
  color: #fff !important;
  padding-left: 32px !important;
}

.mobile-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: rgba(255,255,255,.7);
  transition: background .18s;
}
.mobile-close:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ---------- NAVIGATION ---------- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 74px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .3s;
}

/* nav-brand — logo + text; overridden at bottom of file */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand .brand-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.nav-brand .brand-sub {
  font-size: .62rem;
  color: var(--text-light);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* keep old .nav-logo selector working */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}
.nav-logo span { color: var(--teal); }
.nav-logo small {
  display: block;
  font-family: var(--font-body);
  font-size: .73rem;
  color: var(--text-light);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--navy); border-bottom-color: var(--teal); }

nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.10); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  width: 23px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- DR-NAME / DR-TITLE compat ---------- */
.dr-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.dr-title {
  font-size: .73rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .04em;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.10); }

.nav-hamburger { display: flex; }
  nav { padding: 0 20px; }
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--navy);
  padding: 64px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a4a6b 100%);
  opacity: .9;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 10px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--teal-mid);
}
.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
}

/* ---------- PAGE HEADER (services page compat) ---------- */
.page-header {
  background: var(--navy);
  padding: 64px 0 60px;
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 8px;
}
.page-header .subhead {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- HERO (index) ---------- */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: center;
}
.hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, rgba(26,123,107,.18) 0%, rgba(13,43,69,.0) 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 700px;
  padding: 80px 40px 80px 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 760px) {
  .hero-inner { padding: 64px 24px; max-width: 100%; }
}

.hero-badge {
  display: inline-block;
  background: rgba(26,123,107,.2);
  color: var(--teal-mid);
  border: 1px solid rgba(26,123,107,.35);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--white);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--teal-mid);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 12px;
  max-width: 560px;
  line-height: 1.6;
}

.hero-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}
.hero-actions .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.3); }
.hero-actions .btn-ghost:hover { border-color: rgba(255,255,255,.8); }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
}
.hero-stats > div { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--teal);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-inner span {
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 18px;
}
.marquee-inner .dot { color: rgba(255,255,255,.4); padding: 0 2px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- QUICK INTRO (index) ---------- */
.quick-intro {
  text-align: center;
  padding: var(--sp-xl) 0;
  background: var(--white);
}
.quick-intro h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}
.quick-intro p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.cta-center { text-align: center; }

/* ---------- ABOUT GRID ---------- */
.about-main { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-img img {
  width: 100%;
  border-radius: 6px;
  height: auto;
  object-fit: contain;
  display: block;
}
.about-text h2.section-title { margin-bottom: 20px; }
.about-text > p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}
.about-text h3 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 28px 0 14px;
}

.qual-list {
  list-style: none;
  margin-bottom: 4px;
}
.qual-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.qual-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

blockquote.philosophy {
  border-left: 3px solid var(--teal);
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--teal-light);
  border-radius: 0 6px 6px 0;
}
blockquote.philosophy p {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
}

.cta-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ---------- FACTS ---------- */
.facts-section {
  background: var(--navy);
  padding: 64px 0;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 680px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
}
.fact-card {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.fact-card:last-child { border-right: none; }
.fact-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
.fact-label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- SERVICES ---------- */
.services-section {
  padding: var(--sp-xl) 0;
}

.category-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin: 56px 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.category-title:first-of-type { margin-top: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
/* SVG icons inside service cards */
.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card p {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ---------- GALLERY ---------- */
.gallery-section { margin-bottom: 56px; }

.gallery-section h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--navy);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.gallery-img.wide  { aspect-ratio: 16/9; }
.gallery-img.square { aspect-ratio: 1/1; }

.gallery-caption {
  padding: 14px 16px 18px;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.gallery-caption strong { color: var(--navy); font-weight: 600; }

.ba-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gallery-divider {
  margin: 56px 0 36px;
  border: 0;
  height: 1px;
  background: var(--border);
}

/* ---------- REVIEWS ---------- */
.reviews-summary {
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-radius: 8px;
  padding: 36px 40px;
  margin-bottom: 52px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}

.summary-rating-block { text-align: center; }

.summary-number {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1;
}
.summary-stars-row {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin: 8px 0 6px;
}
.summary-based {
  font-size: .8rem;
  color: var(--text-light);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
}
.verified-badge svg {
  stroke: var(--teal);
  fill: none;
  width: 16px; height: 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s;
}
.review-card:hover { box-shadow: var(--shadow-md); }

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.review-text {
  font-size: .93rem;
  line-height: 1.72;
  color: var(--text-mid);
  margin-bottom: 20px;
  flex: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.reviewer-name {
  font-weight: 600;
  color: var(--text);
  font-size: .9rem;
}
.reviewer-detail {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 2px;
}
.review-source {
  font-size: .7rem;
  font-weight: 700;
  color: #4285f4;
  background: rgba(66,133,244,.08);
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.star-note {
  background: var(--off-white);
  border: 1px dashed var(--border);
  border-radius: 6px;
  padding: 18px 24px;
  margin-top: 36px;
  text-align: center;
  font-size: .88rem;
  color: var(--text-light);
  font-style: italic;
}

.write-review-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 48px 40px;
  text-align: center;
  margin: 52px 0 24px;
}
.write-review-box h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.write-review-box p {
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: .95rem;
}

.google-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--text);
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.google-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.google-link svg { width: 20px; height: 20px; }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 56px 0;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}

.contact-card h2 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.contact-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.c-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-icon svg {
  width: 18px; height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.c-label {
  font-size: .73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.c-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.c-value a { color: var(--text); text-decoration: none; }
.c-value a:hover { color: var(--teal); }
.c-sub { font-size: .88rem; color: var(--text-light); }
.c-sub a { color: var(--teal); text-decoration: none; }
.c-sub a:hover { text-decoration: underline; }

.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
}
.map-wrap iframe { width: 100%; height: 300px; display: block; border: 0; }
.map-link {
  display: block;
  text-align: center;
  font-size: .82rem;
  color: var(--teal);
  text-decoration: none;
  margin-top: 8px;
}
.map-link:hover { text-decoration: underline; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: .9rem;
}
.hours-table tr td {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--text); }

.urgent-note {
  background: var(--gold-light);
  border: 1px solid #e0c68a;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: .88rem;
  color: #7a5c1a;
  margin-top: 24px;
  line-height: 1.5;
}

/* Booking form */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 96px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.submit-btn {
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background .2s;
}
.submit-btn:hover { background: #1fb757; }
.submit-btn svg { fill: white; width: 18px; height: 18px; }

.wa-confirm {
  font-size: .82rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

.call-options {
  margin-top: 24px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 24px;
}
.call-options h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.call-options-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 56px 0 24px;
  margin-top: 0;
}

.ft, .footer-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 760px) {
  .ft, .footer-content { grid-template-columns: 1fr; gap: 28px; }
}

.fb, .footer-brand { }

.footer-brand .footer-logo,
.fb .nav-logo,
.fb .nav-logo span {
  color: var(--white) !important;
}

footer p {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  margin-top: 10px;
  line-height: 1.6;
}

.fc, .footer-col { }

.fc h4, .footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.fc ul, .footer-col ul { list-style: none; }
.fc li, .footer-col li { margin-bottom: 10px; }
.fc a, .footer-col a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}
.fc a:hover, .footer-col a:hover { color: var(--white); }

.fbot, .footer-bottom {
  max-width: 1160px;
  margin: 32px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom p { margin: 0; font-size: .78rem; color: rgba(255,255,255,.3); }

/* ---------- SECTION sec compat ---------- */
.sec {
  padding: var(--sp-xl) 0;
  background: var(--white);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .hero-stats    { gap: 20px; }
  .facts-grid    { grid-template-columns: repeat(2, 1fr); }
}
/* ---- override: clean nav-brand with logo ---- */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.brand-sub {
  font-size: .62rem;
  color: var(--text-light);
  letter-spacing: .05em;
  text-transform: uppercase;
}