/* ========================================
   SPRINTER REPAIR & FLEET SERVICES LLC
   Premium Website Stylesheet
   ======================================== */

/* ---- CSS Variables / Design Tokens ---- */
:root {
    /* Colors — blue & red automotive palette */
    --clr-bg: #080a10;
    --clr-bg-alt: #0b0e18;
    --clr-bg-card: #101626;
    --clr-bg-card-hover: #151d32;
    --clr-surface: #182040;
    --clr-border: rgba(255,255,255,0.06);
    --clr-border-hover: rgba(255,255,255,0.12);

    --clr-accent: #2563eb;
    --clr-accent-light: #60a5fa;
    --clr-accent-dark: #1e40af;
    --clr-accent-glow: rgba(37,99,235,0.25);

    --clr-secondary: #dc2626;
    --clr-secondary-light: #f87171;
    --clr-secondary-dark: #991b1b;
    --clr-secondary-glow: rgba(220,38,38,0.2);

    --clr-text: #e8e8ec;
    --clr-text-muted: #8a8f9e;
    --clr-text-heading: #ffffff;

    --clr-success: #22c55e;
    --clr-danger: #ef4444;

    /* Fonts */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Barlow', 'Segoe UI', sans-serif;
    --font-condensed: 'Barlow Condensed', 'Impact', sans-serif;

    /* Sizing */
    --container-max: 1280px;
    --nav-height: 72px;
    --top-bar-height: 40px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-med: 0.4s var(--ease-out);
    --transition-slow: 0.7s var(--ease-out);

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.4);
    --shadow-accent: 0 4px 30px var(--clr-accent-glow);
}

/* ---- Base Reset ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--clr-accent-light); }
ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Utility ---- */
.text-accent { color: var(--clr-accent); }
.icon-sm { width: 18px; height: 18px; }
.btn-block { width: 100%; }

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--clr-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: preloader-spin 1.4s linear infinite;
}
.preloader-ring:nth-child(1) {
    width: 100%; height: 100%;
    border-top-color: var(--clr-accent);
    animation-duration: 1.2s;
}
.preloader-ring:nth-child(2) {
    width: 75%; height: 75%;
    border-right-color: var(--clr-accent-light);
    animation-duration: 1.6s;
    animation-direction: reverse;
}
.preloader-ring:nth-child(3) {
    width: 50%; height: 50%;
    border-bottom-color: var(--clr-accent-dark);
    animation-duration: 2s;
}
.preloader-text {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--clr-accent);
    z-index: 1;
}
@keyframes preloader-spin {
    to { transform: rotate(360deg); }
}

/* ---- Announcement Bar ---- */
.announcement-bar {
    background: linear-gradient(90deg, var(--clr-secondary-dark), var(--clr-secondary));
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 1001;
    position: relative;
    font-family: var(--font-condensed);
    letter-spacing: 0.5px;
}
.announcement-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.announcement-badge {
    background: #ffffff;
    color: var(--clr-secondary-dark);
    font-weight: 700;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}
.announcement-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    transition: opacity var(--transition-fast);
}
.announcement-link:hover {
    opacity: 0.9;
    color: #ffffff;
}

/* ---- Top Bar ---- */
.top-bar {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--clr-border);
    height: var(--top-bar-height);
    position: relative;
    z-index: 1001;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-text-muted);
    transition: color var(--transition-fast);
}
.top-bar-link:hover { color: var(--clr-accent); }
.top-bar-link .icon-sm { width: 14px; height: 14px; }

/* ---- Navigation ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(10,12,16,0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition-med), box-shadow var(--transition-med);
}
.navbar.scrolled {
    background: rgba(10,12,16,0.96);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-text-heading);
    flex-shrink: 0;
}
.nav-logo:hover { color: var(--clr-text-heading); }
.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
}
.logo-icon-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 2px solid var(--clr-accent);
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.logo-sub {
    font-size: 11px;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}
.navbar .logo-name {
    font-size: 32px;
    letter-spacing: 2px;
}
.navbar .logo-icon-img {
    width: 56px;
    height: 56px;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-muted);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--clr-text-heading);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--clr-accent);
    border-radius: 1px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    color: #ffffff !important;
    border-radius: var(--radius-sm);
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--clr-text);
    transition: all var(--transition-fast);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10,12,16,0.97);
    backdrop-filter: blur(30px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-med);
}
.mobile-overlay.active {
    display: flex;
    opacity: 1;
}
.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-link {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--clr-text-muted);
    letter-spacing: 4px;
    transition: all var(--transition-fast);
}
.mobile-link:hover, .mobile-link.active {
    color: var(--clr-accent);
    transform: translateX(8px);
}
.mobile-contact {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    color: #ffffff;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
    color: #ffffff;
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
}
.btn-outline:hover {
    background: var(--clr-accent);
    color: #ffffff;
    transform: translateY(-3px);
}
.btn-glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--clr-text-heading);
}
.btn-glass:hover {
    background: rgba(255,255,255,0.15);
    color: var(--clr-text-heading);
    transform: translateY(-3px);
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.8s ease, transform 8s ease;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(10,12,16,0.7) 0%,
        rgba(10,12,16,0.5) 40%,
        rgba(10,12,16,0.85) 100%
    );
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 0 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.25);
    border-radius: 50px;
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent);
    margin-bottom: 28px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.95;
    color: var(--clr-text-heading);
    margin-bottom: 24px;
    letter-spacing: 2px;
}
.hero-desc {
    font-size: 18px;
    color: var(--clr-text-muted);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--clr-text-heading);
    line-height: 1;
}
.hero-stat-label {
    display: block;
    font-size: 13px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}
.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--clr-border);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-scroll-indicator span {
    font-family: var(--font-condensed);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-text-muted);
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--clr-accent), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Section Shared ---- */
.section {
    padding: 100px 0;
    position: relative;
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.header-divider {
    width: 60px;
    height: 3px;
    background: var(--clr-accent);
    margin: 20px auto 0;
}
.section-tag {
    display: inline-block;
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--clr-accent);
    margin-bottom: 16px;
    position: relative;
}
.section-tag::before, .section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--clr-accent);
    opacity: 0.4;
}
.section-tag::before { right: calc(100% + 12px); }
.section-tag::after { left: calc(100% + 12px); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    color: var(--clr-text-heading);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 17px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* ---- Services ---- */
.services-section {
    background: var(--clr-bg-alt);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: all var(--transition-med);
    position: relative;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-hover), 0 0 40px var(--clr-accent-glow);
}
.service-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.service-card:hover .service-img {
    transform: scale(1.08);
}
.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--clr-bg-card));
}
.service-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255,255,255,0.08);
    line-height: 1;
}
.service-body {
    padding: 28px 28px 32px;
}
.service-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: var(--radius-md);
    margin-bottom: 18px;
}
.service-icon {
    width: 26px;
    height: 26px;
    color: var(--clr-secondary);
}
.service-title {
    font-family: var(--font-condensed);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-heading);
    margin-bottom: 12px;
}
.service-desc {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent);
    transition: gap var(--transition-fast);
}
.service-link:hover { gap: 12px; color: var(--clr-accent-light); }

/* ---- Promotions Section ---- */
.promo-section {
    background: var(--clr-bg-alt);
    position: relative;
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.promo-card {
    background: var(--clr-bg-card);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-med);
    display: flex;
    flex-direction: column;
}
.promo-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-secondary);
    box-shadow: var(--shadow-hover), 0 0 30px var(--clr-secondary-glow);
}
.promo-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--clr-accent);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 30px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.promo-badge.highlight {
    background: var(--clr-secondary);
}
.promo-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    text-align: center;
}
.promo-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(220,38,38,0.1);
    border: 2px solid var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform var(--transition-med);
}
.promo-card:hover .promo-icon-wrap {
    transform: scale(1.1) rotate(-10deg);
}
.promo-icon {
    width: 32px;
    height: 32px;
    color: var(--clr-secondary);
}
.promo-title {
    font-family: var(--font-condensed);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-heading);
    margin-bottom: 12px;
}
.promo-text {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}
.promo-price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-md);
    border: 1px dashed var(--clr-border);
    width: 100%;
}
.promo-discount {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--clr-secondary);
    line-height: 1;
    margin-bottom: 4px;
}
.promo-validity {
    font-size: 12px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.promo-btn {
    width: 100%;
}

/* ---- Why Choose Us ---- */
.why-section {
    background: var(--clr-bg);
    position: relative;
    overflow: hidden;
}
.why-bg-pattern, .values-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        var(--clr-accent) 40px,
        var(--clr-accent) 41px
    );
    pointer-events: none;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-med);
}
.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-hover);
}
.why-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37,99,235,0.1);
    border-radius: 50%;
    border: 1px solid rgba(37,99,235,0.2);
}
.why-icon { width: 28px; height: 28px; color: var(--clr-accent); }
.why-card h3 {
    font-family: var(--font-condensed);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-heading);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

/* ---- Gallery ---- */
.gallery-preview-section {
    background: var(--clr-bg-alt);
}
.gallery-full-section {
    background: var(--clr-bg-alt);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--clr-border);
    transition: all var(--transition-med);
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--clr-accent);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,12,16,0.7), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-overlay i {
    color: var(--clr-accent);
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
}
.gallery-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ---- Reviews ---- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.review-card {
    background: var(--clr-bg-card);
    border-left: 4px solid var(--clr-accent);
    border-radius: var(--radius-sm);
    padding: 40px;
    transition: all var(--transition-med);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    height: 100%;
}
.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 25px;
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--clr-accent);
    opacity: 0.15;
    line-height: 1;
}
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.4);
    background: var(--clr-bg-card-hover);
}
.review-stars {
    color: var(--clr-accent);
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--clr-text);
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.review-author {
    border-top: 1px solid var(--clr-border);
    padding-top: 20px;
}
.review-author strong {
    display: block;
    color: var(--clr-text-heading);
    font-family: var(--font-condensed);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.review-author span {
    display: block;
    font-size: 12px;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
    font-weight: 600;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    flex-shrink: 0;
}
.review-author strong {
    display: block;
    color: var(--clr-text-heading);
    font-size: 15px;
}
.review-meta {
    display: block;
    font-size: 12px;
    color: var(--clr-text-muted);
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}
.review-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    background: var(--clr-bg-card);
    color: var(--clr-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.review-nav-btn:hover {
    border-color: var(--clr-accent);
    background: var(--clr-accent);
    color: #ffffff;
}
.reviews-dots {
    display: flex;
    gap: 8px;
}
.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.reviews-dot.active {
    background: var(--clr-accent);
    box-shadow: 0 0 8px var(--clr-accent-glow);
}
.reviews-cta {
    text-align: center;
}

/* Reviews masonry (About page) */
.reviews-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}
.review-card-alt {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-med);
}
.review-card-alt:hover {
    border-color: var(--clr-accent);
    transform: translateY(-4px);
}
.review-card-alt .review-stars { margin-bottom: 14px; }
.review-card-alt .review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.review-card-alt p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--clr-text);
    margin-bottom: 18px;
    font-style: italic;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 6.4em;
}

/* ---- CTA Banner ---- */
.cta-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-accent-dark) 0%, var(--clr-accent) 50%, var(--clr-accent-light) 100%);
    opacity: 0.12;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}
.cta-banner-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-banner-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--clr-text-heading);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 8px;
}
.cta-banner-content p {
    font-size: 17px;
    color: var(--clr-text-muted);
}
.cta-banner-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- Contact Section ---- */
.contact-section {
    background: var(--clr-bg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-form-wrap {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px var(--clr-accent-glow);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a8f9e' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.contact-map-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    height: 340px;
}
.map-container iframe {
    display: block;
}
.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-text);
    transition: all var(--transition-fast);
}
.contact-info-card:hover {
    border-color: var(--clr-accent);
    color: var(--clr-text);
    transform: translateY(-2px);
}
.contact-info-icon {
    width: 24px;
    height: 24px;
    color: var(--clr-accent);
    flex-shrink: 0;
}
.contact-info-card strong {
    display: block;
    font-size: 14px;
    color: var(--clr-text-heading);
}
.contact-info-card span {
    display: block;
    font-size: 13px;
    color: var(--clr-text-muted);
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success i {
    width: 60px;
    height: 60px;
    color: var(--clr-success);
    margin-bottom: 16px;
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--clr-text-heading);
    margin-bottom: 8px;
}
.form-success p {
    color: var(--clr-text-muted);
}

/* ---- Page Hero (Sub-pages) ---- */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: page-hero-zoom 20s ease infinite alternate;
}
@keyframes page-hero-zoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,12,16,0.6) 0%,
        rgba(10,12,16,0.85) 100%
    );
}
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-hero-tag {
    display: inline-block;
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--clr-accent);
    margin-bottom: 16px;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 80px);
    color: var(--clr-text-heading);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 16px;
}
.page-hero-desc {
    font-size: 18px;
    color: var(--clr-text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ---- Story Section (About) ---- */
.story-section {
    background: var(--clr-bg-alt);
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-content .section-tag { margin-bottom: 12px; }
.story-content .section-title { text-align: left; margin-bottom: 24px; }
.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}
.story-content p strong { color: var(--clr-text-heading); }
.story-highlights {
    display: flex;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.story-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
}
.story-highlight i { width: 24px; height: 24px; flex-shrink: 0; }
.story-highlight strong {
    display: block;
    font-size: 15px;
    color: var(--clr-text-heading);
}
.story-highlight span {
    display: block;
    font-size: 12px;
    color: var(--clr-text-muted);
}

.story-images {
    position: relative;
}
.story-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}
.story-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.story-img-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--clr-bg-alt);
    box-shadow: var(--shadow-card);
}
.story-img-accent img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.story-exp-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-accent);
    animation: badge-float 3s ease-in-out infinite;
}
@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.story-exp-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: #ffffff;
    line-height: 1;
}
.story-exp-num sup { font-size: 18px; }
.story-exp-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
}

/* ---- Values Section ---- */
.values-section {
    background: var(--clr-bg);
    position: relative;
    overflow: hidden;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: all var(--transition-med);
}
.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-hover);
}
.value-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37,99,235,0.12);
    border-radius: 50%;
    border: 1px solid rgba(37,99,235,0.2);
}
.value-icon { width: 28px; height: 28px; color: var(--clr-accent); }
.value-card h3 {
    font-family: var(--font-condensed);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-heading);
    margin-bottom: 10px;
}
.value-card p {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

/* ---- Process Timeline ---- */
.process-section {
    background: var(--clr-bg-alt);
}
.process-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--clr-accent), var(--clr-border));
}
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    position: relative;
}
.process-step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-bg-card);
    border: 2px solid var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--clr-accent);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.process-step-content {
    flex: 1;
    padding-top: 8px;
}
.process-step-content h3 {
    font-family: var(--font-condensed);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-heading);
    margin-bottom: 6px;
}
.process-step-content p {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.65;
}
.process-step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37,99,235,0.08);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    margin-top: 6px;
}
.process-step-icon i { width: 22px; height: 22px; color: var(--clr-accent); }

/* ---- Footer ---- */
.footer {
    background: var(--clr-bg-alt);
    border-top: 1px solid var(--clr-border);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-about {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}
.footer-links-col h4 {
    font-family: var(--font-condensed);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-heading);
    margin-bottom: 18px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
    font-size: 14px;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}
.footer-links-col a:hover {
    color: var(--clr-accent);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--clr-text-muted);
}
.footer-bottom a {
    color: var(--clr-accent);
    font-weight: 600;
}

/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-med);
}
.lightbox.active {
    display: flex;
    opacity: 1;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    z-index: 2;
    transition: color var(--transition-fast);
}
.lightbox-close:hover { color: var(--clr-accent); }
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all var(--transition-fast);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover /* Carousel controls removed in favor of static grid */ {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #ffffff;
}
.lightbox-prev i, .lightbox-next i { width: 24px; height: 24px; }
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-condensed);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--clr-text-muted);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-accent);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: var(--shadow-accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-med);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--clr-accent-glow);
}
.back-to-top i { width: 22px; height: 22px; }

/* ---- Floating Particles (hero) ---- */
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--clr-accent);
    opacity: 0;
    animation: particle-float 8s ease-in-out infinite;
}
@keyframes particle-float {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-grid { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
    .why-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid .review-card:last-child { grid-column: span 2; }
    .review-card { min-width: auto; }
    .reviews-masonry { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .story-grid { gap: 40px; }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }
    .navbar .logo-name {
        font-size: 22px;
    }
    .navbar .logo-icon-img {
        width: 46px;
        height: 46px;
    }
    .top-bar-left span, .top-bar-right span { display: none; }
    .top-bar-inner { justify-content: center; gap: 20px; }
    .top-bar-left, .top-bar-right { gap: 12px; }

    .nav-menu, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .hero-content { padding: 100px 0 60px; }
    .hero-stats { gap: 24px; }
    .hero-stat-num { font-size: 36px; }
    .hero-stat-divider { height: 36px; }

    .section { padding: 70px 0; }
    .section-header { margin: 0 auto 40px; }

    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .promo-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; }
    .service-img-wrap { height: 200px; }

    .why-grid, .values-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-grid .review-card:last-child { grid-column: span 1; }
    .review-card { min-width: auto; padding: 30px 20px; }
    .review-card::before { left: 15px; top: 5px; font-size: 60px; }
    .review-card-alt { padding: 20px; }
    .reviews-masonry { grid-template-columns: 1fr; }

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

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-banner-actions { justify-content: center; }

    .story-grid { grid-template-columns: 1fr; }
    .story-images { margin-top: 20px; }
    .story-img-accent { position: relative; bottom: auto; left: auto; width: 140px; margin-top: -50px; margin-left: 20px; }
    .story-exp-badge { width: 90px; height: 90px; top: -15px; right: -10px; }
    .story-exp-num { font-size: 28px; }

    .process-timeline::before { left: 26px; }
    .process-step-num { width: 52px; height: 52px; font-size: 18px; }
    .process-step-icon { display: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }

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

    .page-hero { height: 40vh; min-height: 300px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 42px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 50px; height: 1px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
    .btn-lg { padding: 14px 24px; font-size: 14px; }
}

/* ---- Scroll-Triggered Animations ---- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Grain Overlay ---- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ---- A/B Services ---- */
.ab-services-section {
    background: var(--clr-bg);
    position: relative;
    padding-top: 100px;
}
.ab-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.ab-service-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all var(--transition-med);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ab-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-hover), 0 0 40px var(--clr-accent-glow);
}
.ab-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 20px;
}
.ab-icon {
    width: 44px;
    height: 44px;
    color: var(--clr-accent);
    flex-shrink: 0;
}
.ab-card-header h3 {
    font-family: var(--font-condensed);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-heading);
    line-height: 1.2;
}
.ab-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ab-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.4;
}
.ab-list li:last-child {
    margin-bottom: 0;
}
.check-icon {
    width: 18px;
    height: 18px;
    color: var(--clr-success);
    flex-shrink: 0;
    margin-top: 2px;
}
.plus-icon {
    width: 18px;
    height: 18px;
    color: var(--clr-accent-light);
    flex-shrink: 0;
    margin-top: 2px;
}
.ab-sub-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed var(--clr-border);
}
.ab-sub-title {
    font-family: var(--font-condensed);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent-light);
    margin-bottom: 15px;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .ab-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .ab-services-grid {
        grid-template-columns: 1fr;
    }
    .ab-service-card {
        padding: 30px;
    }
}

/* ========================================
   CARFAX Section & Footer Disclaimer
   ======================================== */
.carfax-section {
    background: var(--clr-bg-alt);
    border-top: 1px solid var(--clr-border);
}
.carfax-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.carfax-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--clr-accent);
    box-shadow: var(--shadow-card), 0 0 30px var(--clr-accent-glow);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}
.carfax-image-wrap:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover), 0 0 50px var(--clr-accent-glow);
}
.carfax-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.carfax-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.carfax-desc {
    font-size: 16px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}
.carfax-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.carfax-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.carfax-benefit i {
    width: 24px;
    height: 24px;
    color: var(--clr-accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.carfax-benefit strong {
    display: block;
    font-size: 16px;
    color: var(--clr-text-heading);
    margin-bottom: 2px;
}
.carfax-benefit span {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}
.carfax-disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(37,99,235,0.06);
    border-left: 4px solid var(--clr-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 10px;
}
.carfax-disclaimer-box i {
    width: 20px;
    height: 20px;
    color: var(--clr-accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.carfax-disclaimer-text {
    font-size: 14px;
    color: var(--clr-text-heading);
    line-height: 1.5;
    margin: 0;
}

/* Footer Bottom Disclaimer */
.footer-bottom-disclaimer {
    border-top: 1px solid var(--clr-border);
    padding: 24px 24px 10px;
    text-align: center;
}
.footer-bottom-disclaimer p {
    font-size: 14px;
    color: var(--clr-text-muted);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .carfax-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .carfax-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
}

