/* =============================================
   SD CAR SERVICES - MAIN STYLESHEET
   Brand: sdcarservices.co.uk
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
    --gold: #c8922a;
    --gold-light: #e8b84b;
    --gold-dark: #a0711e;
    --dark: #0b0b0b;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --dark-4: #222222;
    --light: #f5f5f5;
    --white: #ffffff;
    --grey: #888888;
    --grey-light: #cccccc;
    --red: #e63946;
    --font-display: 'Bebas Neue', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 30px rgba(0,0,0,0.4);
    --radius: 4px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); letter-spacing: 1px; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; font-family: var(--font-condensed); letter-spacing: 2px; text-transform: uppercase; }
p { font-size: 1.05rem; color: var(--grey-light); font-weight: 300; }

/* ---- SECTION TITLES ---- */
.section-label {
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}
.section-title { color: var(--white); margin-bottom: 16px; }
.section-subtitle { max-width: 600px; margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.gold { color: var(--gold); }
.section { padding: 96px 0; }
.section--dark { background: var(--dark-2); }
.section--darker { background: var(--dark-3); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
}
.btn-gold {
    background: var(--gold);
    color: var(--dark);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 146, 42, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--dark-3);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===========================
   TOP BAR
=========================== */
.topbar {
    background: var(--dark-4);
    border-bottom: 1px solid rgba(200,146,42,0.2);
    padding: 9px 0;
    font-size: 0.82rem;
    font-family: var(--font-condensed);
    letter-spacing: 0.5px;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar__left, .topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar a, .topbar span { color: var(--grey-light); }
.topbar a:hover { color: var(--gold); }
.topbar .sep { color: rgba(255,255,255,0.2); }
.topbar i { color: var(--gold); margin-right: 5px; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
    background: rgba(11,11,11,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(200,146,42,0.15);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.navbar__logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 1px;
    display: flex;
    align-items: baseline;
    gap: 3px;
}
.logo-sd { color: var(--gold); font-size: 2rem; }
.logo-car { color: var(--white); }
.logo-services { color: var(--grey); font-size: 1.2rem; }
.navbar__menu ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.navbar__menu ul li { position: relative; }
.navbar__menu ul li a {
    font-family: var(--font-condensed);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey-light);
    padding: 8px 14px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 5px;
}
.navbar__menu ul li a:hover,
.navbar__menu ul li a.active { color: var(--gold); }
.navbar__menu .fa-chevron-down { font-size: 0.65rem; transition: var(--transition); }
.navbar__menu li:hover .fa-chevron-down { transform: rotate(180deg); }
.btn-nav-quote {
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 9px 20px !important;
    font-weight: 700 !important;
}
.btn-nav-quote:hover {
    background: var(--gold-light) !important;
    box-shadow: 0 4px 16px rgba(200,146,42,0.4);
}
/* Dropdown - vertical list */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--dark-2);
    border: 1px solid rgba(200,146,42,0.25);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 8px 8px;
    min-width: 220px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    z-index: 999;
    display: flex;
    flex-direction: column;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li { display: block; width: 100%; }
.dropdown li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem !important;
    padding: 10px 18px !important;
    letter-spacing: 0.3px !important;
    text-transform: none !important;
    color: var(--grey-light) !important;
    border-left: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.dropdown li a::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.5;
    transition: var(--transition);
}
.dropdown li a:hover {
    color: var(--gold) !important;
    background: rgba(200,146,42,0.07) !important;
    border-left-color: var(--gold);
    padding-left: 22px !important;
}
.dropdown li a:hover::before { opacity: 1; }
/* Burger */
.navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.navbar__burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: left;
}
.navbar__burger.open span:nth-child(1) { transform: rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: rotate(-45deg); }

/* ===========================
   HERO SECTION
=========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/mechanic-wheel-2.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(11,11,11,0.97) 0%,
        rgba(11,11,11,0.88) 50%,
        rgba(11,11,11,0.4) 100%
    );
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 60px 0;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200,146,42,0.12);
    border: 1px solid rgba(200,146,42,0.35);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-condensed);
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease both;
}
.hero__badge i { font-size: 0.7rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.2s ease both;
}
.hero h1 span { color: var(--gold); display: block; }
.hero__sub {
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s 0.4s ease both;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s 0.6s ease both;
}
.hero__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.8s ease both;
}
.hero__stat-item { }
.hero__stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
}
.hero__stat-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    font-family: var(--font-condensed);
}
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey);
    animation: bounce 2s infinite;
}
.hero__scroll i { color: var(--gold); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===========================
   WHY CHOOSE US STRIP
=========================== */
.why-strip {
    background: var(--gold);
    padding: 0;
}
.why-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.why-strip__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid rgba(0,0,0,0.12);
    transition: var(--transition);
}
.why-strip__item:last-child { border-right: none; }
.why-strip__item:hover { background: rgba(0,0,0,0.08); }
.why-strip__icon {
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--dark);
}
.why-strip__text h5 {
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.why-strip__text p {
    font-size: 0.82rem;
    color: rgba(0,0,0,0.6);
    font-weight: 400;
}

/* ===========================
   SERVICES SECTION (Home)
=========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    group: true;
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.service-card__img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.08); }
.service-card__body {
    padding: 24px;
}
.service-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(200,146,42,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 14px;
    transition: var(--transition);
}
.service-card:hover .service-card__icon {
    background: var(--gold);
    color: var(--dark);
}
.service-card h3 {
    font-family: var(--font-condensed);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.service-card p { font-size: 0.92rem; margin-bottom: 18px; }
.service-card__link {
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.service-card__link i { transition: var(--transition); }
.service-card:hover .service-card__link i { transform: translateX(4px); }

/* ===========================
   MOBILE HIGHLIGHT BANNER
=========================== */
.mobile-highlight {
    background: linear-gradient(135deg, #1a1200 0%, var(--dark-3) 100%);
    border: 1px solid rgba(200,146,42,0.3);
    border-radius: 12px;
    padding: 40px 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 0;
}
.mobile-highlight__icon {
    width: 80px;
    height: 80px;
    background: rgba(200,146,42,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2.2rem;
    flex-shrink: 0;
    border: 2px solid rgba(200,146,42,0.3);
}
.mobile-highlight__content h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 10px; }
.mobile-highlight__content p { font-size: 0.95rem; }
.mobile-highlight__numbers { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
.mobile-num-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--gold);
    color: var(--dark);
    padding: 14px 22px;
    border-radius: 8px;
    min-width: 230px;
    transition: var(--transition);
}
.mobile-num-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.mobile-num-btn i { font-size: 1.2rem; flex-shrink: 0; }
.mobile-num-btn .label {
    display: block;
    font-size: 0.72rem;
    font-family: var(--font-condensed);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
    color: rgba(11,11,11,0.7);
}
.mobile-num-btn .num {
    display: block;
    font-family: var(--font-condensed);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark);
}

/* MOT Wide Card */
.mot-card {
    background: var(--dark-3);
    border: 1px solid rgba(200,146,42,0.25);
    border-radius: 10px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.mot-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(200,146,42,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.6rem;
    flex-shrink: 0;
}
.mot-card__body { flex: 1; }
.mot-card__body h3 { font-family: var(--font-condensed); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.mot-card__body p { font-size: 0.9rem; }

@media (max-width: 1024px) {
    .mobile-highlight { grid-template-columns: 1fr; text-align: center; }
    .mobile-highlight__icon { margin: 0 auto; }
    .mobile-highlight__numbers { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .mobile-num-btn { min-width: auto; flex: 1; min-width: 200px; }
    .mot-card { flex-direction: column; text-align: center; }
}

/* ===========================
   ABOUT SECTION (Home)
=========================== */
.about-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-home__imgs {
    position: relative;
    height: 520px;
}
.about-home__img1 {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 80%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.about-home__img2 {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 55%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 4px solid var(--dark-2);
}
.about-home__badge {
    position: absolute;
    bottom: 90px;
    left: -16px;
    background: var(--gold);
    color: var(--dark);
    padding: 16px 20px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}
.about-home__badge-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    display: block;
}
.about-home__badge-label {
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}
.about-home__text {}
.features-list { margin: 28px 0; display: grid; gap: 12px; }
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(200,146,42,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.85rem;
}
.feature-text h5 {
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}
.feature-text p { font-size: 0.88rem; }

/* ===========================
   PROCESS SECTION
=========================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 56px;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(200,146,42,0.3) 100%);
}
.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.process-step__num {
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    border: 4px solid var(--dark-2);
    box-shadow: 0 0 0 2px var(--gold);
}
.process-step h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 700;
}
.process-step p { font-size: 0.88rem; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: rgba(200,146,42,0.4);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.testimonial-card__quote {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 0.8;
    font-family: Georgia, serif;
    margin-bottom: 16px;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--dark);
}
.testimonial-card__name {
    font-family: var(--font-condensed);
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}
.testimonial-card__stars { color: var(--gold); font-size: 0.8rem; }

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
    background: linear-gradient(135deg, #1a1200 0%, #0b0b0b 50%, #1a1200 100%);
    border-top: 1px solid rgba(200,146,42,0.2);
    border-bottom: 1px solid rgba(200,146,42,0.2);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 70%);
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,146,42,0.06) 0%, transparent 70%);
}
.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-inner h2 { margin-bottom: 10px; }
.cta-inner p { font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===========================
   ABOUT PAGE
=========================== */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/team-garage.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
}
.page-hero__content { position: relative; z-index: 2; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--grey);
    margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; color: var(--gold); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-stack { position: relative; height: 480px; }
.about-img-stack img:first-child {
    position: absolute; top: 0; left: 0;
    width: 80%; height: 85%;
    object-fit: cover; border-radius: 8px;
}
.about-img-stack img:last-child {
    position: absolute; bottom: 0; right: 0;
    width: 60%; height: 60%;
    object-fit: cover; border-radius: 8px;
    border: 4px solid var(--dark);
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.team-card { background: var(--dark-3); border-radius: 10px; overflow: hidden; transition: var(--transition); border: 1px solid rgba(255,255,255,0.05); }
.team-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.team-card__img { height: 260px; overflow: hidden; }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-card__img img { transform: scale(1.06); }
.team-card__body { padding: 24px; }
.team-card__name { font-family: var(--font-condensed); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-card__role { font-size: 0.85rem; color: var(--gold); font-family: var(--font-condensed); letter-spacing: 1px; text-transform: uppercase; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; padding: 36px 28px; text-align: center; transition: var(--transition); }
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-card__icon { width: 64px; height: 64px; background: rgba(200,146,42,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.6rem; margin: 0 auto 20px; }
.value-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { font-size: 0.9rem; }

/* ===========================
   SERVICES PAGE
=========================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail__img { border-radius: 10px; overflow: hidden; height: 380px; }
.service-detail__img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail__icon {
    width: 64px; height: 64px;
    background: rgba(200,146,42,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.6rem; margin-bottom: 20px;
}
.service-detail h2 { margin-bottom: 16px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.service-detail p { margin-bottom: 20px; }
.service-list { display: grid; gap: 8px; margin-bottom: 28px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--grey-light); }
.service-list li i { color: var(--gold); font-size: 0.75rem; }

/* ===========================
   CONTACT PAGE
=========================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info__item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
    width: 48px; height: 48px;
    background: rgba(200,146,42,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.contact-info__text h5 { font-family: var(--font-condensed); color: var(--white); font-size: 0.95rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-info__text a, .contact-info__text p { font-size: 0.95rem; }
.contact-info__text a:hover { color: var(--gold); }

/* ===========================
   FORMS
=========================== */
.form-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 40px;
}
.form-card h3 { color: var(--white); margin-bottom: 8px; font-family: var(--font-condensed); font-size: 1.5rem; letter-spacing: 1px; }
.form-card__sub { margin-bottom: 28px; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-family: var(--font-condensed);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-bottom: 6px;
    font-weight: 600;
}
.form-group label .req { color: var(--gold); }
.form-control {
    width: 100%;
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,42,0.12); }
.form-control::placeholder { color: var(--grey); }
select.form-control option { background: var(--dark-3); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 15px; font-size: 1.05rem; }
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-family: var(--font-condensed);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.3); color: #4ade80; }
.alert-error { background: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.3); color: #f87171; }
.invalid-feedback { color: #f87171; font-size: 0.8rem; margin-top: 4px; display: block; }
.is-invalid { border-color: #f87171 !important; }

/* ===========================
   QUOTE PAGE
=========================== */
.quote-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.quote-benefits { position: sticky; top: 96px; }
.quote-benefits__item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-bottom: 16px;
    transition: var(--transition);
}
.quote-benefits__item:hover { border-color: var(--gold); }
.quote-benefits__icon { width: 40px; height: 40px; background: rgba(200,146,42,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.quote-benefits__text h5 { font-family: var(--font-condensed); color: var(--white); font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.quote-benefits__text p { font-size: 0.85rem; }

/* ===========================
   FOOTER
=========================== */
.footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(200,146,42,0.15);
}
.footer__top { background: var(--dark-2); }
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 60px 0 40px;
    align-items: start;
}
.footer__col { }
.footer__brand .navbar__logo { display: inline-flex; margin-bottom: 16px; }
.footer-logo .logo-sd { font-size: 1.8rem; }
.footer-logo .logo-car { font-size: 1.5rem; }
.footer-logo .logo-services { font-size: 1.1rem; }
.footer__brand p { font-size: 0.88rem; margin-bottom: 20px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
    width: 36px; height: 36px;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: var(--grey-light);
    transition: var(--transition);
}
.footer__social a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer__col h4 {
    color: var(--white);
    font-family: var(--font-condensed);
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; color: var(--grey);
    transition: var(--transition);
}
.footer__col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer__col ul li a i { color: var(--gold); font-size: 0.7rem; width: 10px; flex-shrink: 0; }
.footer__contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.footer__contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.9rem; width: 16px; }
.footer__contact li a, .footer__contact li span { font-size: 0.88rem; color: var(--grey); line-height: 1.5; }
.footer__contact li a:hover { color: var(--gold); }
.footer__bottom {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 18px 0;
}
.footer__bottom-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 8px;
}
.footer__bottom p { font-size: 0.8rem; color: var(--grey); }
.footer__bottom a { color: var(--grey); }
.footer__bottom a:hover { color: var(--gold); }

@media (max-width: 992px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ===========================
   FLOATING BUTTONS
=========================== */
.float-buttons {
    position: fixed;
    bottom: 32px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}
.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
    transition: var(--transition);
    position: relative;
}
.float-btn:hover { transform: scale(1.12); }
.float-call { background: var(--gold); }
.float-whatsapp { background: #25D366; }
.float-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    white-space: nowrap;
    background: var(--dark-3);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
    .about-home { grid-template-columns: 1fr; }
    .about-home__imgs { height: 380px; margin-bottom: 32px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-steps::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: 1fr; }
    .service-detail.reverse { direction: ltr; }
    .service-detail__img { height: 280px; }
    .quote-grid { grid-template-columns: 1fr; }
    .quote-benefits { position: static; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .topbar__right { display: none; }
    .navbar__menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: var(--dark-2);
        border-bottom: 1px solid rgba(200,146,42,0.2);
        padding: 16px 24px 24px;
    }
    .navbar__menu.open { display: block; }
    .navbar__menu ul { flex-direction: column; align-items: flex-start; gap: 0; }
    .navbar__menu ul li a { padding: 10px 4px; }
    .has-dropdown .dropdown {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none;
        background: rgba(200,146,42,0.05);
        border: none; border-left: 2px solid var(--gold);
        border-radius: 0;
        padding: 4px 0 4px 12px;
        margin-top: 4px;
        display: none;
        flex-direction: column;
    }
    .has-dropdown.open .dropdown { display: flex; }
    .dropdown li a::before { display: none; }
    .dropdown li a { border-left: none !important; padding-left: 8px !important; }
    .navbar__burger { display: flex; }
    .why-strip__inner { grid-template-columns: repeat(2, 1fr); }
    .why-strip__item { border-bottom: 1px solid rgba(0,0,0,0.12); }
    .services-grid { grid-template-columns: 1fr; }
    .hero__stats { gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-inner { text-align: center; justify-content: center; }
    .cta-inner > div:first-child { text-align: center; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .form-card { padding: 24px 20px; }
}
@media (max-width: 480px) {
    .why-strip__inner { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ===========================
   LEGAL PAGES (Privacy & T&C)
=========================== */
.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: start;
}
.legal-toc {
    position: sticky;
    top: 96px;
}
.legal-toc__inner {
    background: var(--dark-3);
    border: 1px solid rgba(200,146,42,0.2);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 24px;
}
.legal-toc__inner h4 {
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.legal-toc ul { display: flex; flex-direction: column; gap: 2px; }
.legal-toc ul li a {
    display: block;
    font-size: 0.84rem;
    color: var(--grey);
    padding: 6px 10px;
    border-radius: 4px;
    transition: var(--transition);
    border-left: 2px solid transparent;
}
.legal-toc ul li a:hover {
    color: var(--gold);
    background: rgba(200,146,42,0.07);
    border-left-color: var(--gold);
    padding-left: 14px;
}

/* Legal content */
.legal-content { max-width: 800px; }
.legal-intro {
    background: rgba(200,146,42,0.06);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 24px 28px;
    margin-bottom: 40px;
}
.legal-intro p { font-size: 0.98rem; margin-bottom: 10px; }
.legal-intro p:last-child { margin-bottom: 0; }

.legal-section {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h3 {
    font-family: var(--font-condensed);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 0.5px;
}
.legal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1rem;
    flex-shrink: 0;
}
.legal-section h5 {
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.legal-section p { font-size: 0.93rem; margin-bottom: 12px; line-height: 1.75; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--gold); }
.legal-section a:hover { text-decoration: underline; }
.legal-list {
    margin: 8px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
}
.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--grey-light);
    line-height: 1.6;
    padding-left: 4px;
}
.legal-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}
.legal-list li strong { color: var(--white); }
.legal-box {
    background: var(--dark-4);
    border: 1px solid rgba(200,146,42,0.2);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.legal-box p { font-size: 0.9rem; margin: 0; color: var(--grey-light); }
.legal-box a { color: var(--gold); }

@media (max-width: 900px) {
    .legal-layout { grid-template-columns: 1fr; }
    .legal-toc { position: static; }
    .legal-toc__inner { margin-bottom: 8px; }
}

/* ===========================
   PHOTO GALLERY
=========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 12px;
    margin-top: 48px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}
.gallery-item--tall {
    grid-row: span 2;
}
.gallery-item--wide {
    grid-column: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.07);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    font-family: var(--font-condensed);
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--tall { grid-row: span 1; }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-overlay { opacity: 1; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--wide { grid-column: span 1; }
}

/* ===========================
   ENGINE PRICE TABLE
=========================== */

/* Section header: left title + right USP boxes */
.price-section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(200,146,42,0.2);
}
.price-section-header__right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.price-highlight-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--dark-3);
    border: 1px solid rgba(200,146,42,0.2);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 14px 18px;
}
.price-highlight-box > .fas {
    font-size: 1.3rem;
    color: var(--gold);
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}
.price-highlight-box div { display: flex; flex-direction: column; gap: 2px; }
.price-highlight-box strong { font-size: 0.9rem; color: var(--white); font-weight: 700; }
.price-highlight-box span { font-size: 0.78rem; color: var(--grey); }

/* Table */
.price-table-wrap { margin-top: 0; }
.price-table-scroll {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid rgba(200,146,42,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.price-table thead tr { background: var(--gold); }
.price-table thead th {
    padding: 18px 16px;
    font-family: var(--font-condensed);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    text-align: center;
    white-space: nowrap;
}
.price-table thead th.th-engine { text-align: left; padding-left: 24px; min-width: 160px; }
.price-table thead th.th-major { background: rgba(0,0,0,0.15); }
.th-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.th-inner .fas { font-size: 1rem; }
.th-inner span { font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; }
.th-inner small { font-size: 0.68rem; opacity: 0.75; font-weight: 400; letter-spacing: 0; text-transform: none; }

.price-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.2s; }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: rgba(200,146,42,0.05); }
.price-table tbody td { padding: 16px; text-align: center; }
.price-table tbody td.engine-size {
    text-align: left;
    padding-left: 24px;
    font-family: var(--font-condensed);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-table tbody td.engine-size .fas { color: var(--gold); font-size: 0.7rem; }
.price-badge {
    display: inline-block;
    background: var(--dark-4);
    color: var(--grey-light);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}
.price-table tbody tr:hover .price-badge { border-color: rgba(200,146,42,0.3); color: var(--white); }
.price-badge--gold {
    background: rgba(200,146,42,0.12);
    border-color: rgba(200,146,42,0.5);
    color: var(--gold);
    font-weight: 700;
}
.price-table tbody tr:hover .price-badge--gold { background: rgba(200,146,42,0.2); }

.price-footnote {
    font-size: 0.8rem;
    color: var(--grey);
    margin-top: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.price-footnote .fas { color: var(--gold); }

/* Divider */
.price-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 56px 0 40px;
}
.price-divider::before,
.price-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(200,146,42,0.25);
}
.price-divider span {
    font-family: var(--font-condensed);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    padding: 0 4px;
}

/* Service Tier Cards */
.service-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.tier-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: var(--transition);
    position: relative;
}
.tier-card--featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, rgba(200,146,42,0.08) 0%, var(--dark-3) 60%);
    box-shadow: 0 16px 48px rgba(200,146,42,0.15);
}
.tier-card:not(.tier-card--featured):hover { border-color: rgba(200,146,42,0.3); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.tier-card--featured:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(200,146,42,0.2); }

.tier-card__badge-top {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.tier-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tier-badge {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 6px;
}
.tier-badge--gold { color: var(--gold); }
.tier-desc { font-size: 0.78rem; color: var(--grey); line-height: 1.5; max-width: 180px; }
.tier-duration {
    font-size: 0.75rem;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 4px;
}
.tier-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.tier-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--grey-light);
    line-height: 1.5;
}
.tier-list li .fas { color: var(--gold); font-size: 0.72rem; margin-top: 5px; flex-shrink: 0; }

/* Diagnostics duo image */
.service-detail__img--duo { position: relative; }
.duo-img--main { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.duo-img--overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 55%;
    height: auto;
    border-radius: 8px;
    border: 3px solid var(--dark-2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.mot-card__img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.mot-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 960px) {
    .price-section-header { grid-template-columns: 1fr; gap: 32px; }
    .service-tier-grid { grid-template-columns: 1fr; gap: 24px; }
    .tier-card--featured { margin-top: 16px; }
}
@media (max-width: 600px) {
    .price-table { font-size: 0.76rem; }
    .price-table thead th, .price-table tbody td { padding: 10px 8px; }
    .price-table tbody td.engine-size { padding-left: 12px; }
    .duo-img--overlay { display: none; }
}

/* ===========================
   SERVICE PACKAGE CARDS
=========================== */
.pricing-usps {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0 48px;
}
.pricing-usp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-3);
    border: 1px solid rgba(200,146,42,0.25);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.82rem;
    color: var(--grey-light);
    font-family: var(--font-condensed);
    letter-spacing: 0.5px;
}
.pricing-usp .fas { color: var(--gold); font-size: 0.8rem; }

/* 3-col package grid */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 32px;
}

/* Package Card */
.pkg-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}
.pkg-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,146,42,0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.pkg-card--featured {
    border-color: var(--gold);
    box-shadow: 0 16px 48px rgba(200,146,42,0.18);
    transform: translateY(-8px);
}
.pkg-card--featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 24px 60px rgba(200,146,42,0.25);
}

/* Popular badge */
.pkg-popular-badge {
    background: var(--gold);
    color: var(--dark);
    text-align: center;
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px;
}

/* Card header */
.pkg-card__header {
    padding: 28px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.15);
}
.pkg-icon {
    width: 48px;
    height: 48px;
    background: rgba(200,146,42,0.12);
    border: 1px solid rgba(200,146,42,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.1rem;
    color: var(--gold);
}
.pkg-icon--gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.pkg-name {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 6px;
    line-height: 1;
}
.pkg-name--gold { color: var(--gold); }
.pkg-tagline {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.5;
    margin-bottom: 12px;
}
.pkg-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--grey);
    background: var(--dark-4);
    border-radius: 20px;
    padding: 4px 12px;
}
.pkg-duration .fas { color: var(--gold); }

/* Price rows */
.pkg-card__prices {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pkg-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: 6px;
    background: rgba(0,0,0,0.15);
    transition: background 0.2s;
}
.pkg-price-row:hover { background: rgba(200,146,42,0.07); }
.pkg-engine {
    font-size: 0.8rem;
    color: var(--grey);
    font-family: var(--font-condensed);
    letter-spacing: 0.5px;
}
.pkg-price {
    font-family: var(--font-condensed);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}
.pkg-price--gold { color: var(--gold); }

/* Includes list */
.pkg-card__includes {
    padding: 20px 24px;
    flex: 1;
}
.pkg-includes-title {
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.pkg-card__includes ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pkg-card__includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--grey-light);
}
.pkg-card__includes li .fas {
    color: var(--gold);
    font-size: 0.68rem;
    flex-shrink: 0;
}

/* CTA button */
.pkg-btn {
    margin: 0 24px 24px;
    justify-content: center;
}

/* Oil service footnote */
.pkg-footnote {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(200,146,42,0.06);
    border: 1px solid rgba(200,146,42,0.2);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 16px 24px;
    font-size: 0.85rem;
    color: var(--grey-light);
}
.pkg-footnote .fas { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.pkg-footnote a { color: var(--gold); text-decoration: underline; }

@media (max-width: 960px) {
    .pkg-grid { grid-template-columns: 1fr; }
    .pkg-card--featured { transform: none; }
    .pkg-card--featured:hover { transform: translateY(-6px); }
}