/* =============================================
   MRD AUTOMOTIVE - VELOCITY NOIR DESIGN SYSTEM
   mrdautomotive.co.uk
   ============================================= */

/* ---------- RESET & ROOT ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --bg:            #0e0e13;
  --surface:       #131318;
  --surface-low:   #1b1b20;
  --surface-mid:   #1f1f25;
  --surface-high:  #2a292f;
  --surface-top:   #35343a;
  --surface-bright:#39383e;

  --primary:       #00bcd4;
  --primary-glow:  rgba(0, 188, 212, 0.35);
  --primary-dark:  #0097a7;
  --gold:          #f4a261;
  --gold-dim:      rgba(244, 162, 97, 0.18);

  --text:          #e4e1e9;
  --text-muted:    #9d9aab;
  --text-dim:      #6b687a;
  --outline:       rgba(91, 64, 63, 0.3);

  /* Typography */
  --font-head:     'Plus Jakarta Sans', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Spacing */
  --section-pad:   5.5rem;
  --container-max: 1280px;
  --radius:        6px;
  --radius-lg:     12px;

  /* Transitions */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
figure { margin: 0; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--surface-top); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---------- UTILITY ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-padded { padding: var(--section-pad) 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--primary-glow);
  filter: brightness(1.08);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(244, 162, 97, 0.2);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--outline);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ---------- GLASS CARD ---------- */
.glass-card {
  background: rgba(53, 52, 58, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.glass-card:hover {
  background: rgba(57, 56, 62, 0.75);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* ---------- NAV ---------- */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 13, 18, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav-header.scrolled {
  background: rgba(13, 13, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 80px;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(228, 225, 233, 0.75);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav-link.nav-cta {
  background: var(--primary);
  color: #0a0a0f;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  margin-left: 0.5rem;
}
.nav-link.nav-cta:hover {
  background: var(--primary-dark);
  color: #fff;
  filter: brightness(1.05);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.55) 0%,
    rgba(10, 10, 15, 0.72) 50%,
    rgba(10, 10, 15, 0.95) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(230,57,70,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 60%, rgba(244,162,97,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 80%, rgba(230,57,70,0.2) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  padding-top: 96px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244, 162, 97, 0.1);
  border: 1px solid rgba(244, 162, 97, 0.2);
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-line { display: block; color: var(--text); }
.title-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
  text-stroke: 2px var(--primary);
  position: relative;
}
.title-accent::after {
  content: 'AUTOMOTIVE';
  position: absolute;
  inset: 0;
  color: var(--primary);
  clip-path: inset(0 100% 0 0);
  animation: textReveal 1.2s 0.8s var(--ease) forwards;
}
@keyframes textReveal {
  to { clip-path: inset(0 0% 0 0); }
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--outline);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--text-muted);
  animation: bounce 2.5s infinite;
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--primary); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---------- ANIMATE ON SCROLL ---------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.75s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- TRUST SECTION ---------- */
.trust-section {
  background: var(--surface-low);
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
  padding: 1.75rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(230,57,70,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.trust-title {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.trust-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- WHY SECTION ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  text-align: left;
}
.why-card .card-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(230,57,70,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.why-card:hover .card-icon-wrap {
  background: rgba(230,57,70,0.22);
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.inline-link { color: var(--primary); text-decoration: underline; }

/* ---------- SERVICES ---------- */
.services-section { background: var(--surface-low); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--surface-mid);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.service-card:hover {
  background: var(--surface-high);
  transform: translateY(-4px);
  border-color: rgba(230,57,70,0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.service-card-featured {
  background: linear-gradient(135deg, rgba(230,57,70,0.12) 0%, rgba(230,57,70,0.04) 100%);
  border-color: rgba(230,57,70,0.25);
}
.service-card-featured:hover {
  border-color: rgba(230,57,70,0.5);
}
.service-price {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.service-icon { color: var(--text-muted); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}
.service-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: auto;
  transition: gap 0.2s;
}
.service-card:hover .service-cta { gap: 0.7rem; }
.services-cta-wrap {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ---------- GALLERY STRIP ---------- */
.gallery-strip { overflow: hidden; }
.gallery-scroll-track {
  overflow: hidden;
  margin: 0 -1.5rem;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.gallery-scroll-inner {
  display: flex;
  gap: 1rem;
  animation: scrollGallery 35s linear infinite;
  width: max-content;
}
.gallery-scroll-track:hover .gallery-scroll-inner { animation-play-state: paused; }
@keyframes scrollGallery {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gallery-thumb {
  flex-shrink: 0;
  width: 340px;
  height: 230px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--outline);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-thumb:hover img { transform: scale(1.06); }
.gallery-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--surface-low); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--surface-mid);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.stars { display: flex; gap: 3px; }
.testimonial-card blockquote p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}
.testimonial-card blockquote p::before { content: '\201C'; }
.testimonial-card blockquote p::after  { content: '\201D'; }
.testimonial-card cite {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.reviewer-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, rgba(230,57,70,0.12) 0%, transparent 60%);
  border-top: 1px solid rgba(230,57,70,0.15);
  border-bottom: 1px solid rgba(230,57,70,0.15);
  padding: 4rem 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.cta-band-text p { color: var(--text-muted); font-size: 1rem; }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--outline);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.75fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--outline);
}
.footer-logo {
  height: 48px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-social:hover { color: var(--primary); }
.footer-nav-col h3,
.footer-services-col h3,
.footer-contact-col h3 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.footer-nav-col ul li,
.footer-services-col ul li {
  margin-bottom: 0.6rem;
}
.footer-nav-col ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav-col ul a:hover { color: var(--primary); }
.footer-services-col ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-contact-col address p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact-col address a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-contact-col address a:hover { color: var(--primary); }
.footer-hours { margin-top: 1.25rem; }
.footer-hours h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-hours table { width: 100%; border-collapse: collapse; }
.footer-hours td {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
}
.footer-hours td:last-child { text-align: right; }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-small { margin-top: 0.25rem; }

/* ---------- FLOATING CALL CTA ---------- */
.float-call {
  display: flex;
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 3rem;
  padding: 0.8rem 1.4rem 0.8rem 1.1rem;
  color: #0a0a0f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 28px var(--primary-glow), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  white-space: nowrap;
  text-decoration: none;
}
.float-call:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px var(--primary-glow), 0 4px 12px rgba(0,0,0,0.4);
  color: #0a0a0f;
}
.float-call .call-label {
  display: inline;
}
.float-call svg {
  flex-shrink: 0;
}

/* =============================================
   PAGE-SPECIFIC STYLES
   ============================================= */

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding: 9rem 0 4rem;
  background: var(--surface-low);
  border-bottom: 1px solid var(--outline);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(230,57,70,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.accent-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 1rem 0;
}

/* ---------- ABOUT PAGE ---------- */
.about-section { padding: var(--section-pad) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(13,13,18,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
}
.about-img-badge .badge-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-img-badge .badge-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-checklist {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.about-checklist li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ---------- SERVICES PAGE ---------- */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-full-card {
  background: var(--surface-mid);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-full-card:hover {
  border-color: rgba(230,57,70,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transform: translateY(-3px);
}
.service-full-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.service-full-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-tag-price {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(230,57,70,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  letter-spacing: 0.04em;
}

/* ---------- PRICES PAGE ---------- */
.prices-table {
  width: 100%;
  border-collapse: collapse;
}
.prices-table th, .prices-table td {
  padding: 1.1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--outline);
}
.prices-table th {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-mid);
}
.prices-table td { font-size: 0.925rem; color: var(--text-muted); }
.prices-table td:last-child {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}
.prices-table tr:hover td { background: var(--surface-low); color: var(--text); }
.prices-note {
  background: var(--gold-dim);
  border: 1px solid rgba(244,162,97,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--gold);
}

/* ---------- CARBON CLEANING PAGE ---------- */
.carbon-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.carbon-step {
  background: var(--surface-mid);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(230,57,70,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.carbon-step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.carbon-step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface-mid);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.benefit-item svg { color: var(--primary); flex-shrink: 0; }

/* ---------- GALLERY PAGE ---------- */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-page-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-page-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-page-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { color: var(--text); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: var(--primary); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--text);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(230,57,70,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--primary); }

/* ---------- BOOKING / CONTACT FORM ---------- */
.form-card {
  background: var(--surface-mid);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-card h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-card .form-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface-top);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -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='%239d9aab' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: var(--surface-high); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success svg { color: var(--primary); margin: 0 auto 1rem; }
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* Map placeholder */
.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--outline);
  height: 280px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ---------- BOOKING PAGE ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.booking-sidebar .glass-card {
  margin-bottom: 1.5rem;
}
.booking-sidebar h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.hours-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.hours-row.today .day { color: var(--gold); font-weight: 600; }
.hours-row.today .time { color: var(--gold); }
.sidebar-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--surface-low);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
.sidebar-contact a:hover { background: var(--surface-bright); color: var(--primary); }
.sidebar-contact a svg { color: var(--primary); flex-shrink: 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .nav-header {
    background: rgba(13, 13, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
  }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(13,13,18,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.3s var(--ease);
    border-bottom: 1px solid var(--outline);
    z-index: 990;
  }
  .nav-menu.open { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
  }
  .nav-link { padding: 0.85rem 1rem; border-radius: var(--radius); }
  .nav-link.nav-cta { text-align: center; margin: 0.5rem 0 0; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem; }

  .hero-title { font-size: clamp(2.5rem, 14vw, 5rem); }
  .hero-stats { gap: 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .why-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .carbon-how-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  /* float-call always visible, already set */

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-thumb { width: 280px; height: 190px; }
}

/* ---------- PRINT ---------- */
@media print {
  .nav-header, .float-call, .hero, .gallery-strip,
  .cta-band, .site-footer { display: none; }
  body { background: #fff; color: #000; }
}
