﻿/*
Theme Name: Bright Sky Auto
Theme URI: https://example.com/
Author: Bright Sky
Description: WordPress theme converted from home.html.
Version: 1.0.0
Text Domain: brightsky-auto
*/

/* 
   ROOT VARIABLES
 */
:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #8a6a1a;
  --gold-subtle: rgba(201,168,76,0.08);
  --dark: #ffffff;
  --dark2: #f5f5f5;
  --dark3: #eeeeee;
  --green: #1a5c2a;
  --green-light: #2a8c3f;
  --red: #cc0000;
  --text-muted: #555555;
  --text-dim: #777777;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: #333333;
  background: #ffffff;
  overflow-x: hidden;
}
a { text-decoration: none; }

/*  SHARED UTILITIES  */
.gold-line-top {
  position: relative;
}
.gold-line-top::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.bsky-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 0 auto 40px;
  max-width: 400px;
}
.bsky-divider::before, .bsky-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.bsky-divider span { font-size: 18px; color: var(--gold); filter: drop-shadow(0 0 8px var(--gold)); }

.section-title {
  text-align: center; margin-bottom: 40px;
}
.section-title .pre {
  font-size: 10px; font-weight: 700;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.btn {
  font-family: 'Cinzel', serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 28px; border-radius: 3px;
  cursor: pointer; transition: all 0.3s;
  display: inline-block; border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 250%; color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover { background-position: right; box-shadow: 0 6px 30px rgba(201,168,76,0.55); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(201,168,76,0.15); }

/* 
   TOP BAR
 */
.topbar {
  display: none;
}
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left a { color: var(--text-muted); transition: color 0.2s; }
.topbar-left a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-phone {
  color: var(--gold-light) !important;
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: 14px; letter-spacing: 1.5px;
  transition: all 0.2s;
}
.topbar-phone:hover { color: var(--gold) !important; filter: drop-shadow(0 0 6px var(--gold)); }

/* 
   NAVIGATION
 */
.nav {
  background: #efefef;
  border-bottom: 1px solid #dddddd;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: none;
  min-height: 0;
}
.nav-inner {
  max-width: 1800px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
  gap: 12px;
  height: auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 145px;
}
.nav-logo img {
  display: block;
  height: 90px !important;
  width: auto !important;
  max-height: none;
  object-fit: contain;
}
.nav-logo-crown {
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22%3E%3Ctext x=%2250%22 y=%2270%22 font-size=%2280%22 text-anchor=%22middle%22%3E%3C/text%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.nav-logo-crown img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-logo-text { line-height: 0.9; display: none; }
.nav-logo-text .name {
  font-family: 'Cinzel', serif; font-size: 16px; font-weight: 900;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-logo-text .tagline {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: clamp(4px, 0.45vw, 10px);
  list-style: none;
  flex: 1;
  min-width: 0;
  justify-content: space-between;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 12px;
}
.nav-links li { position: relative; flex-shrink: 0; }
.nav-links a {
  font-family: 'Raleway', sans-serif; font-size: clamp(10px, 0.72vw, 14px); font-weight: 800;
  letter-spacing: 0.35px; text-transform: uppercase;
  color: #1f2937; padding: 11px clamp(4px, 0.35vw, 8px) 8px; display: flex;
  align-items: center; justify-content: center;
  transition: color 0.2s; position: relative;
  white-space: nowrap;
  height: auto;
}
@media (max-width: 1700px) {
  .btn-book-now { display: none; }
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: #1f2937; transition: all 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { left: 10px; right: 10px; }

.nav-badge {
  position: absolute; top: -2px; right: 50%;
  transform: translateX(50%);
  background: #e05b4f;
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 4px; letter-spacing: 0.4px;
  font-family: 'Raleway', sans-serif;
  line-height: 1.1;
}
.nav-badge.green { background: #f0ad3d; }
.nav-badge.blue { background: #41a9d6; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #ffffff; border: 1px solid rgba(201,168,76,0.3);
  min-width: 220px; z-index: 100;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 16px;
  font-size: 9px; letter-spacing: 1px; color: #666666;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover { color: var(--gold-light); background: rgba(201,168,76,0.05); padding-left: 22px; }
.nav-dropdown-menu a::after { display: none; }

.nav-cta-btn {
  display: none;
}

.nav-contact {
  display: none;
}
.nav-contact a {
  display: none;
}

.nav-hamburger {
  display: none; background: none; border: 1px solid var(--gold-dark);
  color: var(--gold); padding: 8px 10px; cursor: pointer; border-radius: 3px;
  font-size: 16px;
}

/* 
   HERO
 */
.hero {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(26,92,42,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(26,92,42,0.05) 0%, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 45%, #f5f5f5 100%);
  padding: 0;
  text-align: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.hero::before { display: none; }
/* corner ornaments */
.hero::after {
  content: '';
  position: absolute; top: 22px; left: 22px;
  color: rgba(201,168,76,0.3); font-size: 10px;
  text-shadow: 2200px 0 rgba(201,168,76,0.3), 0 1400px rgba(201,168,76,0.3), 2200px 1400px rgba(201,168,76,0.3);
}

.hero-crown { margin-bottom: 18px; }
@keyframes crown-pulse { 0%,100%{filter:drop-shadow(0 0 10px var(--gold))} 50%{filter:drop-shadow(0 0 24px var(--gold)) drop-shadow(0 0 40px rgba(201,168,76,0.3))} }

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border: 1px solid var(--gold-dark);
  color: var(--gold-light);
  font-size: 9px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  padding: 8px 24px; border-radius: 2px;
  margin-bottom: 26px;
  box-shadow: 0 0 25px rgba(26,92,42,0.3), 0 0 50px rgba(201,168,76,0.1);
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 6vw, 66px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 3px; line-height: 1.05; margin-bottom: 8px;
  background: linear-gradient(180deg, #fff8e0 0%, var(--gold-light) 35%, var(--gold) 65%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(201,168,76,0.25));
  animation: fade-up 0.8s ease both;
}
.hero h1 .sub {
  display: block;
  font-size: clamp(20px, 3.5vw, 38px);
  font-weight: 600;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

@keyframes fade-up { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

.hero-price {
  margin: 28px auto 0; display: inline-block;
  background: linear-gradient(135deg, #fafafa, #f5f5f5);
  border: 2px solid var(--gold);
  border-radius: 4px; padding: 18px 44px;
  box-shadow: 0 0 40px rgba(201,168,76,0.12), inset 0 1px 0 rgba(201,168,76,0.08);
  animation: fade-up 0.9s 0.15s ease both;
}
.hero-price .from { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.hero-price .amount {
  font-family: 'Cinzel', serif;
  font-size: clamp(30px, 5vw, 52px); font-weight: 900; letter-spacing: 2px;
  background: linear-gradient(180deg, #fff8e0, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-price .tagline { font-size: 10px; letter-spacing: 2px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; }

.hero-cta { margin-top: 36px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fade-up 1s 0.3s ease both; }

.hero-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.hero-slide {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 0 0 36px;
}
.hero-slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.55));
}
.hero-slide-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  text-align: center;
  padding: 18px 16px;
}
.hero-slide-content .hero-badge {
  margin-top: 4px;
}
.hero-slide-content .hero-price {
  display: none;
}
.hero .swiper-button-prev,
.hero .swiper-button-next {
  color: var(--gold);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(4px);
}
.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}
.hero .swiper-pagination {
  bottom: 0 !important;
}
.hero .swiper-pagination-bullet {
  background: rgba(201,168,76,0.4);
  opacity: 1;
}
.hero .swiper-pagination-bullet-active {
  background: var(--gold);
}
@media (max-width: 768px) {
  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 34px;
    height: 34px;
  }
  .hero-slide {
    min-height: 420px;
    padding-bottom: 34px;
  }
  .hero-slide-content {
    min-height: 420px;
  }
}

/* 
   SERVICES
 */
.services {
  padding: 52px 24px;
  background: #efefef;
}
.services .section-title { margin-bottom: 28px; }
.services .section-title .pre,
.services .bsky-divider { display: none; }
.services .section-title h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(34px, 3.1vw, 56px);
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #101318;
  background: none;
  -webkit-text-fill-color: initial;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1600px;
  margin: 0 auto;
}
.service-card {
  background: #f4f4f4;
  border: 1px solid rgba(0,0,0,0.38);
  border-radius: 12px;
  padding: 28px 22px 24px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.62);
  box-shadow: 0 8px 22px rgba(0,0,0,0.10);
}

.svc-icon {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #101318;
}
.svc-icon svg {
  width: 132px;
  height: 132px;
  stroke-width: 1.85;
}

.service-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 1.35vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #101318;
  margin-bottom: 6px;
  line-height: 1.1;
}
.service-card .price {
  font-size: clamp(17px, 1.04vw, 27px);
  color: #666666;
  margin-bottom: 22px;
}
.service-card a {
  display: block;
  width: min(86%, 320px);
  margin: 0 auto;
  background: #caa92f;
  color: #ffffff;
  font-size: clamp(18px, 1.1vw, 28px);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: none;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  transition: background-color 0.2s ease;
}
.service-card:hover a { background: #b9971c; }

/* 
   STATS
 */
.stats {
  padding: 54px 24px;
  background: linear-gradient(135deg, #f5f5f5, #f0f0f0, #fafafa);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px; max-width: 860px; margin: 0 auto; text-align: center;
}
.stat-num {
  font-family: 'Cinzel', serif; font-size: clamp(38px, 5vw, 50px); font-weight: 900; line-height: 1;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.4));
}
.stat-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #666666; margin-top: 10px; }

/* 
   PRODUCTS (BATTERIES & TIRES)
 */
.products { padding: 60px 24px; position: relative; }
.products-dark { background: #ffffff; }
.products-dark2 { background: #f9f9f9; }

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px; max-width: 1100px; margin: 0 auto 36px;
}
.product-card {
  background: linear-gradient(145deg, #fafafa, #f5f5f5);
  border: 1px solid rgba(201,168,76,0.2); border-radius: 6px; overflow: hidden;
  transition: all 0.3s;
}
.product-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(201,168,76,0.2); }

.product-img {
  background: linear-gradient(135deg, #f0f0f0, #fafafa);
  height: 170px; display: flex; align-items: center; justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 12px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sale-badge {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, #8b0000, #cc0000);
  color: #fff; font-size: 9px; font-weight: 700;
  padding: 3px 8px; border-radius: 2px;
  font-family: 'Cinzel', serif; letter-spacing: 1px;
}
.product-info { padding: 14px; }
.product-info h4 { font-size: 13px; font-weight: 700; color: #333333; margin-bottom: 8px; line-height: 1.5; }
.product-desc { font-size: 12px; color: #666666; margin-bottom: 12px; line-height: 1.5; }
.product-prices { display: none; }
.price-old { font-size: 11px; color: #999999; text-decoration: line-through; }
.price-new {
  font-family: 'Cinzel', serif; font-size: 14px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.product-info a {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--gold-light); font-size: 9px;
  font-family: 'Cinzel', serif; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px; border-radius: 3px;
  border: 1px solid var(--gold-dark); transition: all 0.2s;
}
.product-card:hover .product-info a { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--dark); }

.view-all { text-align: center; }

/* 
   SERVICE PACKAGES
 */
.packages {
  padding: 72px 24px;
  background: #ffffff;
  position: relative;
}
.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: 900px; margin: 0 auto;
}
.package-card {
  background: linear-gradient(145deg, #fafafa, #f5f5f5);
  border: 1px solid rgba(201,168,76,0.2); border-radius: 8px; overflow: hidden;
  transition: all 0.3s; position: relative;
}
.package-card:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(201,168,76,0.2); transform: translateY(-4px); }
.package-card.featured { border-color: var(--gold); box-shadow: 0 0 30px rgba(201,168,76,0.15); }
.package-featured-badge {
  position: absolute; top: 0; right: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark); font-size: 8px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; font-family: 'Cinzel', serif;
}
.package-head {
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  background: linear-gradient(145deg, #f5f5f5, #f0f0f0);
}
.package-head .type { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: #666666; margin-bottom: 8px; }
.package-head h3 {
  font-family: 'Cinzel', serif; font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: #333333; margin-bottom: 14px;
}
.package-head .was { font-size: 12px; color: #999999; text-decoration: line-through; margin-bottom: 4px; }
.package-head .now {
  font-family: 'Cinzel', serif; font-size: 32px; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.package-body { padding: 20px 24px 24px; }
.package-body ul { list-style: none; }
.package-body li {
  font-size: 12px; color: #666666; padding: 7px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  display: flex; align-items: center; gap: 10px;
}
.package-body li::before { content: ''; color: var(--gold); font-size: 8px; flex-shrink: 0; }
.package-body .book-btn {
  display: block; text-align: center; margin-top: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark); font-family: 'Cinzel', serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 13px; border-radius: 3px; transition: all 0.3s;
  border: none; cursor: pointer;
}
.package-body .book-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); box-shadow: 0 4px 20px rgba(201,168,76,0.4); }

/* 
   SERVICE CONTRACTS
 */
.contracts {
  padding: 60px 24px;
  background: #f9f9f9;
  position: relative;
}
.contracts-tabs {
  display: flex; justify-content: center; gap: 0; margin-bottom: 40px;
  border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; overflow: hidden;
  max-width: 400px; margin-left: auto; margin-right: auto;
}
.contract-tab {
  flex: 1; padding: 12px; text-align: center;
  font-family: 'Cinzel', serif; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  color: #666666; background: transparent; border: none;
  transition: all 0.3s;
}
.contract-tab.active { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--dark); }

.contracts-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.contract-card {
  background: linear-gradient(145deg, #fafafa, #f5f5f5);
  border: 1px solid rgba(201,168,76,0.2); border-radius: 6px; overflow: hidden;
  transition: all 0.3s;
}
.contract-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(201,168,76,0.18); }
.contract-head {
  padding: 22px 20px 16px;
  background: linear-gradient(135deg, #f5f5f5, #f0f0f0);
  border-bottom: 1px solid rgba(201,168,76,0.2); text-align: center;
}
.contract-head .cyl { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: #666666; margin-bottom: 8px; }
.contract-head .contract-name {
  font-family: 'Cinzel', serif; font-size: 14px; font-weight: 700; letter-spacing: 1px;
  color: #333333; text-transform: uppercase; margin-bottom: 12px;
}
.contract-head .c-was { font-size: 11px; color: #999999; text-decoration: line-through; }
.contract-head .c-price {
  font-family: 'Cinzel', serif; font-size: 26px; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.contract-body { padding: 16px 18px 20px; }
.contract-body li {
  font-size: 11px; color: #666666; padding: 6px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  display: flex; align-items: flex-start; gap: 8px; list-style: none;
}
.contract-body li::before { content: ''; color: var(--gold-dark); font-size: 7px; margin-top: 3px; flex-shrink: 0; }
.contract-book {
  display: block; text-align: center; margin-top: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--gold-light); font-family: 'Cinzel', serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 11px; border-radius: 3px;
  border: 1px solid var(--gold-dark); transition: all 0.2s;
}
.contract-book:hover { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #ffffff; }
.contracts-note { text-align: center; margin-top: 36px; color: #666666; font-size: 11px; letter-spacing: 1px; }

/* 
   WHY CHOOSE US
 */
.why {
  padding: 52px 24px;
  background: #ffffff;
}
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.why-card {
  background: linear-gradient(145deg, #fafafa, #f5f5f5);
  border: 1px solid rgba(201,168,76,0.2); border-radius: 6px;
  padding: 32px 24px; position: relative; overflow: hidden;
  transition: all 0.3s;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-light), transparent);
}
.why-card:hover { border-color: var(--gold); box-shadow: 0 8px 28px rgba(201,168,76,0.15); transform: translateY(-4px); }
.why-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}
.why-card .icon svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
  transition: transform 0.3s ease;
}
.why-card:hover .icon svg {
  transform: translateY(-4px) scale(1.08);
}
.why-card h3 {
  font-family: 'Cinzel', serif; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: #333333; margin-bottom: 12px;
}
.why-card p { font-size: 13px; color: #666666; line-height: 1.8; }

/* 
   CAR MAKES
 */
.carmakes {
  padding: 52px 24px;
  background: linear-gradient(135deg, #f5f5f5, #f0f0f0, #fafafa);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.carmakes-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; max-width: 1000px; margin: 0 auto;
}
.make-tag {
  background: linear-gradient(145deg, #fafafa, #f5f5f5);
  border: 1px solid rgba(201,168,76,0.3); border-radius: 3px;
  padding: 9px 20px; font-family: 'Cinzel', serif;
  font-size: 11px; font-weight: 700; color: #8a6a1a;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.2s; cursor: pointer; text-decoration: none; display: inline-block;
}
.make-tag:hover { border-color: var(--gold); color: var(--gold-light); box-shadow: 0 4px 16px rgba(201,168,76,0.2); transform: translateY(-2px); }

/* 
   BRANDS
 */
.brands {
  padding: 60px 24px;
  background: #f9f9f9;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.brands-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; max-width: 900px; margin: 0 auto;
}
.brand-tag {
  background: linear-gradient(145deg, #fafafa, #f5f5f5);
  border: 1px solid rgba(201,168,76,0.3); border-radius: 4px;
  padding: 12px 26px; font-family: 'Cinzel', serif;
  font-size: 13px; font-weight: 700; color: #8a6a1a;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.2s; cursor: pointer;
}
.brand-tag:hover { border-color: var(--gold); color: var(--gold-light); box-shadow: 0 4px 16px rgba(201,168,76,0.2); transform: translateY(-2px); }

/* 
   CTA SECTION
 */
.cta-section {
  padding: 40px 24px; text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(26,92,42,0.08) 0%, transparent 65%),
    linear-gradient(180deg, #ffffff, #fafafa);
  border-top: 1px solid rgba(201,168,76,0.2);
  position: relative;
}
.cta-section::before {
  content: ''; position: absolute; inset: 16px;
  border: 1px solid rgba(201,168,76,0.12); pointer-events: none;
}
.cta-section h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 4vw, 40px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-section p { color: #666666; font-size: 14px; margin-bottom: 34px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--dark); font-family: 'Cinzel', serif;
  font-size: clamp(18px, 3vw, 28px); font-weight: 900;
  padding: 20px 48px; border-radius: 4px; margin-bottom: 20px;
  box-shadow: 0 6px 35px rgba(201,168,76,0.4);
  transition: all 0.3s; letter-spacing: 2px;
}
.cta-phone:hover { transform: translateY(-3px); box-shadow: 0 12px 45px rgba(201,168,76,0.55); }
.cta-sub { font-size: 12px; color: #666666; letter-spacing: 2px; }

/* 
   FOOTER
 */
.footer {
  background:  #0f172a;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 56px 24px 24px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px; max-width: 1100px; margin: 0 auto 40px;
}
.footer-col h4 {
  font-family: 'Cinzel', serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #8a6a1a; margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-col p, .footer-col a {
  font-size: 12px; color: #666666; line-height: 2; display: block;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col .logo-text {
  font-family: 'Cinzel', serif; font-size: 18px; font-weight: 900; letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px;
}

.footer-bottom {
  background: #efefef;
  border-top: 1px solid #dddddd;
  padding-top: 20px; text-align: center;
  font-size: 11px; color: #999999; letter-spacing: 1px;
}

/* 
   WHATSAPP FLOAT
 */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  transition: all 0.3s; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 35px rgba(37,211,102,0.6); }

/* 
   BRANDS SECTION WITH SWIPER
 */
.brands-section {
  background: #f4f4f4;
  padding: 52px 24px;
  text-align: center;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.brands-section .section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold);
  font-family: 'Cinzel', serif;
}

.brands-section .section-subtitle {
  max-width: 750px;
  margin: 0 auto 60px;
  color: var(--gold-dark);
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
}

/* Swiper spacing */
.brandsSwiper {
  padding-bottom: 40px;
}

.brand-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  border: 1px solid rgba(201,168,76,0.15);
}

.brand-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--gold);
}

.brand-logo {
  height: 50px;
  margin-bottom: 15px;
  object-fit: contain;
}

.brand-card h3 {
  margin: 10px 0 20px;
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  font-family: 'Cinzel', serif;
}

.brand-car {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

/* Button */
.all-brands-btn {
  margin-top: 60px;
}

.all-brands-btn a {
  display: inline-block;
  padding: 15px 45px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.all-brands-btn a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #fff8e0);
  box-shadow: 0 6px 25px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

/* Entrance Animations */
.animate-top,
.animate-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-top.show,
.animate-bottom.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* 
   RESPONSIVE
 */
@media (max-width: 1500px) {
  .nav-hamburger { display: none !important; }
  .nav-inner { justify-content: space-between; padding: 10px 12px; gap: 8px; }
  .nav-logo { min-width: 100px; }
  .nav-logo img { height: 90px !important; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow: hidden;
    padding-bottom: 2px;
    padding-left: 12px;
    gap: 4px;
  }
  .nav-links a {
    font-size: 12px;
    padding: 10px 6px 8px;
    letter-spacing: 0.4px;
  }
}
@media (max-width: 768px) {
  .nav-hamburger { display: none !important; }
  .nav-inner { padding: 8px 10px; gap: 8px; }
  .nav-logo { min-width: 90px; }
  .nav-logo img { height: 80px !important; }
  .nav-links a { font-size: 12px; padding: 9px 6px 7px; }
  .services-grid { grid-template-columns: repeat(2, minmax(160px, 1fr)); gap: 14px; }
  .svc-icon { width: 98px; height: 98px; margin-bottom: 12px; }
  .svc-icon svg { width: 84px; height: 84px; }
  .service-card { padding: 16px 12px 14px; }
  .service-card h3 { font-size: 19px; }
  .service-card .price { font-size: 14px; margin-bottom: 14px; }
  .service-card a { font-size: 14px; padding: 9px 14px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contracts-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1360px) {
  .nav-links a { font-size: 12px; padding: 10px 6px 8px; }
  .nav-badge { font-size: 11px; }
}
@media (max-width: 1180px) {
  .btn-book-now { display: none; }
  .nav-links a { font-size: 11px; padding: 10px 5px 8px; }
  .nav-badge { font-size: 10px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero::before { display: none; }
}




/* CUSTOM CONTENT SECTIONS: RANGE / FAQ / ACTIONS / DISTANCE */
.range-services {
  background: linear-gradient(180deg, #ff4c4c 0%, #ff6b6b 55%, #ff8c8c 100%);
  padding: 88px 24px;
}
.range-wrap {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  padding: 36px 34px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}
.range-wrap h2 {
  text-align: center;
  color: #fff;
  margin: 0 0 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
}
.range-wrap h3 {
  margin: 30px 0 12px;
  color: #111;
  font-size: 22px;
  font-weight: 700;
}
.range-wrap p {
  margin: 0 0 12px;
  color: #111;
  line-height: 1.7;
  font-size: 17px;
}

.faq-garage {
  background: #efefef;
  padding: 72px 24px;
}
.faq-wrap {
  max-width: 1360px;
  margin: 0 auto;
}
.faq-wrap h2 {
  margin: 0 0 24px;
  color: #343a40;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(30px, 3.2vw, 56px);
  font-weight: 700;
}
.faq-item {
  border-bottom: 1px solid #d8d8d8;
  background: transparent;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 14px;
  color: #ff1515;
  font-size: clamp(18px, 2vw, 34px);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-arrow {
  color: #ff1515;
  font-size: 26px;
  line-height: 1;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-arrow { transform: rotate(90deg); }
.faq-answer {
  padding: 0 14px 20px;
  font-size: 18px;
  color: #2f2f2f;
  line-height: 1.7;
}

.action-strip {
  padding: 28px 24px;
  background: #efefef;
}
.action-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 28px;
}
.action-pill {
  background: #000;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 26px;
}
.action-pill span:last-child {
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 44px);
  line-height: 1;
}
.action-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.action-icon.red { background: #ff1212; color: #fff; }
.action-icon.green { background: #000; color: #00ff38; border: 2px solid #00ff38; }
.action-icon svg { width: 30px; height: 30px; }

.distance-section {
  background: #efefef;
  padding: 72px 24px;
}
.distance-wrap {
  max-width: 1360px;
  margin: 0 auto;
}
.distance-wrap h2 {
  text-align: center;
  margin: 0 0 28px;
  color: #2d3238;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 3.8vw, 62px);
}
.distance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
}
.distance-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.distance-grid li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 7px 0;
  font-size: 19px;
  color: #4c5560;
}
.distance-grid li svg {
  width: 18px;
  height: 18px;
  color: #ff8b94;
  margin-top: 4px;
  flex-shrink: 0;
}
.distance-map {
  margin-top: 24px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d7d7d7;
}
.distance-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 1000px) {
  .action-wrap { grid-template-columns: 1fr; }
  .distance-grid { grid-template-columns: repeat(2, minmax(200px, 1fr)); }
}
@media (max-width: 640px) {
  .range-wrap { padding: 22px 18px; }
  .range-wrap p { font-size: 15px; }
  .distance-grid { grid-template-columns: 1fr; }
  .distance-grid li { font-size: 16px; }
}

/* LAYOUT FIXES: BRANDS + SERVICES RESPONSIVE ALIGNMENT */
.brands-section {
  padding: 52px 24px 52px;
}
.brands-section .section-subtitle {
  margin: 0 auto 28px;
}
.brandsSwiper,
.brandsSwiper .swiper-wrapper,
.brandsSwiper .swiper-slide {
  height: auto !important;
}
.brandsSwiper .swiper-wrapper {
  align-items: stretch;
}
.brandsSwiper .swiper-slide {
  display: flex;
}
.brand-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}
.brand-logo {
  width: auto;
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
}
.brand-car {
  display: block;
  width: 100%;
  height: 120px;
  max-height: 120px;
  object-fit: contain;
}
.all-brands-btn {
  margin-top: 20px;
}

.services {
  padding: 52px 20px;
}
.services-grid {
  gap: 18px;
}
.service-card {
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card h3 {
  min-height: 2.3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .price {
  min-height: 2.2em;
  margin-bottom: 16px;
}
.service-card a {
  margin-top: auto;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}
@media (max-width: 900px) {
  .brands-section {
    padding: 44px 16px 26px;
  }
  .brand-card {
    min-height: 260px;
    padding: 20px 14px;
  }
  .brand-card h3 {
    font-size: 18px;
    margin: 8px 0 12px;
  }
  .brand-car {
    height: 100px;
    max-height: 100px;
  }
  .services {
    padding: 52px 14px;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 14px;
  }
  .service-card {
    min-height: 360px;
    padding: 18px 12px 14px;
  }
  .svc-icon {
    width: 110px;
    height: 110px;
    margin-bottom: 10px;
  }
  .svc-icon svg {
    width: 86px;
    height: 86px;
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 320px;
  }
}

/* === GLOBAL FIXES === */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; overflow-x: hidden; }

/* === REMOVE GAPS BETWEEN SECTIONS === */
section { margin: 0 !important; }

/* === STICKY HEADER === */
header, .site-header, .nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.nav .nav-links a {
  color: #000000;
}
.nav .nav-links a::after {
  background: #000000;
}

/* === BOOK NOW BUTTON === */
.btn-book-now {
  background: #f59e0b;
  color: #000000;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-book-now:hover { background: #d97706; transform: translateY(-1px); }

/* === MOBILE HAMBURGER === */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #000000;
  background: none;
  border: none;
  margin-left: auto;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  .btn-book-now { display: none; }
  .nav-inner {
    justify-content: space-between !important;
  }
  .nav .nav-links {
    display: none !important;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    padding: 1rem;
  }
  .nav .nav-links.open { display: flex !important; }
  /* Hide scrolling nav links row on mobile — show only via hamburger */
  .nav-inner > .nav-links:not(.open) {
    display: none !important;
  }
}

/* === HERO BUTTONS === */
.btn-primary {
  background: #1a56db;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin: 8px 4px;
  transition: all 0.2s;
}
.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin: 8px 4px;
  transition: all 0.2s;
}
.hero {
  min-height: 100vh;
  overflow: hidden;
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: #0f172a;
}
.hero-slide,
.hero-slide-content {
  min-height: 100vh;
}
body.has-sticky-header .hero {
  padding-top: 0;
}

.section-title,
.section-header h2,
section > .container > h2:first-child,
section > .container > h3:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

section .container {
  padding-top: 0;
  padding-bottom: 0;
}

.about-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #f8fafc;
}
.services {
  padding-top: 52px;
  padding-bottom: 52px;
  background: #ffffff;
}
.service-packages-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #0f172a;
}
.products {
  padding-top: 60px;
  padding-bottom: 60px;
}
#batteries {
  background: #ffffff;
}
#tires {
  background: #0f172a;
}
.contracts {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #1e293b;
}
.testimonials-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #0f172a;
}
.carmakes {
  padding-top: 52px;
  padding-bottom: 52px;
  background: #f8fafc;
}
.range-services {
  background: #ffffff;
}
.faq-garage {
  background: #f1f5f9;
}
.action-strip {
  background: #1a56db;
}
.booking-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #eff6ff;
}
.location-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #ffffff;
}
.distance-section {
  background: #0f172a;
}

/* === SERVICES GRID === */
.services-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, minmax(200px, 1fr)); }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* === ABOUT SECTION === */
.about-section { padding: 64px 0; background: #f8fafc; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; align-items: start; }
.about-text { max-width: 980px; margin: 0 auto; text-align: left; }
.about-rich-text h2 { margin-bottom: 18px; line-height: 1.25; }
.about-rich-text > h2 { text-align: center; }
.about-rich-text h3 {
  margin: 24px 0 10px;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #0f172a;
}
.about-rich-text p {
  margin-bottom: 14px;
  color: #334155;
  line-height: 1.8;
}
.about-checklist {
  list-style: none;
  margin: 10px 0 20px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 10px 18px;
}
.about-checklist li {
  background: #ffffff;
  border: 1px solid #dbe6f6;
  border-radius: 10px;
  padding: 10px 12px;
  color: #1e293b;
  line-height: 1.55;
}
.about-reasons {
  list-style: none;
  margin: 12px 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.about-reasons li {
  margin: 0;
  background: #ffffff;
  border: 1px solid #dbe6f6;
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background-color 0.32s ease;
  animation: aboutCardRise 0.55s ease both;
}
.about-reasons li:nth-child(1) { animation-delay: 0.05s; }
.about-reasons li:nth-child(2) { animation-delay: 0.1s; }
.about-reasons li:nth-child(3) { animation-delay: 0.15s; }
.about-reasons li:nth-child(4) { animation-delay: 0.2s; }
.about-reasons li:nth-child(5) { animation-delay: 0.25s; }
.about-reasons li:nth-child(6) { animation-delay: 0.3s; }
.about-reasons li:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: #34d399;
  background: #f6fffb;
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.18);
}
.about-reason-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #eef4ff, #e1ecff);
  border: 1px solid #c8daf9;
  color: #1d4ed8;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}
.about-reason-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.1;
}
.about-reason-body {
  min-width: 0;
}
.about-reasons li strong {
  display: block;
  margin-bottom: 7px;
  color: #0f172a;
  font-size: 1.05rem;
  line-height: 1.35;
  transition: color 0.25s ease;
}
.about-reason-body > span {
  color: #334155;
  line-height: 1.7;
  display: block;
  transition: color 0.25s ease;
}
.about-reasons li:hover .about-reason-icon {
  transform: translateY(-2px) scale(1.08);
  background: linear-gradient(145deg, #e7fff4, #d6fbe8);
  border-color: #86efac;
  color: #047857;
  box-shadow: 0 8px 18px rgba(16, 185, 129, 0.25);
}
.about-reasons li:hover .about-reason-body > strong {
  color: #065f46;
}
.about-reasons li:hover .about-reason-body > span {
  color: #14532d;
}
.about-serving-card,
.about-serving-item {
  margin: 16px 0 8px;
  background: #ffffff;
  border: 1px solid #dbe6f6;
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-serving-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #eef4ff, #e1ecff);
  border: 1px solid #c8daf9;
  color: #1d4ed8;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}
.about-serving-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.1;
}
.about-serving-body {
  min-width: 0;
}
.about-serving-body > strong {
  display: block;
  margin: 0 0 7px;
  color: #0f172a;
  font-size: 1.05rem;
  line-height: 1.35;
  transition: color 0.25s ease;
}
.about-serving-body > span {
  margin: 0 0 10px;
  color: #334155;
  line-height: 1.7;
  display: block;
  transition: color 0.25s ease;
}
.about-serving-body > span:last-child {
  margin-bottom: 0;
}
.about-serving-item:hover .about-serving-icon {
  transform: translateY(-2px) scale(1.08);
  background: linear-gradient(145deg, #e7fff4, #d6fbe8);
  border-color: #86efac;
  color: #047857;
  box-shadow: 0 8px 18px rgba(16, 185, 129, 0.25);
}
.about-serving-item:hover .about-serving-body > strong {
  color: #065f46;
}
.about-serving-item:hover .about-serving-body > span {
  color: #14532d;
}
.about-cta-line { margin-top: 8px; }
.about-rich-text .about-cta-line {
  text-align: center;
}
.about-rich-text > .btn-primary {
  display: flex;
  width: fit-content;
  margin: 10px auto 0;
}
.about-rich-text {
  text-align: left;
}
@keyframes aboutCardRise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.about-vision-mission {
  margin: 28px 0 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.about-vm-card {
  background: #ffffff;
  border: 1px solid #dbe6f6;
  border-radius: 18px;
  padding: 28px 28px 24px;
}
.about-vm-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-vm-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e9fff3, #d7fce9);
  border: 1px solid #9be7bf;
  color: #047857;
  flex-shrink: 0;
}
.about-vm-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.1;
}
.about-vm-card p {
  margin: 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .about-checklist { grid-template-columns: 1fr; }
  .about-reasons { grid-template-columns: 1fr; }
  .about-vision-mission { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .about-section { padding: 52px 0; }
  .about-rich-text h2 { font-size: 1.75rem; line-height: 1.25; }
  .about-rich-text h3 { font-size: 1.08rem; }
  .about-reasons li { padding: 16px 14px; }
  .about-reason-icon { width: 38px; height: 38px; }
  .about-reason-icon svg { width: 20px; height: 20px; }
  .about-serving-card,
  .about-serving-item { padding: 16px 14px; }
  .about-serving-icon { width: 38px; height: 38px; }
  .about-serving-icon svg { width: 20px; height: 20px; }
  .about-vm-icon { width: 34px; height: 34px; }
  .about-vm-icon svg { width: 18px; height: 18px; }
}

/* === TESTIMONIALS === */
.ceo-message-section {
  padding: 64px 0;
  background: #f8fafc;
}
.ceo-message-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}
.ceo-message-image-wrap {
  background: #ffffff;
  border: 1px solid #dbe6f6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.ceo-message-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.ceo-message-content {
  background: #ffffff;
  border: 1px solid #dbe6f6;
  border-radius: 18px;
  padding: 30px 30px 26px;
}
.ceo-message-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  line-height: 1.2;
  color: #0f172a;
}
.ceo-message-content p {
  margin: 0 0 14px;
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.8;
}
.ceo-message-content p:last-child { margin-bottom: 0; }
.testimonials-section { padding: 64px 0; background: #0f172a; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.testimonial-card .stars { font-size: 1.2rem; margin-bottom: 12px; }
.testimonial-card p { color: #374151; line-height: 1.7; margin-bottom: 16px; }
.reviewer strong { display: block; color: #0f172a; }
.reviewer span { color: #6b7280; font-size: 0.85rem; }
@media (max-width: 768px) {
  .ceo-message-section { padding: 48px 0; }
  .ceo-message-grid { grid-template-columns: 1fr; gap: 18px; }
  .ceo-message-image { min-height: 280px; }
  .ceo-message-content { padding: 22px 18px 20px; }
  .ceo-message-content h2 { font-size: 1.55rem; }
  .ceo-message-content p { font-size: 1rem; line-height: 1.75; }
  .testimonials-grid { grid-template-columns: 1fr; }
}


.booking-title {
  margin: 0;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.12;
  color: #0f172a;
}
.booking-subtitle {
  margin: 14px auto 0;
  text-align: center;
  max-width: 760px;
  font-family: "Raleway", sans-serif;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.5;
  color: #1f2937;
}
@media (max-width: 768px) {
  .booking-title { font-size: clamp(26px, 7vw, 36px); }
  .booking-subtitle { font-size: clamp(15px, 4.2vw, 19px); }
}
.booking-form { max-width: 800px; margin: 40px auto 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-weight: 600; margin-bottom: 6px; color: #1e293b; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #1a56db;
}
.form-group input.error, .form-group select.error { border-color: #ef4444; }
.btn-submit {
  background: #f59e0b;
  color: #0f172a;
  padding: 16px 48px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
  width: 100%;
  transition: background 0.2s;
}
.btn-submit:hover { background: #d97706; }
.booking-success {
  background: #dcfce7;
  border: 2px solid #16a34a;
  color: #15803d;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* === LOCATION SECTION === */
.location-section { padding: 64px 0; background: white; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 40px; }
.info-item { margin-bottom: 16px; font-size: 1rem; line-height: 1.6; color: #374151; }
.info-item a { color: #1a56db; text-decoration: none; }
@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* === BADGE POPULAR === */
.badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.1)}
}

/* === MODAL === */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
}

/* === BRAND LOGO FALLBACK === */
.brand-logo-fallback {
  background: #f59e0b;
  color: #0f172a;
  font-weight: 900;
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* spacing handled per-section class */

.contracts + .testimonials-section,
.testimonials-section + .carmakes {
  padding-top: 40px;
}

.about-section + .services,
.location-section + .booking-section {
  padding-top: 40px;
}

@media (max-width: 768px) {
  .about-section,
  .services,
  .service-packages-section,
  .products,
  .contracts,
  .why,
  .testimonials-section,
  .carmakes,
  .brands-section,
  .booking-section,
  .location-section,
  .cta-section {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .range-services,
  .faq-garage,
  .distance-section {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .action-strip {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

/* ============================================================
   SERVICE PACKAGES â€” NEW DESIGN
   ============================================================ */
.service-packages-section {
  background: #0f172a;
  padding: 72px 0;
}
.sp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.sp-header {
  text-align: center;
  margin-bottom: 52px;
}
.sp-eyebrow {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: #f59e0b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(245,158,11,0.25);
}
.sp-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.sp-subtitle {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.sp-card {
  background: #1e293b;
  border-radius: 20px;
  position: relative;
  border: 2px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.sp-card--featured {
  border-color: #f59e0b;
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(245,158,11,0.22);
}
.sp-card--featured:hover {
  transform: translateY(-14px);
}
.sp-card__popular-badge {
  background: #f59e0b;
  color: #0f172a;
  font-size: 0.73rem;
  font-weight: 800;
  text-align: center;
  padding: 8px 0;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.sp-card__header {
  padding: 28px 28px 0;
  text-align: center;
}
.sp-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.sp-badge--bronze { background: rgba(205,127,50,0.15); color: #cd7f32; border: 1px solid rgba(205,127,50,0.35); }
.sp-badge--silver { background: rgba(192,192,192,0.12); color: #c0c0c0; border: 1px solid rgba(192,192,192,0.35); }
.sp-badge--gold   { background: rgba(255,215,0,0.12);   color: #ffd700; border: 1px solid rgba(255,215,0,0.35); }
.sp-card__icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
  display: block;
}
.sp-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f1f5f9;
  margin: 0 0 6px;
}
.sp-card__tagline {
  font-size: 0.84rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}
.sp-card__price {
  padding: 20px 28px 0;
  text-align: center;
}
.sp-price__currency {
  font-size: 1rem;
  font-weight: 700;
  color: #94a3b8;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.sp-price__amount {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.sp-card--featured .sp-price__amount { color: #f59e0b; }
.sp-card--gold .sp-price__amount     { color: #ffd700; }
.sp-price__period {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 2px;
}
.sp-price__was {
  display: inline-block;
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 6px;
  background: rgba(239,68,68,0.1);
  padding: 2px 10px;
  border-radius: 20px;
}
.sp-card__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 20px 28px;
}
.sp-features {
  list-style: none;
  margin: 0;
  padding: 0 28px;
  flex: 1;
}
.sp-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.87rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sp-feature:last-child { border-bottom: none; }
.sp-feature__icon { font-size: 0.82rem; flex-shrink: 0; width: 18px; text-align: center; }
.sp-feature--included span:last-child { color: #cbd5e1; }
.sp-feature--excluded span:last-child { color: #475569; text-decoration: line-through; }
.sp-addon-block {
  margin: 16px 28px;
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.14);
  border-radius: 10px;
  padding: 12px 16px;
}
.sp-addon-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #f59e0b;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sp-addons {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-addons li {
  font-size: 0.81rem;
  color: #94a3b8;
  padding: 3px 0;
}
.sp-addons li::before {
  content: '+ ';
  color: #f59e0b;
  font-weight: 700;
}
.sp-card__footer {
  padding: 20px 28px 28px;
  margin-top: auto;
}
.sp-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.sp-btn--bronze {
  background: rgba(205,127,50,0.12);
  color: #cd7f32;
  border: 2px solid rgba(205,127,50,0.35);
}
.sp-btn--bronze:hover { background: #cd7f32; color: #0f172a; }
.sp-btn--silver {
  background: #f59e0b;
  color: #0f172a;
  border: 2px solid #f59e0b;
}
.sp-btn--silver:hover { background: #d97706; border-color: #d97706; }
.sp-btn--gold {
  background: rgba(255,215,0,0.1);
  color: #ffd700;
  border: 2px solid rgba(255,215,0,0.35);
}
.sp-btn--gold:hover { background: #ffd700; color: #0f172a; }
.sp-note {
  text-align: center;
  color: #64748b;
  font-size: 0.87rem;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sp-note a { color: #f59e0b; text-decoration: none; }
.sp-note a:hover { text-decoration: underline; }

/* Responsive â€” Service Packages */
@media (max-width: 1024px) {
  .sp-card--featured { transform: translateY(0); box-shadow: 0 12px 40px rgba(245,158,11,0.2); }
}
@media (max-width: 900px) {
  .sp-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 20px; }
  .sp-card--featured { transform: translateY(0); }
}
@media (max-width: 480px) {
  .service-packages-section { padding: 48px 0; }
  .sp-container { padding: 0 16px; }
  .sp-card__header,
  .sp-features,
  .sp-card__footer,
  .sp-card__price { padding-left: 18px; padding-right: 18px; }
  .sp-card__divider { margin: 14px 18px; }
  .sp-addon-block { margin: 12px 18px; }
  .sp-price__amount { font-size: 2.4rem; }
}

/* ============================================================
   SERVICE CONTRACT â€” NEW DESIGN
   ============================================================ */
.contracts-section,
.contracts {
  background: #1e293b;
  padding: 72px 0;
}
.sc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.sc-header {
  text-align: center;
  margin-bottom: 40px;
}
.sc-eyebrow {
  display: inline-block;
  background: rgba(96,165,250,0.1);
  color: #60a5fa;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(96,165,250,0.25);
}
.sc-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
}
.sc-subtitle {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}
.sc-benefits-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  background: rgba(15,23,42,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 36px;
}
.sc-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.sc-benefit__icon { font-size: 1.4rem; }
.sc-benefit__text {
  font-size: 0.73rem;
  color: #94a3b8;
  font-weight: 500;
  line-height: 1.3;
}
.sc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(255,255,255,0.08);
  margin-bottom: 0;
}
.sc-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 16px 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  margin-bottom: -2px;
  border-radius: 8px 8px 0 0;
}
.sc-tab:hover { background: rgba(255,255,255,0.03); }
.sc-tab__label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #64748b;
  transition: color 0.2s;
}
.sc-tab__sub {
  display: block;
  font-size: 0.76rem;
  color: #475569;
  margin-top: 3px;
  transition: color 0.2s;
}
.sc-tab--active {
  background: rgba(245,158,11,0.07);
  border-bottom-color: #f59e0b;
}
.sc-tab--active .sc-tab__label { color: #f59e0b; }
.sc-tab--active .sc-tab__sub   { color: rgba(245,158,11,0.65); }
.sc-panel {
  display: none;
  background: rgba(15,23,42,0.35);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 32px;
}
.sc-panel--active { display: block; }
.sc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.sc-price-card {
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sc-price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.sc-price-card--japanese {
  background: rgba(220,38,38,0.06);
  border-color: rgba(220,38,38,0.18);
}
.sc-price-card--american {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.18);
}
.sc-price-card--german {
  background: rgba(234,179,8,0.06);
  border-color: rgba(234,179,8,0.18);
}
.sc-price-card__origin {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 10px;
}
.sc-price-card__amount {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1;
}
.sc-price-card--japanese .sc-price-card__amount { color: #fca5a5; }
.sc-price-card--american .sc-price-card__amount { color: #93c5fd; }
.sc-price-card--german   .sc-price-card__amount { color: #fde047; }
.sc-price-card__examples {
  font-size: 0.77rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 16px;
}
.sc-price-card__btn {
  display: block;
  background: rgba(255,255,255,0.07);
  color: #e2e8f0;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.sc-price-card__btn:hover {
  background: #f59e0b;
  color: #0f172a;
  border-color: #f59e0b;
}
.sc-includes {
  background: rgba(255,255,255,0.025);
  border-radius: 12px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.06);
}
.sc-includes__title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0 0 14px;
}
.sc-includes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 28px;
}
.sc-includes__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.4;
}
.sc-includes__list li span { flex-shrink: 0; }
.sc-service-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.sc-service-tab {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  color: #94a3b8;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.sc-service-tab:hover { background: rgba(255,255,255,0.05); }
.sc-service-tab--active {
  border-color: rgba(245,158,11,0.55);
  background: rgba(245,158,11,0.10);
  color: #f59e0b;
}
.sc-service-panel { display: none; }
.sc-service-panel--active { display: block; }

/* ── Redesigned service table ── */
.sc-service-table {
  width: 100%;
  border-collapse: collapse;
}
.sc-service-table thead tr {
  background: rgba(255,255,255,0.04);
}
.sc-service-table th {
  padding: 11px 10px;
  color: #60a5fa;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 2px solid rgba(96,165,250,0.2);
}
.sc-service-table th:nth-child(2),
.sc-service-table th:nth-child(3) {
  text-align: center;
  width: 86px;
}
.sc-service-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.sc-service-table tbody tr:last-child { border-bottom: none; }
.sc-service-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.sc-service-table td {
  padding: 10px 10px;
  color: #cbd5e1;
  font-size: 0.87rem;
  line-height: 1.4;
}
.sc-service-table td:nth-child(2),
.sc-service-table td:nth-child(3) {
  text-align: center;
}
/* icon badges */
.sc-tick, .sc-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}
.sc-tick  { background: rgba(46,204,113,0.12); color: #2ecc71; border: 1px solid rgba(46,204,113,0.25); }
.sc-cross { background: rgba(231,76,60,0.12);  color: #e74c3c; border: 1px solid rgba(231,76,60,0.25); }
/* legend */
.sc-table-legend {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.sc-table-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: #64748b;
}
.sc-bnpl {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(26,86,219,0.12), rgba(245,158,11,0.08));
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.sc-bnpl__icon { font-size: 2rem; flex-shrink: 0; }
.sc-bnpl__text { flex: 1; min-width: 180px; }
.sc-bnpl__text strong {
  display: block;
  color: #f1f5f9;
  font-size: 1rem;
  margin-bottom: 3px;
}
.sc-bnpl__text span { font-size: 0.86rem; color: #94a3b8; }
.sc-bnpl__btn {
  background: #f59e0b;
  color: #0f172a;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.sc-bnpl__btn:hover { background: #d97706; }

/* Responsive â€” Service Contract */
@media (max-width: 1024px) {
  .sc-benefits-strip { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 768px) {
  .contracts-section,
  .contracts { padding: 52px 0; }
  .sc-pricing-grid { grid-template-columns: 1fr; gap: 14px; }
  .sc-includes__list { grid-template-columns: 1fr; }
  .sc-service-table th,
  .sc-service-table td { font-size: 0.75rem; }
  .sc-panel { padding: 20px 16px; }
  .sc-tab__label { font-size: 0.9rem; }
  .sc-tab__sub { font-size: 0.7rem; }
  .sc-bnpl { flex-direction: column; text-align: center; }
  .sc-bnpl__btn { width: 100%; text-align: center; }
  .sc-bnpl__text { min-width: unset; }
}
@media (max-width: 560px) {
  .sc-benefits-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sc-container { padding: 0 16px; }
  .sc-price-card { padding: 18px 14px; }
  .sc-price-card__amount { font-size: 1.6rem; }
  .sc-panel { padding: 16px 12px; }
}

/* ── Service Cards Section ── */
.svc-cards-section {
  background: #f4f4f4;
  padding: 64px 24px;
}
.svc-cards-section .section-title {
  text-align: center;
  margin-bottom: 44px;
}
.svc-cards-section .section-title h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #111827;
  background: none;
  -webkit-text-fill-color: initial;
  letter-spacing: 1px;
}
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.svc-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 0 0 26px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border: 1px solid #e8e8e8;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.13);
  border-color: #c9a84c;
}
.svc-card-img {
  width: 100%;
  height: 160px;
  background: #f0f0f0;
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  position: relative;
  margin-bottom: 18px;
}
.svc-card-img img {
  width: 140px;
  height: 160px;
  object-fit: contain;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}
.svc-card:hover .svc-card-img img {
  transform: translateX(-50%) translateY(-6px) scale(1.05);
}
.svc-card-name {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin: 16px 12px 10px;
  line-height: 1.25;
}
.svc-card-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
  padding: 0 16px;
  flex: 1;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .svc-cards-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .svc-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .svc-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .svc-card-img { height: 130px; }
  .svc-card-img img { width: 110px; height: 130px; }
}





/* === FOOTER MATCH HEADER + BIGGER CONTENT (FORCED) === */
.footer,
footer.footer {
  background: #efefef !important;
}
.footer-bottom,
footer .footer-bottom {
  background: #efefef !important;
  border-top: 1px solid #dddddd !important;
  padding-top: 18px !important;
  font-size: 15px !important;
}
.footer-grid {
  max-width: 1280px !important;
  gap: 34px !important;
}
.footer-col h4 {
  font-size: 18px !important;
  letter-spacing: 2px !important;
  margin-bottom: 16px !important;
}
.footer-col p,
.footer-col a {
  font-size: 15px !important;
  line-height: 1.75 !important;
}
.footer-col p strong,
.footer-col a strong {
  font-size: inherit !important;
}
.footer-col img {
  height: 80px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
}
.footer-contact-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.footer-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.08);
  color: #8a6a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.footer-icon svg {
  width: 14px !important;
  height: 14px !important;
  stroke-width: 2.2;
}
@media (max-width: 768px) {
  .footer-col h4 { font-size: 16px !important; }
  .footer-col p,
  .footer-col a { font-size: 14px !important; }
  .footer-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }
  .footer-icon svg {
    width: 12px !important;
    height: 12px !important;
  }
  .footer-bottom,
  footer .footer-bottom { font-size: 12px !important; }
}



/* === BENEFITS LIST VISIBILITY FIX === */
.sc-benefits-list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(96,165,250,0.15);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
}
.sc-benefits-list li {
  font-size: 0.84rem;
  color: #e2e8f0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.sc-benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: 700;
}
@media (max-width: 560px) {
  .sc-benefits-list { grid-template-columns: 1fr; }
}

/* === CONTRACT BENEFITS BRIGHT TEXT FIX (LIVE OVERRIDE) === */
.service-contract-section .sc-includes {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(96,165,250,0.22) !important;
}
.service-contract-section .sc-includes__title {
  color: #7cc0ff !important;
}
.service-contract-section .sc-benefits-list li,
.service-contract-section .sc-includes__list li {
  color: #e8eef8 !important;
  opacity: 1 !important;
}
.service-contract-section .sc-benefits-list li::before {
  color: #34d399 !important;
}

/* === CONTRACT INCLUDES: HIGH CONTRAST TEXT === */
.contracts .sc-includes__title,
.service-contract-section .sc-includes__title {
  color: #5fb0ff !important;
}
.contracts .sc-benefits-list li,
.contracts .sc-includes__list li,
.service-contract-section .sc-benefits-list li,
.service-contract-section .sc-includes__list li {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.contracts .sc-benefits-list li::before,
.service-contract-section .sc-benefits-list li::before {
  color: #2ee58f !important;
}

/* === DESKTOP: FORCE 2 ROWS x 3 CARDS === */
@media (min-width: 1025px) {
  #batteries .products-grid,
  #tires .products-grid,
  .why .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* === MOBILE ONLY: NAV DROPDOWN + FOOTER FIT === */
@media (max-width: 768px) {
  .nav {
    position: sticky;
    top: 0;
    z-index: 9999;
  }
  .nav-inner {
    position: relative;
    justify-content: space-between !important;
    align-items: center;
  }
  .hamburger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    font-size: 1.4rem;
    line-height: 1;
    padding: 6px 10px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
  }
  .nav .nav-links {
    display: none !important;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0;
    padding: 10px 12px 14px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  }
  .nav .nav-links.open {
    display: flex !important;
  }
  .nav .nav-links li {
    width: 100%;
  }
  .nav .nav-links a {
    width: 100%;
    justify-content: flex-start;
    color: #000000 !important;
    font-size: 14px !important;
    padding: 12px 8px !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav .nav-links li:last-child a {
    border-bottom: 0;
  }
  .nav .nav-links a::after {
    display: none !important;
  }
  .btn-book-now {
    display: none !important;
  }

  .footer {
    padding: 36px 16px 16px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    max-width: 100% !important;
    margin: 0 auto 18px !important;
  }
  .footer-col {
    min-width: 0;
  }
  .footer-col h4 {
    font-size: 16px !important;
    letter-spacing: 2px !important;
    margin-bottom: 12px !important;
  }
  .footer-col p,
  .footer-col a {
    font-size: 14px !important;
    line-height: 1.6 !important;
    word-break: break-word;
  }
  .footer-col img {
    height: 80px !important;
    max-width: 220px !important;
    object-fit: contain !important;
  }
  .footer-bottom,
  footer .footer-bottom {
    font-size: 13px !important;
    line-height: 1.5 !important;
    padding: 14px 12px 0 !important;
    word-break: break-word;
  }
}

/* Force service cards layout if other generic rules override it */
.svc-cards-grid {
  display: grid !important;
}

/* === HOME HEADER (PORTED FROM home.html) === */
.site-header {
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  overflow: visible;
}

.site-header .header-top {
  max-width: 1320px;
  margin: 0 auto;
  min-height: 160px;
  padding: 20px 20px;
  display: grid;
  grid-template-columns: 280px minmax(420px, 1fr) 320px;
  gap: 20px;
  align-items: center;
}

.site-header .header-logo {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-header .header-logo img {
  max-height: 100%;
  width: auto;
  display: block;
}

.site-header .header-search {
  display: flex;
  min-height: 66px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(17, 24, 39, 0.08);
}

.site-header .header-search input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 16px;
  padding: 0 22px;
  color: #111827;
}

.site-header .header-search button {
  width: 78px;
  border: 0;
  background: #6b7280;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.site-header .header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.site-header .header-contact a {
  color: #1f2937;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
  text-align: right;
}

.site-header .header-contact a:hover {
  color: #0f766e;
}

.site-header .header-book-now {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 6px;
  background: #d97706;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-header .header-book-now:hover {
  background: #b45309;
  color: #fff !important;
}

.site-header .nav {
  border-top: 1px solid #eceff3;
  box-shadow: none !important;
}

.site-header .nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: flex-start !important;
}

.site-header .nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 6px 24px;
  overflow: visible;
  white-space: normal;
  padding-left: 0;
}

.site-header .nav-links a {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  padding: 14px 0 12px;
  letter-spacing: 0.02em;
  position: relative;
}

.site-header .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: currentColor;
  transition: right 0.2s ease;
}

.site-header .nav-links a:hover::after {
  right: 0;
}

@media (max-width: 1024px) {
  .site-header .header-top {
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
    grid-template-areas:
      "logo contact"
      "search search";
    gap: 14px 18px;
    padding: 12px 16px;
    min-height: 0;
  }

  .site-header .header-logo {
    grid-area: logo;
    height: 110px;
  }

  .site-header .header-search {
    grid-area: search;
    width: 100%;
    margin: 0 auto;
  }

  .site-header .header-contact {
    grid-area: contact;
    align-items: flex-end;
  }

  .site-header .nav-inner {
    padding: 0 16px;
  }

  .site-header .nav-links {
    gap: 4px 16px;
  }

  .site-header .nav-links a {
    padding: 12px 0 10px;
  }
}

@media (max-width: 768px) {
  .site-header {
    display: grid;
    grid-template-areas:
      "logo"
      "search"
      "menu"
      "contact";
    padding: 10px 12px 0;
    row-gap: 10px;
  }

  .site-header .header-top {
    display: contents;
  }

  .site-header .header-logo {
    grid-area: logo;
    height: 96px;
    justify-content: center;
  }

  .site-header .header-search {
    grid-area: search;
    width: 100%;
    min-height: 54px;
    max-width: none;
    margin: 0;
  }

  .site-header .nav {
    grid-area: menu;
    border-top: 1px solid #eceff3;
  }

  .site-header .nav-inner {
    padding: 0;
  }

  .site-header .nav-links {
    gap: 0;
    justify-content: flex-start;
  }

  .site-header .nav-links a {
    padding: 12px 0;
  }

  .site-header .header-contact {
    grid-area: contact;
    align-items: center;
    margin-bottom: 10px;
  }

  .site-header .header-contact a {
    text-align: center;
  }

  .site-header .header-search input {
    padding: 0 14px;
    font-size: 15px;
  }
}
.svc-card {
  display: flex !important;
  text-decoration: none !important;
}
.svc-card-name,
.svc-card-desc {
  color: #111827 !important;
}
.svc-card-img img {
  width: 140px !important;
  height: 160px !important;
  object-fit: contain !important;
}
