/* SurveyCORE – shared stylesheet */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:   #0f1f2e;
  --teal:   #0d7c6e;
  --teal-l: #11a08f;
  --gold:   #c9a84c;
  --cream:  #f8f5f0;
  --grey:   #6b7280;
  --white:  #ffffff;
  --radius: 4px;
  --max:    1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p  { color: #374151; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout helpers ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section--dark  { background: var(--navy); color: var(--white); }
.section--dark p { color: #cbd5e1; }
.section--cream { background: var(--cream); }
.section--teal  { background: var(--teal); color: var(--white); }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  padding: 0 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; gap: 32px; list-style: none; }
.nav__links a {
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); text-decoration: none; }
.nav__cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav__cta:hover { background: #b8922e !important; }

/* Mobile nav toggle */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy); padding: 16px 24px 24px;
  }
  .nav__links.open { display: flex; }
  .nav__links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav__links a { display: block; padding: 12px 0; }
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a52 100%);
  color: var(--white);
  padding: 96px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner { max-width: var(--max); margin: 0 auto; position: relative; }
.hero__badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); max-width: 720px; margin-bottom: 20px; }
.hero p   { color: #94a3b8; font-size: 1.1rem; max-width: 600px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn--gold    { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #b8922e; text-decoration: none; color: var(--navy); }
.btn--outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn--outline:hover { border-color: var(--white); text-decoration: none; color: var(--white); }
.btn--teal    { background: var(--teal); color: var(--white); }
.btn--teal:hover { background: var(--teal-l); text-decoration: none; color: var(--white); }

/* ── Trust bar ── */
.trust { background: var(--cream); border-bottom: 1px solid #e5e7eb; padding: 20px 24px; }
.trust__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center;
}
.trust__item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 500; color: var(--navy); }
.trust__item svg { color: var(--teal); flex-shrink: 0; }

/* ── Services grid ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 36px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(13,124,110,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p  { font-size: 0.95rem; margin-bottom: 16px; }
.service-card a  { font-weight: 600; font-size: 0.9rem; }

/* ── Locations grid ── */
.locations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.loc-pill {
  display: block;
  background: var(--white);
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  transition: all 0.2s;
}
.loc-pill:hover { background: var(--teal); color: var(--white); border-color: var(--teal); text-decoration: none; }

/* ── Process steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 48px; }
.step { text-align: center; }
.step__number {
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.step h3 { margin-bottom: 8px; }

/* ── Testimonials ── */
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.testimonial {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 28px;
  border-radius: 0 8px 8px 0;
}
.testimonial__text { font-style: italic; margin-bottom: 16px; }
.testimonial__author { font-weight: 600; font-size: 0.9rem; }
.testimonial__location { font-size: 0.85rem; color: var(--grey); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }

/* ── FAQ ── */
.faq { margin-top: 40px; }
.faq__item { border-bottom: 1px solid #e5e7eb; }
.faq__q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--navy);
  text-align: left;
}
.faq__q span { font-size: 1.4rem; color: var(--teal); transition: transform 0.3s; }
.faq__a { display: none; padding: 0 0 20px; color: #374151; line-height: 1.8; }
.faq__item.open .faq__a { display: block; }
.faq__item.open .faq__q span { transform: rotate(45deg); }

/* ── CTA band ── */
.cta-band { text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: #94a3b8; margin-bottom: 32px; font-size: 1.05rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
@media (max-width: 680px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p { margin-bottom: 16px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-detail svg { color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 16px;
  border: 1px solid #d1d5db; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  margin-bottom: 14px; background: var(--white); color: var(--navy);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,124,110,0.15);
}
.contact-form textarea { height: 130px; resize: vertical; }
.contact-form .btn { width: 100%; border: none; }

/* ── Footer ── */
.footer { background: #07111c; color: #94a3b8; padding: 60px 24px 32px; }
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 680px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.footer__logo { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.footer__logo span { color: var(--gold); }
.footer__desc { font-size: 0.92rem; line-height: 1.8; }
.footer h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: #94a3b8; font-size: 0.92rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--white); text-decoration: none; }
.footer__bottom { border-top: 1px solid #1e3347; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }
.footer__schema { display: none; }

/* ── Breadcrumb ── */
.breadcrumb { background: var(--cream); padding: 12px 24px; border-bottom: 1px solid #e5e7eb; }
.breadcrumb__inner { max-width: var(--max); margin: 0 auto; font-size: 0.85rem; color: var(--grey); }
.breadcrumb__inner a { color: var(--teal); }

/* ── Location page hero ── */
.loc-hero { padding: 72px 24px 60px; background: linear-gradient(135deg, var(--navy) 0%, #1a3a52 100%); color: var(--white); }
.loc-hero__inner { max-width: var(--max); margin: 0 auto; }
.loc-hero h1 { color: var(--white); margin-bottom: 16px; }
.loc-hero p  { color: #94a3b8; font-size: 1.05rem; max-width: 640px; margin-bottom: 28px; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mt-8  { margin-top: 8px; }

/* ── Schema breadcrumb visible ── */
.section__header { max-width: 640px; margin-bottom: 8px; }
.section__subtitle { color: var(--grey); font-size: 1rem; margin-top: 12px; max-width: 600px; }

@media (max-width: 600px) {
  .hero { padding: 64px 24px 56px; }
  .section { padding: 52px 0; }
  .hero__actions { flex-direction: column; }
  .btn { text-align: center; }
}
