@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f1e2e;
  --navy-mid: #1a3149;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --cream: #f8f4ed;
  --cream-dark: #ede8df;
  --text-dark: #0f1e2e;
  --text-mid: #3a4a5a;
  --text-light: #7a8a9a;
  --white: #ffffff;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='white' stroke-width='3.5'/%3E%3Cline x1='18.5' y1='18.5' x2='28' y2='28' stroke='white' stroke-width='3.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='%230f1e2e' stroke-width='2'/%3E%3Cline x1='18.5' y1='18.5' x2='28' y2='28' stroke='%230f1e2e' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 12 12, auto;
}

a, button, label, input[type="submit"],
.btn-primary, .btn-outline, .btn-outline-light,
.btn-ghost, .nav-cta, .faq-question,
.service-card, .testimonial-card, .team-card,
.big-schedule-btn, .form-submit {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='white' stroke-width='3.5'/%3E%3Cline x1='18.5' y1='18.5' x2='28' y2='28' stroke='white' stroke-width='3.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='%23c9a84c' stroke-width='2'/%3E%3Cline x1='18.5' y1='18.5' x2='28' y2='28' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 12 12, pointer;
}

/* NAV */
nav {
  background: var(--navy);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
}

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

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 500 !important;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* BUTTONS */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1.5px solid var(--navy);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }

/* SECTION LABELS */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--text-mid);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 3rem;
}

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(201,168,76,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .section-label { color: var(--gold-light); }

.page-hero .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

/* AREA STRIP */
.area-strip {
  background: var(--navy-mid);
  padding: 1rem 2rem;
  text-align: center;
}

.area-strip p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

.area-strip strong { color: var(--gold-light); font-weight: 500; }

/* CTA SECTION */
.cta-section {
  background: var(--navy-mid);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-section .section-title { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 16px; }

/* FOOTER */
footer {
  background: var(--navy);
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }

.footer-links { display: flex; gap: 1.5rem; list-style: none; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold-light); }

/* COUNTY ACCORDION (FAQ) */
.county-accordion { display: flex; flex-direction: column; gap: 0; margin-top: 0.5rem; border: 1px solid var(--cream-dark); border-radius: 8px; overflow: hidden; }

.county-item { border-bottom: 1px solid var(--cream-dark); }
.county-item:last-child { border-bottom: none; }

.county-btn {
  width: 100%; text-align: left; background: var(--cream);
  border: none; padding: 0.85rem 1.1rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 500; color: var(--navy);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='white' stroke-width='3.5'/%3E%3Cline x1='18.5' y1='18.5' x2='28' y2='28' stroke='white' stroke-width='3.5' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='%23c9a84c' stroke-width='2'/%3E%3Cline x1='18.5' y1='18.5' x2='28' y2='28' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 12 12, pointer;
  transition: background 0.2s;
}
.county-btn:hover { background: var(--white); }
.county-item.open .county-btn { background: var(--white); color: var(--gold); }

.county-icon { font-size: 18px; font-weight: 300; color: var(--gold); transition: transform 0.25s; line-height: 1; }
.county-item.open .county-icon { transform: rotate(45deg); }

.county-cities {
  display: none; flex-wrap: wrap; gap: 0.5rem;
  padding: 1rem 1.1rem 1.1rem; background: var(--white);
}
.county-item.open .county-cities { display: flex; }

.county-cities a {
  font-size: 13px; color: var(--navy); text-decoration: none;
  background: var(--cream); border: 1px solid var(--cream-dark);
  border-radius: 100px; padding: 4px 12px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.county-cities a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* GOOGLE REVIEWS */
.google-all-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 6px 12px;
  background: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.google-all-reviews-link:hover { border-color: var(--gold); background: var(--cream); }

.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.google-source {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

.google-reviews-banner {
  background: var(--navy);
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.google-reviews-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.google-reviews-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.google-reviews-rating {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.google-reviews-score {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.google-reviews-stars {
  color: #FBBC05;
  font-size: 1rem;
  letter-spacing: 2px;
}

.google-reviews-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.google-reviews-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.google-reviews-quote {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  flex: 1;
  min-width: 200px;
  line-height: 1.65;
}

.google-reviews-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--gold);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.google-reviews-cta:hover { background: var(--gold-light); }

@media (max-width: 768px) {
  .google-reviews-banner-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .google-reviews-divider { display: none; }
  .google-all-reviews-link { font-size: 12px; }
}

/* NAV LOGO IMAGE */
.nav-logo {
  background: var(--white);
  border-radius: 6px;
  padding: 4px 10px;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* HAMBURGER BUTTON */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE SLIDE-DOWN MENU */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 98;
  flex-direction: column;
  padding: 0.5rem 0 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  padding: 0.9rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}

.nav-mobile-menu a:hover { color: var(--gold-light); background: rgba(255,255,255,0.04); }

.nav-mobile-menu a.active { color: var(--gold-light); }

.nav-mobile-menu .mobile-menu-cta {
  margin: 1rem 2rem 0;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 500 !important;
  text-align: center;
  padding: 12px 2rem !important;
  border-radius: 4px;
  border-bottom: none !important;
}

.nav-mobile-menu .mobile-menu-cta:hover { background: var(--gold-light) !important; }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-cta { display: none !important; }
  .nav-hamburger { display: flex; }
}
