/* ═══════════════════════════════════════════
   ONLY VANS — Premium Shared Styles
   Pearlescent / Glassmorphism / 3D
   ═══════════════════════════════════════════ */

/* ─── Google Fonts Import ─── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700;9..144,800&display=swap');

/* ─── Scroll Reveal Animations ─── */
@keyframes revealUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes revealFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-fade {
    animation: revealFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }
.reveal-delay-5 { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-fade { animation: none; opacity: 1; }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #f9fbfb;
    color: #2d4a52;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Navigation — Glassmorphism ─── */
header {
    background: #ffffff;
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo:hover {
    opacity: 0.8;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0891b2, #06b6d4);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0891b2;
}

.nav-phone {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: white !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 10px rgba(8, 145, 178, 0.2);
}

.nav-phone::after {
    display: none !important;
}

.nav-phone:hover {
    background: linear-gradient(135deg, #0570a3 0%, #0891b2 100%) !important;
    box-shadow: 0 4px 18px rgba(8, 145, 178, 0.35) !important;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

/* ─── Hero — Light (Home page) ─── */
.hero-light {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f9fc 25%, #e0f2fe 50%, #ede9fe 75%, #e8f4f8 100%);
    background-size: 200% 200%;
    animation: pearlShift 12s ease-in-out infinite;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-light::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(8, 145, 178, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-light h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
    font-weight: 800;
    color: #1a2e35;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.hero-light h1 span { color: #0891b2; }

.hero-light p {
    font-size: 20px;
    color: #5a7a82;
    max-width: 600px;
    margin: 0 auto 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ─── Hero — Dark (Sub pages) ─── */
.hero-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 160px 0 100px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(8, 145, 178, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-dark::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.5) 100%);
    pointer-events: none;
}

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

.hero-dark h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.hero-dark h1 span { color: #0891b2; }

/* Wet belt page — image hero override (must come after .hero-dark) */
.hero-wetbelt {
    background: linear-gradient(135deg, rgba(8, 15, 28, 0.82) 0%, rgba(15, 23, 42, 0.78) 100%),
                url('images/wet-belt-hero.png') center/cover no-repeat;
}

.hero-dark p {
    font-size: 20px;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ─── Hero Badge ─── */
.hero-badge {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-light .hero-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #0891b2;
    box-shadow: 0 0 20px rgba(8, 145, 178, 0.3), inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(8, 145, 178, 0.2);
}

.hero-badge span { color: #f59e0b; }

.hero-dark .hero-badge {
    background: rgba(8, 145, 178, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 145, 178, 0.3);
    color: #67e8f9;
}

/* ─── Hero Buttons ─── */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Buttons — 3D Gradient ─── */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: white;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
}

.btn-primary:hover::after {
    background: rgba(255, 255, 255, 0.08);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-light .btn-secondary {
    background: #ffffff;
    backdrop-filter: blur(10px);
    color: #0891b2;
    border: 1px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.hero-light .btn-secondary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

.hero-dark .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-dark .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-1px);
}

/* ─── Sections ─── */
section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-title-left {
    text-align: left;
    margin-bottom: 50px;
}

.section-title-left h2 { display: block; }
.section-title-left p { margin: 0; max-width: 500px; }

.section-title h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    font-weight: 700;
    color: #1a2e35;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.01em;
}

.section-white .section-title h2::after,
.section-tinted:not(.ab-section-tinted) .section-title h2::after {
    display: none;
}

.section-title p {
    color: #5a7a82;
    font-size: 1.1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

/* Section backgrounds — tinted warm */
.section-white {
    background: #f9fbfb;
    position: relative;
    overflow: hidden;
}

.section-white::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z' fill='%23f0f6f7'/%3E%3C/svg%3E") no-repeat center/cover;
    pointer-events: none;
}

.section-tinted {
    background: #f0f6f7;
    position: relative;
}



/* ─── Cards — Glass 3D ─── */
.glass-card {
    background: white;
    border: 1px solid rgba(8, 145, 178, 0.15);
    border-radius: 20px;
    box-shadow:
        0 4px 20px rgba(8, 145, 178, 0.15),
        0 8px 32px rgba(8, 145, 178, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 8px 30px rgba(8, 145, 178, 0.22),
        0 16px 48px rgba(8, 145, 178, 0.14),
        0 4px 8px rgba(0, 0, 0, 0.05);
}

/* AB Automotive card variant — blue shadow */
.ab-glass-card {
    border-color: rgba(25, 86, 168, 0.15);
    box-shadow:
        0 4px 20px rgba(25, 86, 168, 0.15),
        0 8px 32px rgba(25, 86, 168, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.04);
}

.ab-glass-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 48px rgba(25, 86, 168, 0.2), 0 8px 16px rgba(25, 86, 168, 0.1);
}

/* ─── Service Cards (grid) ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 28px;
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(6, 182, 212, 0.15));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(8, 145, 178, 0.1);
    padding: 20px;
}

.service-icon img {
    width: 60%;
    height: 60%;
}

.service-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1a2e35;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.service-card h3 a:hover {
    color: #0891b2;
}

.service-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.service-card p a {
    color: #0891b2;
    text-decoration: none;
    font-weight: 500;
}

.service-card p a:hover {
    text-decoration: underline;
}

/* ─── Why/Benefit Cards ─── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    text-align: center;
    padding: 36px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfffe 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(6, 182, 212, 0.15));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(8, 145, 178, 0.08);
}

.why-icon img {
    width: 70%;
    height: 70%;
}

.why-card h3 {
    color: #1e293b;
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.why-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ─── Stat Cards ─── */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    padding: 20px 16px;
    text-align: center;
    overflow: hidden;
}

.stat-card .number {
    font-size: 42px;
    font-weight: 900;
    color: #0891b2;
    background: none;
    -webkit-text-fill-color: unset;
    text-shadow: none;
    letter-spacing: -1px;
}

.stat-card .label {
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
}

/* ─── Sign Cards (Wet Belts) ─── */
.signs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sign-card {
    padding: 28px;
    text-align: center;
}

.sign-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 14px;
    display: block;
}

.sign-icon img {
    width: 100%;
    height: 100%;
}

.sign-card h3 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 8px;
}

.sign-card p {
    color: #64748b;
    font-size: 14px;
}

/* ─── Feature Items (Couriers) ─── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    padding: 32px;
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

.feature-content h3 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-content p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

/* ─── Stats Banner — dark navy with cyan accents ─── */
.stats-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(8, 145, 178, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats-banner-number {
    font-size: 36px;
    font-weight: 800;
    color: #0891b2;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stats-banner-label {
    font-size: 15px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Image Break — full width dark section with texture */
.image-break {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 280px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.image-break::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(8, 145, 178, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(8, 145, 178, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.image-break-overlay {
    width: 100%;
    padding: 60px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.image-break-overlay h2 {
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.image-break-overlay p {
    font-size: 19px;
    color: #cbd5e1;
    font-weight: 500;
}

/* ─── Banner Strips ─── */
.banner-strip {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #0891b2 100%);
    background-size: 200% 100%;
    animation: bannerShift 6s ease-in-out infinite;
    padding: 28px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.banner-strip::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 0; bottom: 0;
    width: 300%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: bannerSheen 4s ease-in-out infinite;
}

.banner-strip p {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin: 0;
}

.banner-strip strong {
    font-weight: 800;
    color: #ffffff;
}

.banner-strip span {
    font-weight: 400;
    opacity: 0.9;
}

.banner-strip-red {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
    background-size: 200% 100%;
    animation: bannerShift 6s ease-in-out infinite;
    padding: 24px 0;
    text-align: center;
    color: white;
}

.banner-strip-red p {
    font-size: 18px;
    font-weight: 600;
}

.banner-strip-red span {
    font-weight: 400;
    opacity: 0.9;
}

/* ─── Vans Placeholder ─── */
.vans-placeholder,
.stock-placeholder {
    text-align: center;
    padding: 60px 20px;
    border-radius: 16px;
    border: 2px dashed rgba(8, 145, 178, 0.3);
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.3) 0%, rgba(248, 253, 254, 0.5) 100%);
    backdrop-filter: blur(5px);
}

.vans-placeholder .icon,
.stock-placeholder .icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.vans-placeholder h3,
.stock-placeholder h3 {
    color: #1e293b;
    font-size: 22px;
    margin-bottom: 8px;
}

.vans-placeholder p,
.stock-placeholder p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── About Section ─── */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.about-text p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ─── Contact Section ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.contact-item:hover {
}

.contact-item .icon {
    font-size: 28px;
    min-width: 40px;
    text-align: center;
    color: #0891b2;
}

.contact-item h3 {
    color: #1e293b;
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    color: #64748b;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #0891b2;
}

.hours-table {
    width: 100%;
    margin-top: 8px;
}

.hours-table tr td {
    padding: 4px 0;
    color: #64748b;
    font-size: 14px;
}

.hours-table tr td:first-child {
    font-weight: 500;
    color: #333;
    width: 120px;
}

.hours-table .closed {
    color: #e53e3e;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(224, 242, 254, 0.5);
    min-height: 400px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* ─── Affected Models (Wet Belts) ─── */
.info-panel {
    border-radius: 16px;
    padding: 28px;
}

.info-panel h3 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 14px;
}

.info-panel ul {
    list-style: none;
    padding: 0;
}

.info-panel li {
    padding: 8px 0;
    color: #64748b;
    font-size: 15px;
    border-bottom: 1px solid rgba(224, 242, 254, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-panel li:last-child {
    border-bottom: none;
}

/* ─── Cost Comparison (Wet Belts) ─── */
.cost-compare {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 20px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.cost-card {
    border-radius: 16px;
    padding: 36px;
    text-align: center;
}

.cost-card.good {
    border: 2px solid #0891b2;
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.1);
}

.cost-card.bad {
    border: 2px solid #dc2626;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.cost-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #64748b;
}

.cost-card .price {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cost-card.good .price {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cost-card.bad .price {
    color: #dc2626;
}

.cost-card p {
    color: #64748b;
    font-size: 14px;
}

.cost-vs {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #94a3b8;
}

/* ─── Benefits (Servicing) ─── */
.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.benefits-text p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.benefits-text strong {
    color: #0891b2;
}

.benefits-checklist {
    border-radius: 16px;
    padding: 28px;
}

.benefits-checklist h3 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 14px;
}

.benefits-checklist ul {
    list-style: none;
    padding: 0;
}

.benefits-checklist li {
    padding: 8px 0;
    color: #64748b;
    font-size: 15px;
    border-bottom: 1px solid rgba(224, 242, 254, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-checklist li:last-child {
    border-bottom: none;
}

.benefits-checklist li::before {
    content: '✓';
    color: #0891b2;
    font-weight: 700;
    font-size: 18px;
}

/* ─── Services Bar (Servicing page) ─── */
.services-bar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.services-bar-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: 12px;
}

.services-bar-item .icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
    display: block;
}

.services-bar-item .icon img {
    width: 100%;
    height: 100%;
}

.services-bar-item p {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

/* ─── CTA Section ─── */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    background-size: 200% 200%;
    animation: ctaGradientShift 8s ease-in-out infinite;
    text-align: center;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

@keyframes ctaGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(8, 145, 178, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-section p {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: block;
    margin-bottom: 24px;
    transition: opacity 0.3s;
}

.cta-phone:hover {
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-contact {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-contact-item { text-align: center; }

.cta-contact-item strong {
    display: block;
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 6px;
}

.cta-contact-link {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

/* ─── Footer ─── */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 48px 0;
    border-top: 1px solid rgba(30, 41, 59, 0.5);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

footer p {
    font-size: 14px;
}

footer a {
    color: #0891b2;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #06b6d4;
}

/* ─── Animations ─── */
@keyframes pearlShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes bannerShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes bannerSheen {
    0%, 100% { transform: translateX(-33%); }
    50% { transform: translateX(0%); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* fade-in disabled — content always visible */

/* ─── Hero Image Background ─── */
.hero-image-bg {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 41, 59, 0.8) 100%),
                url('images/van-yard.jpg') center/cover no-repeat;
    padding: 160px 0 100px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(8, 145, 178, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.5) 100%);
    pointer-events: none;
}

.hero-image-bg .container { position: relative; z-index: 1; }
.hero-image-bg h1 { 
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem); 
    font-weight: 800; 
    margin-bottom: 16px; 
    letter-spacing: -0.02em; 
    line-height: 1.05; 
}
.hero-image-bg h1 span { color: #0891b2; }
.hero-image-bg p { font-size: 20px; color: #cbd5e1; max-width: 600px; margin: 0 auto 36px; font-family: 'Plus Jakarta Sans', sans-serif; }

.hero-image-bg .btn-secondary {
    background: none;
    color: #ffffff;
    border: none;
    box-shadow: none;
    padding: 14px 36px;
}

.hero-image-bg .btn-secondary:hover {
    background: none;
    border: none;
    box-shadow: none;
    opacity: 0.8;
    transform: translateY(-1px);
}

.hero-image-bg .hero-badge {
    background: rgba(8, 145, 178, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 145, 178, 0.3);
    color: #67e8f9;
}

@media (max-width: 768px) {
    .hero-image-bg { padding: 130px 0 70px; }
    .hero-image-bg h1 { font-size: 34px; }
    .hero-image-bg p { font-size: 17px; }
}

/* ─── Section Entrance Animation ─── */
@keyframes sectionFadeInUp {
    from {
        opacity: 0.8;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: sectionFadeInUp 0.8s ease-out forwards;
}

/* ─── Interactive Hover Lift ─── */
.why-card,
.service-card,
.sign-card,
.feature-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover,
.service-card:hover,
.sign-card:hover,
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.12);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stats-banner {
        padding: 40px 0;
    }

    .image-break {
        min-height: 220px;
    }

    .image-break-overlay {
        padding: 40px 0;
    }

    .image-break-overlay h2 {
        font-size: 28px;
    }

    .image-break-overlay p {
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }

    .nav-links a::after { display: none; }

    .hero-light,
    .hero-dark {
        padding: 130px 0 70px;
    }

    .hero-light h1,
    .hero-dark h1 {
        font-size: 34px;
    }

    .hero-light p,
    .hero-dark p {
        font-size: 17px;
    }

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

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content,
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .cost-compare {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cost-vs { display: none; }

    .services-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-contact {
        flex-direction: column;
        gap: 16px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── Cookie Consent Banner ─── */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    display: flex;
    align-items: flex-end;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

#cookie-consent-banner.fade-out {
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(100%); opacity: 0; }
}

.cookie-banner-bg {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: -1;
}

.cookie-banner-content {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    padding: 24px 28px;
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.cookie-banner-text {
    flex: 1;
    min-width: 0;
}

.cookie-banner-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.cookie-banner-text p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text p a {
    color: #0891b2;
    text-decoration: none;
    font-weight: 500;
}

.cookie-banner-text p a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    white-space: nowrap;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.2);
}

.cookie-btn-primary:hover {
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.3);
    transform: translateY(-1px);
}

.cookie-btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.cookie-btn-secondary:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-banner-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .hero-light h1,
    .hero-dark h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .services-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-break-overlay h2 {
        font-size: 24px;
    }

    .image-break-overlay p {
        font-size: 15px;
    }
}

/* ═══════════════════════════════════════════
   AB AUTOMOTIVE — Blue Brand Variant
   ═══════════════════════════════════════════ */

/* ─── Logo Group (Dual Brand Header) ─── */
.logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-group .logo-divider {
    width: 1px;
    height: 28px;
    background: rgba(0, 0, 0, 0.12);
}

.logo-group .logo img {
    height: 36px;
}

/* ─── AB Automotive Navigation ─── */
.ab-nav .nav-links a {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ab-nav .nav-links a:hover,
.ab-nav .nav-links a.active {
    color: #1956a8;
}

.ab-nav .nav-links a::after {
    background: linear-gradient(90deg, #1956a8, #2563eb);
}

.ab-nav .nav-phone {
    background: linear-gradient(135deg, #1956a8 0%, #2563eb 100%);
    box-shadow: 0 2px 10px rgba(25, 86, 168, 0.2);
}

.ab-nav .nav-phone:hover {
    background: linear-gradient(135deg, #0f3d7a 0%, #1956a8 100%) !important;
    box-shadow: 0 4px 18px rgba(25, 86, 168, 0.35) !important;
}

/* ─── AB Hero (Blue Gradient) ─── */
.ab-hero {
    background: linear-gradient(135deg, rgba(10, 18, 35, 0.82) 0%, rgba(15, 31, 63, 0.78) 100%),
                url('images/mechanic.jpg') center/cover no-repeat;
    padding: 160px 0 100px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ab-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(25, 86, 168, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.ab-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 31, 63, 0.5) 100%);
    pointer-events: none;
}

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

.ab-hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.ab-hero h1 span { color: #2563eb; }

.ab-hero p {
    font-size: 20px;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ab-hero .hero-badge {
    background: rgba(25, 86, 168, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(25, 86, 168, 0.3);
    color: #60a5fa;
}

/* ─── AB Buttons ─── */
.ab-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #1956a8 0%, #2563eb 100%);
    color: white;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(25, 86, 168, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ab-btn-primary:hover {
    background: linear-gradient(135deg, #1a5bc0 0%, #1e6ec3 50%, #d97706 50%, #f59e0b 100%);
    box-shadow: 0 8px 25px rgba(25, 86, 168, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.ab-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(25, 86, 168, 0.2);
}

/* ─── AB Stats Banner — lighter, premium feel ─── */
.ab-stats-banner {
    background: linear-gradient(135deg, #1956a8 0%, #2563eb 100%);
    padding: 28px 0;
}

.ab-stats-pills {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ab-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

/* ─── AB Image Break — different treatment, lighter ─── */
.ab-image-break {
    background: linear-gradient(135deg, #0f1f3f 0%, #1a3563 50%, #0f1f3f 100%);
    min-height: 260px;
    display: flex;
    align-items: center;
    position: relative;
}

.ab-image-break::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(25, 86, 168, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.ab-image-break-overlay {
    width: 100%;
    padding: 50px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ab-image-break-overlay h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.ab-image-break-overlay p {
    font-size: 18px;
    color: #a5c4e1;
    font-weight: 500;
}

/* ─── AB Section Tinted (Blue) ─── */
.ab-section-tinted {
    background: #f0f2f8;
    position: relative;
}

.ab-section-tinted .section-title h2 {
    font-family: 'Fraunces', Georgia, serif;
    color: #1a2233;
    font-weight: 700;
}

.ab-section-tinted .section-title p {
    color: #5a6b82;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ab-glass-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1a2233;
}

.ab-glass-card p {
    color: #5a6b82;
    font-family: 'Plus Jakarta Sans', sans-serif;
}





/* ─── AB Stat Cards ─── */
.ab-stat-card {
    padding: 20px 16px;
    text-align: center;
    overflow: hidden;
}

.ab-stat-card .number {
    font-size: 22px;
    font-weight: 800;
    color: #1956a8;
    background: none;
    -webkit-text-fill-color: unset;
    white-space: nowrap;
}

.ab-stat-card .label {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
    white-space: nowrap;
}

/* ─── AB Banner Strip ─── */
.ab-banner-strip {
    background: linear-gradient(135deg, #1956a8 0%, #2563eb 50%, #1956a8 100%);
    background-size: 200% 100%;
    animation: bannerShift 6s ease-in-out infinite;
    padding: 24px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.ab-banner-strip::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 0; bottom: 0;
    width: 300%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: bannerSheen 4s ease-in-out infinite;
}

.ab-banner-strip p {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.ab-banner-strip span {
    font-weight: 400;
    opacity: 0.9;
}

/* ─── AB CTA Section ─── */
.ab-cta-section {
    background: linear-gradient(110deg, #0f1f3f 0%, #1a2a4f 40%, #1956a8 100%);
    background-size: 200% 200%;
    animation: abCtaGradientShift 10s ease-in-out infinite;
    text-align: center;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

@keyframes abCtaGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ab-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(25, 86, 168, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.ab-cta-section .container { position: relative; z-index: 1; }

.ab-cta-section h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.ab-cta-section p {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ab-cta-phone {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #1956a8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: block;
    margin-bottom: 24px;
    transition: opacity 0.3s;
}

.ab-cta-phone:hover {
    opacity: 0.8;
}

.ab-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.ab-cta-contact {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.ab-cta-contact-item { text-align: center; }

.ab-cta-contact-item strong {
    display: block;
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 6px;
}

.ab-cta-contact-link {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #1956a8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

/* ─── AB Footer ─── */
.ab-footer {
    background: #0f1f3f;
    color: #cbd5e1;
    padding: 30px 0;
    border-top: 1px solid rgba(25, 86, 168, 0.3);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ab-footer a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s;
}

.ab-footer a:hover {
    color: #f59e0b;
}

/* ─── AB Benefits Checklist ─── */
.ab-benefits-checklist li::before {
    content: '✓';
    color: #1956a8;
    font-weight: 700;
    font-size: 18px;
}

/* ─── AB Service Icons (Squared) ─── */
.ab-glass-card .service-icon {
    background: linear-gradient(135deg, rgba(25, 86, 168, 0.1), rgba(37, 99, 235, 0.15));
    border-radius: 16px;
}

/* ─── AB Hero Badge Enhancement ─── */
.ab-hero .hero-badge {
    padding: 8px 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(25, 86, 168, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}



/* ─── Mechanic Photo Break ─── */
.mechanic-photo-break {
    padding: 0;
    overflow: hidden;
    height: 480px;
    position: relative;
}

.mechanic-photo-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.mechanic-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.mechanic-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 18, 35, 0.88) 0%, rgba(10, 18, 35, 0.45) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    max-width: 580px;
}

.mechanic-photo-overlay h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.mechanic-photo-overlay p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mechanic-photo-break { height: 340px; }
    .mechanic-photo-overlay {
        padding: 0 28px;
        max-width: 100%;
        background: linear-gradient(180deg, rgba(10,18,35,0.5) 0%, rgba(10,18,35,0.88) 100%);
        justify-content: flex-end;
        padding-bottom: 32px;
    }
}

/* ─── Servicing Hero Photo ─── */
.hero-servicing {
    background: linear-gradient(135deg, rgba(8, 15, 28, 0.82) 0%, rgba(15, 23, 42, 0.75) 100%),
                url('images/tyre-mechanic.jpg') center/cover no-repeat;
}

/* ─── Van Photo Break (Only Vans) ─── */
.van-photo-break {
    padding: 0;
    overflow: hidden;
    height: 440px;
    position: relative;
}

.van-photo-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.van-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.van-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 15, 28, 0.85) 0%, rgba(8, 15, 28, 0.4) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    max-width: 580px;
}

.van-photo-overlay h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.van-photo-overlay p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .van-photo-break { height: 320px; }
    .van-photo-overlay {
        padding: 0 28px;
        max-width: 100%;
        background: linear-gradient(180deg, rgba(8,15,28,0.5) 0%, rgba(8,15,28,0.88) 100%);
        justify-content: flex-end;
        padding-bottom: 32px;
    }
}

/* ─── Racing Section ─── */
.section-racing {
    background: linear-gradient(135deg, #0f172a 0%, #1a2e35 100%);
    padding: 120px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.section-racing::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(8, 145, 178, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.racing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.racing-content-reverse {
    direction: rtl;
}

.racing-content-reverse > * {
    direction: ltr;
}

.racing-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: rgba(8, 145, 178, 0.15);
    color: #67e8f9;
    border: 1px solid rgba(8, 145, 178, 0.3);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ab-racing-badge {
    background: rgba(25, 86, 168, 0.15);
    color: #93b5e0;
    border-color: rgba(25, 86, 168, 0.3);
}

.racing-text h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2rem, 3vw + 0.5rem, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-racing .racing-text h2 {
    color: white;
}

.ab-section-tinted .racing-text h2 {
    color: #1a2233;
}

.racing-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.section-racing .racing-text p {
    color: rgba(255, 255, 255, 0.75);
}

.ab-section-tinted .racing-text p {
    color: #5a6b82;
}

.racing-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.racing-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Racing Photo Break */
.racing-photo-break {
    padding: 0;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.racing-photo-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.racing-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.racing-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 15, 28, 0.9) 0%, rgba(8, 15, 28, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px 80px;
}

.racing-drivers {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.driver-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .racing-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .racing-content-reverse {
        direction: ltr;
    }
    .racing-photo-break { height: 300px; }
    .racing-photo-overlay { padding: 24px; }
    .racing-drivers { flex-direction: column; gap: 10px; }
}

/* ─── Rebrand Showcase ─── */
.rebrand-showcase {
    background: linear-gradient(135deg, #0a1018 0%, #0f1f2e 100%);
    padding: 100px 0;
    overflow: hidden;
}

.rebrand-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.rebrand-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(8, 145, 178, 0.15),
        0 12px 48px rgba(0, 0, 0, 0.3);
}

.rebrand-image img {
    width: 100%;
    height: auto;
    display: block;
}

.rebrand-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.2), rgba(6, 182, 212, 0.1));
    color: #67e8f9;
    border: 1px solid rgba(8, 145, 178, 0.35);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.rebrand-text h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.rebrand-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .rebrand-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ─── Sponsors Section ─── */
.sponsors-section {
    background: linear-gradient(180deg, #0a1018 0%, #0f1a24 100%);
    padding: 100px 0;
    text-align: center;
}

.sponsors-header h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.sponsors-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Title sponsor - hero treatment */
.sponsor-main {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), rgba(8, 145, 178, 0.03));
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto 48px;
    position: relative;
}

.sponsor-main-badge {
    display: inline-block;
    background: rgba(8, 145, 178, 0.15);
    color: #67e8f9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(8, 145, 178, 0.3);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sponsor-main h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.sponsor-main p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* Partner grid */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 860px;
    margin: 0 auto 48px;
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sponsor-card:hover {
    background: rgba(8, 145, 178, 0.08);
    border-color: rgba(8, 145, 178, 0.25);
    color: #67e8f9;
    transform: translateY(-3px);
}

/* Series badge */
.sponsors-series {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sponsors-series strong {
    color: #67e8f9;
    font-weight: 700;
}

@media (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .sponsor-main { padding: 28px 20px; }
}

/* ─── Racing Compact Sub-Section ─── */
.racing-compact {
    background: linear-gradient(135deg, #0a1018 0%, #111b26 100%);
    padding: 60px 0;
}

.racing-compact-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
}

.racing-compact-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.racing-compact-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.racing-compact-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #67e8f9;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.racing-compact-info h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.racing-compact-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 14px;
}

.racing-compact-info p strong {
    color: rgba(255, 255, 255, 0.85);
}

.racing-compact-sponsors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.racing-compact-sponsors span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.racing-compact-sponsors span:first-child {
    background: rgba(8, 145, 178, 0.1);
    border-color: rgba(8, 145, 178, 0.25);
    color: #67e8f9;
}

.racing-compact-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #67e8f9;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: opacity 0.2s;
}

.racing-compact-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .racing-compact-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .racing-compact-photo {
        max-width: 260px;
        margin: 0 auto;
    }
    .racing-compact-sponsors {
        justify-content: center;
    }
}

/* ─── Racing Page ─── */
.racing-hero {
    background: linear-gradient(135deg, rgba(8, 15, 28, 0.75) 0%, rgba(15, 23, 42, 0.70) 100%),
                url('images/racing-action.jpg') center/cover no-repeat;
}

.racing-hero h1 span { color: #0891b2; }

.racing-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.racing-page-grid-reverse {
    direction: rtl;
}

.racing-page-grid-reverse > * {
    direction: ltr;
}

.racing-page-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.racing-page-image img {
    width: 100%;
    height: auto;
    display: block;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.driver-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.driver-card:hover {
    background: rgba(8, 145, 178, 0.06);
    border-color: rgba(8, 145, 178, 0.2);
    transform: translateY(-4px);
}

.driver-number {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    font-weight: 800;
    color: #67e8f9;
    margin-bottom: 8px;
    line-height: 1;
}

.driver-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.driver-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (max-width: 768px) {
    .racing-page-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .racing-page-grid-reverse { direction: ltr; }
    .drivers-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}
