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

:root {
  --navy: #0a1f3c;
  --navy-mid: #122a52;
  --navy-light: #1a3a6e;
  --silver: #a8b4c4;
  --silver-light: #e4e9f0;
  --white: #ffffff;
  --accent: #c8a84b;
  --accent-light: #e8c96b;
  --text: #1a2535;
  --text-muted: #5a6a7e;
  --bg-light: #f5f7fa;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(10,31,60,0.10);
  --shadow-lg: 0 12px 48px rgba(10,31,60,0.16);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
p { margin-bottom: 1rem; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }

/* ── LAYOUT ─────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.section-dark { background: var(--navy); color: var(--white); }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--accent);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900;
  color: var(--white); letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--silver-light); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase; transition: color var(--transition); }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--navy) !important;
  padding: 10px 22px; border-radius: 6px;
  font-weight: 600 !important; letter-spacing: 0.02em !important;
}
.nav-cta:hover { background: var(--accent-light); color: var(--navy) !important; }
.nav-phone { color: var(--silver-light); font-size: 0.95rem; font-weight: 600; }
.nav-phone:hover { color: var(--accent); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 90px 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: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; position: relative; }
.hero-badge { display: inline-block; background: rgba(200,168,75,0.15); border: 1px solid var(--accent); color: var(--accent); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: 40px; margin-bottom: 20px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: var(--silver-light); margin-bottom: 32px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: var(--accent); color: var(--navy);
  padding: 15px 32px; border-radius: 8px;
  font-weight: 700; font-size: 1rem; font-family: 'DM Sans', sans-serif;
  border: none; cursor: pointer;
  transition: all var(--transition); display: inline-block;
  box-shadow: 0 4px 20px rgba(200,168,75,0.35);
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,168,75,0.45); color: var(--navy); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 30px; border-radius: 8px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer; transition: all var(--transition); display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--silver-light); font-size: 0.9rem; }
.trust-item .icon { font-size: 1.2rem; }

/* ── HERO FORM ───────────────────────────────────── */
.hero-form {
  background: var(--white);
  border-radius: 14px; padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-form h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.3rem; }
.hero-form p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--silver-light);
  border-radius: 7px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text);
  background: var(--bg-light);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white);
  padding: 14px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer;
  transition: background var(--transition);
}
.form-submit:hover { background: var(--navy-light); }

/* ── TRUST BAR ───────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-bar-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-stat { text-align: center; color: var(--white); }
.trust-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--accent); display: block; }
.trust-stat .label { font-size: 0.82rem; color: var(--silver); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── SERVICES ────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-top: 48px; }
.service-card {
  background: var(--white);
  border: 1.5px solid var(--silver-light);
  border-radius: 14px; padding: 32px 28px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.service-link { color: var(--accent); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── WHY US ──────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.why-item { text-align: center; padding: 28px 20px; }
.why-icon { width: 64px; height: 64px; background: rgba(200,168,75,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 16px; }
.why-item h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.why-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ── PROCESS ─────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; margin-top: 48px; position: relative; }
.process-step { text-align: center; padding: 32px 24px; position: relative; }
.step-num { width: 52px; height: 52px; background: var(--accent); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.2rem; margin: 0 auto 16px; }
.process-step h3 { color: var(--white); margin-bottom: 8px; }
.process-step p { color: var(--silver); font-size: 0.9rem; margin: 0; }

/* ── SERVICE AREAS ───────────────────────────────── */
.areas-intro { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.county-section { margin-bottom: 48px; }
.county-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.city-link-card {
  display: block; padding: 12px 16px;
  background: var(--bg-light);
  border: 1.5px solid var(--silver-light);
  border-radius: 8px;
  color: var(--text); font-weight: 500; font-size: 0.9rem;
  transition: all var(--transition);
}
.city-link-card:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
.city-link-card:hover .city-arrow { color: var(--accent); }
.city-arrow { float: right; color: var(--silver); }

/* ── CTA BAND ────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 70px 24px; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: var(--silver-light); margin-bottom: 32px; font-size: 1.05rem; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: #060f1e; color: var(--silver); padding: 60px 24px 30px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; color: var(--silver); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--silver); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 6px; }
.footer-contact a { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(168,180,196,0.7); margin: 0; }

/* ── BREADCRUMB ──────────────────────────────────── */
.breadcrumb { background: var(--navy); padding: 12px 24px; }
.breadcrumb-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 0.82rem; }
.breadcrumb a { color: var(--silver); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--accent); }

/* ── CITY PAGE SPECIFIC ──────────────────────────── */
.city-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%); color: var(--white); padding: 70px 24px 60px; position: relative; overflow: hidden; }
.city-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'); }
.city-hero-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: center; position: relative; }
.city-hero-badge { display: inline-block; background: rgba(200,168,75,0.15); border: 1px solid var(--accent); color: var(--accent); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 40px; margin-bottom: 16px; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item { border-bottom: 1.5px solid var(--silver-light); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer; gap: 16px; transition: color var(--transition); }
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 1.3rem; color: var(--accent); flex-shrink: 0; transition: transform var(--transition); }
.faq-answer { display: none; padding: 0 0 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── NEARBY CITIES ───────────────────────────────── */
.nearby-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; margin-top: 24px; }
.nearby-link { display: block; padding: 10px 14px; background: var(--bg-light); border: 1.5px solid var(--silver-light); border-radius: 8px; color: var(--text); font-size: 0.88rem; font-weight: 500; transition: all var(--transition); text-align: center; }
.nearby-link:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── CONTENT SECTION ─────────────────────────────── */
.content-block { max-width: 820px; }
.content-block h2 { color: var(--navy); margin-bottom: 16px; }
.content-block p { color: var(--text-muted); }
.check-list { list-style: none; margin: 16px 0; }
.check-list li { padding: 6px 0; padding-left: 28px; position: relative; color: var(--text-muted); font-size: 0.95rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner, .city-hero-inner { grid-template-columns: 1fr; }
  .hero-form { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .trust-bar-inner { justify-content: center; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
