/* ==========================================================================
   ATM Appliance Repair — Styles (Redesigned)
   Color palette extracted from ATM logo:
   Deep Navy: #0B1D3A   Medium Blue: #1565C0   Bright Blue: #2196F3
   Red Accent: #E53935  Silver: #9E9E9E
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  --navy: #0B1D3A;
  --navy-light: #122A4F;
  --blue: #1565C0;
  --blue-light: #1E88E5;
  --blue-bright: #2196F3;
  --blue-pale: #E3F2FD;
  --red: #E53935;
  --silver: #9E9E9E;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e0e0e0;
  --bg-light: #f4f5f7;
  --bg-offwhite: #f9fafb;
  --bg-white: #ffffff;
  --star: #FFC107;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1200px;
  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-offwhite);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); font-weight: 700; line-height: 1.25; }

/* ---------- Utilities ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 5px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-light);
}
.btn-book {
  background: var(--blue);
  color: #fff;
  border-radius: 5px;
}
.btn-book:hover {
  background: var(--blue-light);
}
.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}
.btn-phone {
  background: var(--blue);
  color: #fff;
}
.btn-phone:hover {
  background: var(--blue-light);
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* --- Top bar: navy, centered info --- */
.header-top {
  background: var(--navy);
  padding: 8px 0;
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-top__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.header-top__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 400;
}

.header-top__item svg {
  width: 13px;
  height: 13px;
  color: var(--blue-bright);
  flex-shrink: 0;
}

.header-top__item a {
  color: rgba(255,255,255,0.9);
}
.header-top__item a:hover {
  color: #fff;
}

.header-top__divider {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  user-select: none;
}

/* --- Main navbar: WHITE background, blue text --- */
.header-main {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 60px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav a {
  padding: 26px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  transition: var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--blue);
}

.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  background: var(--blue);
  border-radius: 3px 3px 0 0;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a,
.nav-dropdown > .nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > .nav-dropdown-toggle {
  padding: 26px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.nav-dropdown > .nav-dropdown-toggle:hover {
  color: var(--blue);
}

.nav-dropdown > a svg,
.nav-dropdown > .nav-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: var(--transition);
  color: var(--navy);
}

.nav-dropdown:hover > a svg,
.nav-dropdown:hover > .nav-dropdown-toggle svg {
  transform: rotate(180deg);
  color: var(--blue);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--bg-light);
}

.nav-dropdown__menu a:last-child {
  border-bottom: none;
}

.nav-dropdown__menu a:hover {
  background: var(--bg-light);
  color: var(--blue);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue) 100%);
  color: #fff;
  text-align: center;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,176C384,192,480,192,576,170.7C672,149,768,107,864,112C960,117,1056,171,1152,181.3C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom center;
  background-size: cover;
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero__locations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero__locations .sep {
  color: var(--blue-bright);
  font-size: 0.7rem;
}

.hero .btn-book {
  padding: 15px 36px;
  font-size: 1.05rem;
}

/* ================================================================
   SERVICES ROW — single horizontal row with appliance images
   Matches reference "sample" design
   ================================================================ */
.services-section {
  padding: 60px 0;
  background: var(--bg-offwhite);
}

.services-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.services-section__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 8px;
}

.services-section__header p {
  color: var(--text-light);
  font-size: 1rem;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 24px 10px 20px;
  text-align: center;
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 36px rgba(21, 101, 192, 0.28);
  transform: translateY(-6px);
}

.service-card__img {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-card__img img {
  max-height: 130px;
  max-width: 90%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.service-card:hover .service-card__img img {
  transform: scale(1.08) translateY(-6px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
  mix-blend-mode: normal;
}

.service-card h3 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.service-card__name {
  display: block;
  color: var(--navy);
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__label {
  display: block;
  color: var(--blue-bright);
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__name {
  color: #ffffff;
}

.service-card:hover .service-card__label {
  color: rgba(255, 255, 255, 0.75);
}

/* ================================================================
   TRUST BADGES
   ================================================================ */
.trust-badges {
  padding: 40px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-badges .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.trust-badge__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.trust-badge__icon svg {
  width: 24px;
  height: 24px;
}

.trust-badge h4 {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.3;
}

.trust-badge p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-choose {
  padding: 70px 0;
  background: var(--navy);
  color: #fff;
}

.why-choose__header {
  text-align: center;
  margin-bottom: 50px;
}

.why-choose__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 10px;
}

.why-choose__header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-choose__card {
  text-align: center;
  padding: 30px 24px;
}

.why-choose__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.15);
  border: 2px solid var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue-bright);
}

.why-choose__icon svg {
  width: 28px;
  height: 28px;
}

.why-choose__card h3 {
  font-size: 1.3rem;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.why-choose__card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ================================================================
   TESTIMONIALS CAROUSEL
   ================================================================ */
.testimonials {
  padding: 70px 0;
  background: var(--bg-light);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 8px;
}

.testimonials__header p {
  color: var(--text-light);
  font-size: 1rem;
}

.testimonial-carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-carousel__track {
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 40px;
  text-align: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-slide__quote {
  font-size: 3.5rem;
  color: var(--blue-pale);
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: 8px;
}

.testimonial-slide__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--star);
}

.testimonial-slide__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-slide__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slide__author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue);
}

.testimonial-slide__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Carousel dots */
.testimonial-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--blue);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--blue-light);
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
  z-index: 2;
}

.carousel-arrow:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.carousel-arrow--prev { left: -56px; }
.carousel-arrow--next { right: -56px; }

/* ================================================================
   BRANDS
   ================================================================ */
.brands-section {
  padding: 60px 0;
  background: var(--bg-offwhite);
}

.brands-section__header {
  text-align: center;
  margin-bottom: 30px;
}

.brands-section__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 8px;
}

.brands-section__header p {
  color: var(--text-light);
  font-size: 1rem;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  max-width: 900px;
  margin: 0 auto 30px;
}

.brands-list span {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #ffffff;
  transition: var(--transition);
}

.brands-list span:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.brands-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 24px;
}

/* ================================================================
   SERVICE AREAS
   ================================================================ */
.service-areas {
  padding: 60px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
}

.service-areas__header {
  text-align: center;
  margin-bottom: 30px;
}

.service-areas__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 10px;
}

.service-areas__header p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 20px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.service-areas__grid a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  padding: 8px 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-areas__grid a:hover {
  color: var(--blue-bright);
}

.service-areas__grid a svg {
  width: 14px;
  height: 14px;
  color: var(--blue-bright);
  flex-shrink: 0;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  padding: 50px 0;
  background: var(--blue);
  color: #fff;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 24px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
}

.cta-banner .btn:hover {
  background: var(--blue-pale);
}

/* ================================================================
   FOOTER — WHITE background, blue text
   ================================================================ */
.site-footer {
  background: #ffffff;
  color: var(--text);
  padding-top: 50px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand img {
  height: 70px;
  width: auto;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--navy);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--blue);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: var(--text);
}

.footer-contact-item a:hover {
  color: var(--blue);
}

.footer-payment {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-light);
}

.footer-bottom a:hover {
  color: var(--blue);
}

/* ================================================================
   MOBILE STICKY CTA
   ================================================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 999;
  gap: 10px;
}

.mobile-cta .btn {
  flex: 1;
  justify-content: center;
  padding: 12px;
  font-size: 0.88rem;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .services-row { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .why-choose__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .carousel-arrow--prev { left: -10px; }
  .carousel-arrow--next { right: -10px; }
}

@media (max-width: 768px) {
  .header-top { display: none; }

  .header-main .container { height: 60px; }

  .header-logo img { height: 48px; }

  .header-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 16px;
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--border);
  }

  .header-nav.active { display: flex; align-items: stretch; }

  .header-nav a,
  .header-nav .nav-dropdown-toggle {
    padding: 14px 16px;
    border-bottom: 1px solid var(--bg-light);
    width: 100%;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 600;
  }

  .header-nav a.active::after { display: none; }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown > .nav-dropdown-toggle {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    padding-left: 16px;
    display: none;
  }

  .nav-dropdown.active .nav-dropdown__menu { display: block; }

  .mobile-toggle { display: flex; }

  .header-cta .btn-book { display: none; }

  /* Hero — compact */
  .hero { padding: 36px 0 32px; }
  .hero h1 { font-size: 1.6rem; margin-bottom: 10px; }
  .hero__locations { font-size: 0.85rem; gap: 6px; margin-bottom: 20px; }
  .hero .btn-book { padding: 12px 28px; font-size: 0.95rem; }

  /* Services — 2 columns */
  .services-section { padding: 40px 0; }
  .services-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .service-card { padding: 16px 10px 14px; }
  .service-card__img { height: 80px; margin-bottom: 10px; }
  .service-card__img img { max-height: 70px; }
  .service-card h3 { font-size: 0.78rem; }

  /* Trust badges */
  .trust-badges { padding: 28px 0; }
  .trust-badges .container { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-badge { padding: 10px; gap: 10px; }
  .trust-badge__icon { width: 40px; height: 40px; }
  .trust-badge__icon svg { width: 20px; height: 20px; }
  .trust-badge h4 { font-size: 0.85rem; }

  /* Why Choose */
  .why-choose { padding: 40px 0; }
  .why-choose__header { margin-bottom: 30px; }
  .why-choose__grid { grid-template-columns: 1fr; gap: 16px; }
  .why-choose__card { padding: 20px 16px; }
  .why-choose__icon { width: 52px; height: 52px; margin-bottom: 14px; }
  .why-choose__icon svg { width: 24px; height: 24px; }
  .why-choose__card h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .why-choose__card p { font-size: 0.85rem; line-height: 1.6; }

  /* Testimonials carousel */
  .testimonials { padding: 40px 0; }
  .testimonials__header { margin-bottom: 24px; }
  .testimonial-slide { padding: 24px 20px; }
  .testimonial-slide__text { font-size: 0.9rem; }
  .carousel-arrow { display: none; }

  /* Brands */
  .brands-section { padding: 40px 0; }
  .brands-list { gap: 6px 8px; }
  .brands-list span { font-size: 0.78rem; padding: 3px 8px; }

  /* Service areas */
  .service-areas { padding: 40px 0; }
  .service-areas__grid { grid-template-columns: repeat(2, 1fr); gap: 4px 16px; }
  .service-areas__grid a { padding: 6px 0; font-size: 0.85rem; }

  /* Footer */
  .site-footer { padding-top: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Mobile CTA */
  .mobile-cta { display: flex; }
  body { padding-bottom: 56px; }
  .mobile-cta .btn { padding: 10px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .header-logo img { height: 40px; }

  .hero { padding: 28px 0 24px; }
  .hero h1 { font-size: 1.35rem; }
  .hero__locations { font-size: 0.78rem; gap: 4px; margin-bottom: 16px; }
  .hero .btn-book { padding: 11px 24px; font-size: 0.88rem; }

  /* Services — 2 columns compact */
  .services-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-card { padding: 14px 8px 12px; }
  .service-card__img { height: 70px; margin-bottom: 8px; }
  .service-card__img img { max-height: 60px; }
  .service-card h3 { font-size: 0.76rem; }

  /* Trust badges */
  .trust-badges .container { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust-badge { padding: 8px; gap: 8px; }
  .trust-badge__icon { width: 36px; height: 36px; }
  .trust-badge__icon svg { width: 18px; height: 18px; }
  .trust-badge h4 { font-size: 0.78rem; }
  .trust-badge p { font-size: 0.72rem; }

  /* Why choose */
  .why-choose { padding: 32px 0; }
  .why-choose__card { padding: 16px 12px; }

  /* Testimonials */
  .testimonials { padding: 32px 0; }
  .testimonial-slide { padding: 20px 16px; }
  .testimonial-slide__text { font-size: 0.84rem; }
  .testimonial-slide__quote { font-size: 2.5rem; }

  /* Service areas */
  .service-areas { padding: 32px 0; }
  .service-areas__grid { grid-template-columns: repeat(2, 1fr); gap: 2px 12px; }
  .service-areas__grid a { font-size: 0.8rem; padding: 5px 0; }

  /* Footer */
  .footer-col h4 { font-size: 0.88rem; margin-bottom: 12px; }
  .footer-links a { font-size: 0.82rem; }
  .footer-contact-item { font-size: 0.82rem; }
}

/* ================================================================
   SERVICE PAGE — HERO (sp-hero)
   ================================================================ */
.sp-hero {
  position: relative;
  overflow: hidden;
}

.sp-hero__bg {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue) 100%);
  padding: 60px 0 50px;
  position: relative;
}

.sp-hero__bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,176C384,192,480,192,576,170.7C672,149,768,107,864,112C960,117,1056,171,1152,181.3C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom center;
  background-size: cover;
  opacity: 0.5;
}

.sp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.sp-hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--blue-bright);
}

.sp-hero__content h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.sp-hero__content h1 span {
  display: block;
  color: var(--blue-bright);
  font-size: 0.65em;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0;
}

.sp-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 520px;
}

.sp-hero__locations {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.sp-hero__locations .sep {
  color: var(--blue-bright);
  font-size: 0.55rem;
}

.sp-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn--white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 5px;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn--white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.sp-hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ================================================================
   SERVICE PAGE — DESCRIPTION SECTION
   ================================================================ */
.sp-description {
  padding: 70px 0;
  background: var(--bg-offwhite);
}

.sp-description__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.sp-description__content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.sp-description__content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

.sp-description__content p strong {
  color: var(--text);
}

.sp-description__cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.sp-description__image {
  position: sticky;
  top: 120px;
}

.sp-description__img-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.sp-description__img-card img {
  max-height: 320px;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.sp-description__img-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.sp-description__img-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ================================================================
   SERVICE PAGE — DETAILS CARDS (Problems + Types)
   ================================================================ */
.sp-details {
  padding: 70px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.sp-details__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.sp-details__card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
}

.sp-details__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.sp-details__icon svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.sp-details__card h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sp-details__card > p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.sp-details__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-details__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid var(--bg-light);
  line-height: 1.5;
}

.sp-details__list li:last-child {
  border-bottom: none;
}

.sp-details__list li svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================================================================
   SERVICE PAGE — VAN BANNER
   ================================================================ */
.sp-van-banner {
  padding: 60px 0;
  background: var(--bg-offwhite);
  text-align: center;
  overflow: hidden;
}

.sp-van-banner__img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .sp-van-banner { padding: 40px 0; }
  .sp-van-banner__img { border-radius: 12px; }
}

@media (max-width: 480px) {
  .sp-van-banner { padding: 28px 0; }
  .sp-van-banner__img { border-radius: 10px; }
}

/* ================================================================
   SERVICE PAGE — FINAL CTA
   ================================================================ */
.sp-final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-final-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(33, 150, 243, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.sp-final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.sp-final-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 800;
}

.sp-final-cta p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 32px;
}

.sp-final-cta p strong {
  color: #fff;
}

.sp-final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.sp-final-cta__btn {
  padding: 15px 36px;
  font-size: 1.05rem;
}

.sp-final-cta__hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

.sp-final-cta__hours svg {
  width: 16px;
  height: 16px;
  color: var(--blue-bright);
}

/* ================================================================
   SERVICE PAGE — RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .sp-hero__grid { gap: 32px; }
  .sp-description__grid { gap: 40px; }
}

@media (max-width: 768px) {
  .sp-hero__bg { padding: 36px 0 32px; }
  .sp-hero__grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .sp-hero__content h1 { font-size: 1.8rem; }
  .sp-hero__sub { margin-left: auto; margin-right: auto; font-size: 0.95rem; }
  .sp-hero__locations { justify-content: center; font-size: 0.82rem; }
  .sp-hero__actions { justify-content: center; }
  .sp-hero__badge { margin-left: auto; margin-right: auto; }
  .sp-hero__image img { max-width: 85%; border-radius: 10px; }

  .sp-description { padding: 40px 0; }
  .sp-description__grid { grid-template-columns: 1fr; gap: 32px; }
  .sp-description__image { position: static; }
  .sp-description__img-card { padding: 24px; }
  .sp-description__img-card img { max-height: 240px; }

  .sp-details { padding: 40px 0; }
  .sp-details__grid { grid-template-columns: 1fr; gap: 20px; }
  .sp-details__card { padding: 28px 24px; }
  .sp-details__card h2 { font-size: 1.15rem; }
  .sp-details__list li { font-size: 0.88rem; padding: 8px 0; }

  .sp-final-cta { padding: 50px 0; }
  .sp-final-cta h2 { font-size: 1.5rem; }
  .sp-final-cta p { font-size: 0.92rem; }
  .sp-final-cta__btn { padding: 13px 28px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .sp-hero__bg { padding: 28px 0 24px; }
  .sp-hero__content h1 { font-size: 1.5rem; }
  .sp-hero__sub { font-size: 0.88rem; }
  .sp-hero__locations { font-size: 0.78rem; gap: 6px; }
  .sp-hero__actions { flex-direction: column; align-items: center; }
  .sp-hero__actions .btn,
  .sp-hero__actions .btn--white-outline { width: 100%; justify-content: center; }
  .sp-hero__image img { max-width: 95%; }

  .sp-description__content h2 { font-size: 1.3rem; }
  .sp-description__content p { font-size: 0.88rem; }
  .sp-description__cta { flex-direction: column; }
  .sp-description__cta .btn { width: 100%; justify-content: center; }

  .sp-details__card { padding: 24px 20px; }
  .sp-details__icon { width: 48px; height: 48px; border-radius: 12px; }
  .sp-details__icon svg { width: 24px; height: 24px; }
  .sp-details__card h2 { font-size: 1.1rem; }
  .sp-details__list li { font-size: 0.84rem; gap: 10px; }
  .sp-details__list li svg { width: 18px; height: 18px; }

  .sp-final-cta { padding: 40px 0; }
  .sp-final-cta h2 { font-size: 1.3rem; }
  .sp-final-cta__actions { flex-direction: column; align-items: center; }
  .sp-final-cta__btn { width: 100%; justify-content: center; }
  .sp-final-cta__hours { font-size: 0.8rem; }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
