/* ==========================================================================
   HGV Direct — Main Stylesheet
   Optimised for performance: no framework dependencies, CSS custom properties
   ========================================================================== */

/* === Custom Properties === */
:root {
  --primary:      #1e4d8c;
  --primary-dark: #0f2d5a;
  --primary-light:#2e6abf;
  --accent:       #f97316;
  --accent-dark:  #ea6c0a;
  --text:         #0f172a;
  --text-muted:   #64748b;
  --bg:           #f8fafc;
  --white:        #ffffff;
  --border:       #e2e8f0;
  --success:      #16a34a;
  --shadow:       0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:    0 20px 25px -5px rgb(0 0 0 / 0.15);
  --radius:       8px;
  --radius-lg:    16px;
  --max-width:    1200px;
  --transition:   0.2s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
button { font-family: inherit; }
ul, ol { list-style: none; }

/* === Typography === */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; letter-spacing: -0.025em; }
h1 { font-size: clamp(1.75rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
p { line-height: 1.7; }

/* === Layout === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.section-sm { padding: 2.5rem 0; }

/* === Navigation === */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--primary-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 1rem;
}
.nav-logo {
  color: var(--white); font-size: 1.4rem; font-weight: 800;
  letter-spacing: -0.5px; white-space: nowrap; flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex; gap: 1.5rem; align-items: center;
}
.nav-links a {
  color: #94a3b8; font-size: 0.9rem; font-weight: 500;
  transition: color var(--transition); white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-phone {
  color: var(--accent); font-weight: 700; font-size: 0.95rem;
  white-space: nowrap;
}
.nav-phone:hover { color: #fed7aa; }
.nav-cta {
  background: var(--accent); color: var(--white) !important;
  padding: 0.5rem 1.25rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.875rem;
  transition: background var(--transition); white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-dark) !important; color: var(--white); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: white; padding: 0.25rem; line-height: 1;
}
.nav-toggle svg { display: block; }

@media (max-width: 900px) {
  .nav-links-desktop { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .nav-phone { display: none; }
}

/* Mobile nav drawer */
.nav-mobile {
  display: none; flex-direction: column;
  position: absolute; top: 64px; left: 0; right: 0; z-index: 199;
  background: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.5rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: #cbd5e1; font-size: 1rem; font-weight: 500;
  padding: 0.625rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block; transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile-phone {
  color: var(--accent) !important; font-weight: 700 !important;
  font-size: 1.1rem !important;
}

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3f78 60%, var(--primary) 100%);
  padding: 3.5rem 1.25rem 4rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -20%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,77,140,0.4) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(249,115,22,0.18); border: 1px solid rgba(249,115,22,0.5);
  color: #fed7aa; padding: 0.375rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 1.25rem;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.hero h1 { color: var(--white); margin-bottom: 1.125rem; }
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1.1rem; color: #b8cce4; margin-bottom: 2rem;
  line-height: 1.75; max-width: 540px;
}
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block; font-size: 1.875rem; font-weight: 800;
  color: var(--accent); letter-spacing: -1px;
}
.hero-stat span { font-size: 0.8rem; color: #94a3b8; line-height: 1.4; }

/* === Lead Form === */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-xl);
}
.form-card-header { margin-bottom: 1.5rem; }
.form-card-header h3 {
  color: var(--primary-dark); font-size: 1.25rem; margin-bottom: 0.375rem;
}
.form-card-header p { font-size: 0.875rem; color: var(--text-muted); }
.form-group { margin-bottom: 0.875rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 0.95rem; font-family: inherit; color: var(--text);
  background: var(--white); transition: border-color var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,77,140,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.btn-submit {
  width: 100%; padding: 1rem 1.5rem;
  background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: background var(--transition), transform 0.1s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 0.25rem; letter-spacing: 0.01em;
}
.btn-submit:hover { background: var(--accent-dark); }
.btn-submit:active { transform: scale(0.99); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-note {
  display: flex; align-items: center; justify-content: center; gap: 0.375rem;
  font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem;
  text-align: center;
}
.form-success-state {
  display: none; text-align: center; padding: 1.5rem 1rem;
}
.form-success-state .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success-state h3 { color: var(--success); margin-bottom: 0.5rem; }
.form-success-state p { color: var(--text-muted); font-size: 0.9rem; }
.form-success-state .call-now {
  display: inline-block; margin-top: 1rem;
  background: var(--primary); color: var(--white);
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: 2.5rem 1.25rem 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* === Trust Bar === */
.trust-bar {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
}
.trust-bar-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  white-space: nowrap;
}
.trust-icon { color: var(--accent); font-size: 1.1rem; }

/* === Section Header === */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block; color: var(--accent); font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}
.section-header h2 { color: var(--text); margin-bottom: 0.875rem; }
.section-header p {
  color: var(--text-muted); max-width: 580px; margin: 0 auto;
  font-size: 1rem;
}

/* === Courses === */
.courses-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 768px) { .courses-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
}
.course-card {
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; transition: all var(--transition); position: relative;
  overflow: hidden; background: var(--white);
}
.course-card:hover {
  border-color: var(--primary); box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.course-card.popular { border-color: var(--accent); }
.popular-badge {
  position: absolute; top: 0; right: 0;
  background: var(--accent); color: var(--white);
  font-size: 0.7rem; font-weight: 700; padding: 0.375rem 1rem;
  border-radius: 0 var(--radius-lg) 0 var(--radius);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.course-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem;
}
.course-card h3 { font-size: 1.125rem; margin-bottom: 0.375rem; }
.course-category {
  font-size: 0.75rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem;
}
.course-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.course-features {
  margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.375rem;
}
.course-features li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: var(--text);
}
.check { color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }
.btn-enquire {
  display: block; width: 100%; padding: 0.75rem;
  background: var(--primary); color: var(--white);
  border: 2px solid var(--primary); border-radius: var(--radius);
  font-weight: 700; font-size: 0.875rem; text-align: center;
  cursor: pointer; transition: all var(--transition); border: none;
  font-family: inherit;
}
.btn-enquire:hover { background: var(--primary-dark); color: var(--white); }
.btn-enquire.secondary {
  background: transparent; border: 2px solid var(--primary);
  color: var(--primary); cursor: pointer; font-family: inherit;
}
.btn-enquire.secondary:hover { background: var(--primary); color: var(--white); }

/* === Why Choose Us === */
.why { background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
.why-card {
  background: var(--white); padding: 2rem;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  text-align: center;
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.75rem;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 0.625rem; }
.why-card p { font-size: 0.875rem; color: var(--text-muted); }
.btn-cta {
  display: inline-block; background: var(--accent); color: var(--white);
  padding: 0.875rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; transition: background var(--transition);
}
.btn-cta:hover { background: var(--accent-dark); color: var(--white); }

/* === Content photo (location & course pages) === */
.content-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.content-photo img { width: 100%; height: auto; display: block; }

/* === Process === */
.process { background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  position: relative;
}
@media (max-width: 768px) { .process-steps { grid-template-columns: 1fr; gap: 1rem; } }
@media (min-width: 769px) and (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
.process-step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 56px; height: 56px; background: var(--primary); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; margin: 0 auto 1.25rem;
  position: relative; z-index: 1; box-shadow: 0 0 0 8px rgba(30,77,140,0.12);
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; color: var(--text-muted); }

/* === Locations === */
.locations { background: var(--bg); }
.locations-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
@media (max-width: 768px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .locations-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
.location-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: all var(--transition); display: block; color: var(--text);
}
.location-card:hover {
  border-color: var(--accent); box-shadow: var(--shadow-lg);
  transform: translateY(-3px); color: var(--text);
}
.loc-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.location-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.location-card .county {
  color: var(--accent); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.75px; margin-bottom: 0.625rem;
}
.location-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.875rem; line-height: 1.5; }
.loc-link {
  font-size: 0.82rem; font-weight: 700; color: var(--primary);
  display: flex; align-items: center; gap: 0.25rem;
}
.loc-link::after { content: '→'; transition: transform var(--transition); }
.location-card:hover .loc-link::after { transform: translateX(3px); }

/* === Stats Banner === */
.stats-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3rem 1.25rem; color: var(--white);
}
.stats-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
@media (max-width: 768px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  display: block; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--accent); letter-spacing: -2px;
  line-height: 1;
}
.stat-label { font-size: 0.875rem; color: #94a3b8; margin-top: 0.375rem; }

/* === Testimonials === */
.testimonials { background: var(--primary-dark); color: var(--white); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: #94a3b8; }
.testimonials .section-label { color: #fcd34d; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
.testimonial {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.stars { color: #fcd34d; letter-spacing: 2px; margin-bottom: 1rem; font-size: 1rem; }
.testimonial-text {
  font-size: 0.9375rem; line-height: 1.75; color: #cbd5e1;
  margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 1.1rem;
  color: var(--white); flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9375rem; color: var(--white); }
.author-detail { font-size: 0.8rem; color: #64748b; margin-top: 0.125rem; }

/* === FAQ === */
.faq { background: var(--bg); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden;
}
.faq-btn {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; font-family: inherit; transition: color var(--transition);
}
.faq-btn:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--primary);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: var(--white); }
.faq-answer {
  display: none; padding: 0 1.5rem 1.25rem;
  color: var(--text-muted); font-size: 0.9375rem; line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer a { color: var(--primary); font-weight: 600; }

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #c2520a 100%);
  padding: 4.5rem 1.25rem; text-align: center; color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p {
  color: rgba(255,255,255,0.88); margin-bottom: 2rem;
  max-width: 580px; margin-left: auto; margin-right: auto; font-size: 1.05rem;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary-white {
  padding: 1rem 2rem; background: var(--white); color: var(--accent-dark);
  border-radius: var(--radius); font-weight: 700; font-size: 1rem;
  border: 2px solid var(--white); transition: all var(--transition);
  display: inline-block;
}
.btn-primary-white:hover {
  background: transparent; color: var(--white);
}
.btn-outline-white {
  padding: 1rem 2rem; background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.7); border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; transition: all var(--transition);
  display: inline-block;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }

/* === Footer === */
.footer {
  background: var(--primary-dark); color: #94a3b8;
  padding: 3.5rem 1.25rem 1.5rem;
}
.footer-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo-link {
  display: inline-block; color: var(--white); font-size: 1.4rem;
  font-weight: 800; margin-bottom: 0.875rem;
}
.footer-logo-link span { color: var(--accent); }
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-contact-item a { color: #94a3b8; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-col h4 {
  color: var(--white); font-size: 0.875rem; font-weight: 700;
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: #94a3b8; font-size: 0.875rem;
  transition: color var(--transition); line-height: 1.5;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.8rem;
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: #475569; transition: color var(--transition); }
.footer-legal a:hover { color: var(--accent); }

/* === Mobile Sticky CTA === */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 0.75rem 1rem; gap: 0.75rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
}
@media (max-width: 768px) { .sticky-cta { display: flex; } }
.sticky-cta a {
  flex: 1; padding: 0.875rem; text-align: center;
  border-radius: var(--radius); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; gap: 0.375rem;
}
.sticky-call { background: var(--primary); color: var(--white) !important; }
.sticky-quote { background: var(--accent); color: var(--white) !important; }
@media (max-width: 768px) { body { padding-bottom: 76px; } }

/* === Location Page Specific === */
.location-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 3rem 1.25rem; color: var(--white);
}
.location-hero h1 { color: var(--white); margin-bottom: 0.875rem; }
.location-hero p { color: #b8cce4; font-size: 1.05rem; max-width: 600px; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: #94a3b8; margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: #94a3b8; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: #475569; }
.location-content {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 3rem;
  padding: 3rem 1.25rem;
}
@media (max-width: 900px) { .location-content { grid-template-columns: 1fr; } }
.location-areas {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem;
}
.area-tag {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.25rem 0.75rem;
  font-size: 0.8rem; color: var(--text-muted); font-weight: 500;
}
.sidebar-form {
  background: var(--bg); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  position: sticky; top: 80px; height: fit-content;
}
.sidebar-form h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary-dark); }
.sidebar-form p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* === Utilities === */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.bg-light { background: var(--bg); }
.bg-white { background: var(--white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap;
}

/* === Animations === */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
  .fade-up:nth-child(5) { transition-delay: 0.4s; }
  .fade-up:nth-child(6) { transition-delay: 0.5s; }
}
