/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.address { display: none; }

:root {
  --bg:         #0d0d0f;
  --bg-raised:  #141416;
  --bg-card:    #1a1a1e;
  --bg-card-hover: #202025;
  --border:     #2a2a30;
  --border-light: #353540;
  --text:       #e8e8ec;
  --text-muted: #9090a0;
  --text-dim:   #606070;
  --gold:       #c9a84c;
  --gold-light: #e2c46e;
  --gold-dim:   #9a7c34;
  --gold-glow:  rgba(201,168,76,0.15);
  --radius:     12px;
  --radius-lg:  18px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: #0d0d0f;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,15,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

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

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg { width: 20px; height: 20px; fill: #0d0d0f; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,13,15,0.55) 0%, rgba(13,13,15,0.72) 100%),
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #3d9e56;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-badge span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}
.hero-badge strong { color: var(--text); }

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 720px;
}

.hero-title .accent {
  color: var(--gold);
  position: relative;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-number {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  align-self: center;
}

/* ── Trust Bar ── */
#trust {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-icon {
  width: 32px; height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Dealer Banner ── */
#dealer-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 0;
  background: rgba(26,26,30,0.75);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dealer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.dealer-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.dealer-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.dealer-logos {
  display: flex;
  align-items: center;
  gap: 72px;
}

.dealer-logos img {
  height: 28px;
  width: auto;
  opacity: 0.75;
  filter: brightness(0) invert(1);
}

.dealer-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
  white-space: nowrap;
}
.dealer-cta:hover { color: var(--gold-light); }

@media (max-width: 700px) {
  .dealer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .dealer-text {
    width: 100%;
  }
  .dealer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    width: 100%;
  }
  .dealer-logos img {
    height: 24px;
    max-width: 100%;
  }
  .dealer-cta {
    align-self: center;
    width: 100%;
    max-width: 360px;
  }
  #hero {
    flex-direction: column;
    align-items: stretch;
  }
  #dealer-banner {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: auto;
    margin-top: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

/* ── Services ── */
#services {
  padding: 100px 0;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card[style*="--card-img"] {
  background: var(--bg-card);
}
.service-card[style*="--card-img"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26,26,30,0.91), rgba(26,26,30,0.94)), var(--card-img);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}
.service-card[style*="--card-img"]:hover::after {
  transform: scale(1.04);
}
.service-card[style*="--card-img"] > * {
  position: relative;
  z-index: 1;
}
.service-card[style*="--card-img"]::before {
  z-index: 2;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.service-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-brands {
/*  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  */
  display: none;
}
.brand-tag {
  padding: 3px 9px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* ── Brand Carousel ── */
.brands-carousel-card {
  grid-column: 1 / -1;
  cursor: default;
}
.brands-carousel-card:hover { transform: none; }

.brands-carousel-header {
  margin-bottom: 64px;
}

.brands-track-wrap {
  position: relative;
  overflow: hidden;
}
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.brands-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-card), transparent);
}
.brands-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-card), transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brand-scroll 22s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }

.brands-track img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.8);
  transition: opacity 0.2s, filter 0.2s;
  flex-shrink: 0;
  margin-right: 48px;
}
.brands-track img:hover {
  opacity: 0.9;
  filter: grayscale(0) brightness(1);
}

@keyframes brand-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Why Us ── */
#why {
  padding: 100px 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
}
.why-feature:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.why-feature-icon {
  width: 40px; height: 40px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.why-feature-body { flex: 1; }
.why-feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.why-feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Process ── */
#process {
  padding: 100px 0;
}

.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-sub { margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 24px;
  position: relative;
  transition: all var(--transition);
}
.process-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.process-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.process-step:hover {
  background: var(--bg-card-hover);
  z-index: 1;
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}
.process-step:hover .process-number { color: rgba(201,168,76,0.25); }

.process-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.process-step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.process-connector {
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.process-connector svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.process-step:last-child .process-connector { display: none; }

/* ── Testimonials ── */
#testimonials {
  padding: 100px 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-header { text-align: center; margin-bottom: 56px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.stars {
  display: flex;
  gap: 3px;
}
.star { width: 14px; height: 14px; fill: var(--gold); }

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0d0d0f;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.author-role {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ── Service Area ── */
#area {
  padding: 100px 0;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.area-map {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 320px;
  justify-content: center;
}

.map-icon-wrap {
  width: 72px; height: 72px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-icon-wrap svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.map-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}
.map-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

.area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.town-tag {
  padding: 5px 12px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-muted);
}


.area-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.area-perk {
  display: flex;
  align-items: center;
  gap: 14px;
}
.area-perk-icon {
  width: 36px; height: 36px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.area-perk-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.area-perk-text { font-size: 0.93rem; color: var(--text-muted); }
.area-perk-text strong { color: var(--text); }

/* ── CTA Banner ── */
#cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 65%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%);
}

.cta-inner {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.cta-text { max-width: 620px; }
.cta-text .section-title { margin-bottom: 10px; }
.cta-text p { color: var(--text-muted); font-size: 1rem; }

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  max-width: 360px;
}

.cta-phone-display {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
  text-align: center;
}

/* ── Contact ── */
#contact {
  padding: 100px 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-block-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.contact-block-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.contact-block-value a { color: var(--gold); transition: color var(--transition); }
.contact-block-value a:hover { color: var(--gold-light); }

.hours-table { display: flex; flex-direction: column; gap: 6px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; }
.hours-day { color: var(--text-muted); }
.hours-time { color: var(--text); font-weight: 500; }
.hours-row.today { color: var(--gold); }
.hours-row.today .hours-day,
.hours-row.today .hours-time { color: var(--gold); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }

.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-input, .form-select, .form-textarea {
  background: var(--bg-raised);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.93rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-select {
  appearance: none;
  cursor: pointer;
  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='%23606070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-select option { background: var(--bg-card); }
.form-textarea { resize: vertical; min-height: 110px; }

.form-submit {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  justify-content: center;
}

.form-success-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 48px 32px;
  min-height: 320px;
}

.form-success-msg svg {
  stroke: #3d9e56;
  background: #1a3d25;
  border-radius: 50%;
  padding: 10px;
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.form-success-msg strong {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.form-success-msg p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.65;
  margin: 0;
}

.form-error-msg {
  padding: 14px 16px;
  margin-bottom: 18px;
  background: #3d1a1a;
  border: 1px solid #9e3d3d;
  border-radius: 8px;
  color: #cf6f6f;
  font-size: 0.95rem;
}

.form-field-error {
  font-size: 0.8rem;
  color: #cf6f6f;
  min-height: 1em;
}

.input-error {
  border-color: #9e3d3d !important;
}

/* ── Footer ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-top: 14px;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--text-muted); }

/* ── Scroll-to-top ── */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 50;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover {
  background: var(--gold);
  border-color: var(--gold);
}
#scroll-top svg { width: 18px; height: 18px; stroke: var(--text); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
#scroll-top:hover svg { stroke: #0d0d0f; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }

  .why-grid,
  .area-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .process-step:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
  .process-step:nth-child(3) { border-radius: 0 0 0 var(--radius); }
  .process-step:first-child { border-radius: var(--radius) 0 0 0; }
  .process-step:last-child { border-radius: 0 0 var(--radius) 0; }
  .process-connector { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  .cta-inner { padding: 40px 32px; }
  .cta-actions { max-width: 100%; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 24px; }
  .hero-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; gap: 2px; }
  .process-step { border-radius: 0 !important; }
  .process-step:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; }
  .process-step:last-child { border-radius: 0 0 var(--radius) var(--radius) !important; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cta-inner { padding: 32px 24px; }
  .cta-phone-display { font-size: 1.3rem; }

  .trust-inner { gap: 24px; }
}
