/* ===== CSS RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a2540;
    --primary-dark: #04101d;
    /* Very dark blue for footer/hero background */
    --primary-light: #1a4a7a;
    --accent: #3b9eff;
    --accent-dark: #2d7fd9;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #60b3ff 100%);
    --gradient-hero: linear-gradient(135deg, #0a2540 0%, #1a4a7a 50%, #2d6a9f 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(59, 158, 255, 0.3);
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    --transition: 300ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    height: 70px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 24px;
}

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

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.service-toggle {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    padding: 4px;
    border-radius: var(--radius-full);
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--gray-500);
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn:hover {
    color: var(--primary);
}

.toggle-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow);
}

.toggle-icon {
    width: 18px;
    height: 18px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--gradient-accent);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(59, 158, 255, 0.4);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero.windows-hero {
    background: url('images/hero_windows.jpg') right center / cover no-repeat;
}

.hero.detailing-hero {
    background: url('images/hero_detailing.jpg') center center / cover no-repeat;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 158, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 106, 159, 0.3) 0%, transparent 50%);
}

.hero.windows-hero .hero-bg {
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.85) 0%, rgba(45, 106, 159, 0.7) 100%);
}

.hero.detailing-hero .hero-bg {
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.85) 0%, rgba(45, 106, 159, 0.7) 100%);
}

.hero-particles {
    display: none;
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 120px;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-accent {
    display: block;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(59, 158, 255, 0.5);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.windows-hero .hero-visual {
    display: none;
}

.windows-hero .hero-container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
}

.windows-hero .hero-content {
    grid-column: 1;
    max-width: 600px;
}

.windows-hero .hero-ctas {
    justify-content: flex-start;
}

.windows-hero .hero-trust {
    justify-content: flex-start;
}

.detailing-hero .hero-visual {
    display: none;
}

.detailing-hero .hero-container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
}

.detailing-hero .hero-content {
    grid-column: 1;
    max-width: 600px;
}

.detailing-hero .hero-ctas {
    justify-content: flex-start;
}

.detailing-hero .hero-trust {
    justify-content: flex-start;
}

.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-image-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(59, 158, 255, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-mascot {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.card-1 {
    top: 20%;
    left: -30px;
}

.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-services {
    margin: 40px auto;
    max-width: 900px;
}

.service-card-image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 400px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.comparison-section .section-description {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    cursor: ew-resize;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-after {
    z-index: 1;
}

.comparison-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.comparison-label {
    position: absolute;
    bottom: 16px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-before .comparison-label {
    left: 16px;
}

.comparison-after .comparison-label {
    right: 16px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

.handle-line {
    flex: 1;
    width: 3px;
    background: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.handle-circle {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.handle-circle svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.comparison-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 20;
    -webkit-appearance: none;
    appearance: none;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .comparison-slider {
        aspect-ratio: 4 / 5;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 0;
    background: var(--off-white);
    overflow: hidden;
}

.gallery-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: center;
}

.gallery-scroll-wrapper {
    height: 600px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    position: relative;
    box-shadow: var(--shadow-xl);
}

.gallery-scroll-wrapper::before,
.gallery-scroll-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 10;
    pointer-events: none;
}

.gallery-scroll-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom, var(--off-white) 0%, transparent 100%);
}

.gallery-scroll-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, var(--off-white) 0%, transparent 100%);
}

.gallery-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollGallery 25s linear infinite;
}

@keyframes scrollGallery {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.gallery-scroll-wrapper:hover .gallery-scroll-track {
    animation-play-state: paused;
}

.gallery-image {
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 350px;
    aspect-ratio: 5 / 4;
    background: var(--gray-100);
}

.gallery-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

.gallery-content {
    padding: 20px 0;
}

.gallery-content .section-tag {
    display: inline-block;
}

.gallery-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.gallery-description {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 40px;
}

.gallery-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ===== COLUMNS GALLERY (Vertical Marquee) ===== */
.columns-gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.columns-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.columns-gallery::before,
.columns-gallery::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 2;
    pointer-events: none;
}

.columns-gallery::before {
    top: 0;
    background: linear-gradient(to bottom, #f8fafc 0%, transparent 100%);
}

.columns-gallery::after {
    bottom: 0;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
}

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

.column-up {
    animation: scrollUp 25s linear infinite;
}

.column-down {
    animation: scrollDown 25s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Pause only the hovered column */
.column-track:hover {
    animation-play-state: paused;
}

.gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    background: var(--gray-100);
    aspect-ratio: 4 / 5;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(59, 158, 255, 0.1) 0%, rgba(59, 158, 255, 0.2) 100%);
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step-card {
    position: relative;
    flex: 1;
    max-width: 320px;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, rgba(59, 158, 255, 0.1) 0%, rgba(59, 158, 255, 0.2) 100%);
}

.step-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.step-connector {
    width: 80px;
    color: var(--gray-300);
}

/* ===== SERVICES FEATURE ===== */
.services-feature {
    padding: 120px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.services-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 158, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(45, 106, 159, 0.2) 0%, transparent 50%);
}

.feature-content {
    position: relative;
    text-align: center;
    color: var(--white);
}

.feature-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.rotating-text-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
    height: 1.2em;
    width: 5.5em;
    /* Fixed width to accommodate longest word (skylights) */
    text-align: left;
}

.rotating-text {
    display: block;
    color: var(--accent);
    animation: slideUp 0.4s ease-out;
}

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

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.services-feature .btn-primary {
    font-size: 1.1rem;
    padding: 18px 36px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 158, 255, 0.1) 0%, rgba(59, 158, 255, 0.2) 100%);
    border-radius: var(--radius);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent-dark);
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}

a.contact-value:hover {
    color: var(--accent-dark);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group label .optional {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(59, 158, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Service Checkboxes */
.service-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-group {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 16px;
}

.checkbox-group-label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.checkbox-item:hover {
    color: var(--primary);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked+.checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-item input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-item input[type="checkbox"]:checked~* {
    color: var(--primary);
    font-weight: 500;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Brand Column */
.footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-name {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
}

.footer-desc {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

.satisfaction-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
}

.badge-icon {
    width: 18px;
    height: 18px;
}

/* Headings & Links */
.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links-list,
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-list a {
    color: var(--gray-300);
    transition: var(--transition);
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.view-all-link {
    font-size: 0.9rem;
    color: var(--accent) !important;
    font-weight: 500;
}

/* Contact Specific */
.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--white);
}

.contact-link svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

/* Social Buttons */
.footer-social-new {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-btn.facebook:hover {
    background: #1877F2;
}

.social-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gray-400);
}

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

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }

    .brand-col {
        grid-column: 1 / -1;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-ctas,
    .hero-trust {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .steps-grid {
        flex-direction: column;
        gap: 30px;
    }

    .step-connector {
        transform: rotate(90deg);
        width: 40px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-scroll-wrapper {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-content {
        text-align: center;
    }

    .gallery-content .section-title {
        text-align: center;
    }

    .gallery-stats {
        justify-content: center;
    }

    .gallery-content .btn {
        width: auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 24px);
        top: 12px;
        height: auto;
        padding: 12px;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 12px;
        padding: 0;
    }

    .logo {
        flex: 1;
    }

    .logo-text {
        font-size: 1rem;
    }

    .service-toggle {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .toggle-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .nav-cta {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .hero {
        padding-top: 160px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

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

    .contact-form-wrapper {
        padding: 24px;
    }

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

    .footer-brand {
        flex-direction: column;
    }

    .footer-tagline {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.faq-item details {
    width: 100%;
}

.faq-item summary {
    list-style: none;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--gray-600);
    line-height: 1.7;
    border-top: 1px solid transparent;
    animation: slideDown 0.3s ease-out;
}

.faq-item details[open] summary {
    border-bottom: 1px solid var(--gray-100);
}

/* Updated Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
    }

    .faq-item summary {
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }
}

/* ===== SERVICE AREA SECTION ===== */
.service-area-section {
    padding: 100px 0;
    background: #f0f7ff;
    /* Light blue tint */
}

.service-area-grid {
    max-width: 900px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.service-area-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.service-area-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-area-card summary {
    list-style: none;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
}

.service-area-card summary::-webkit-details-marker {
    display: none;
}

.area-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.state-icon {
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.state-icon.nh {
    background: var(--accent);
    color: var(--primary);
}

.area-icon {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.service-area-card details[open] .area-icon {
    transform: rotate(180deg);
}

.area-list {
    padding: 0 24px 24px;
    border-top: 1px solid var(--gray-100);
    animation: slideDown 0.3s ease-out;
}

.town-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    list-style: none;
    margin-top: 16px;
}

.town-grid li {
    font-size: 0.95rem;
    color: var(--gray-600);
    padding-left: 12px;
    position: relative;
}

.town-grid li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

@media (max-width: 768px) {
    .service-area-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ABOUT TEASER ===== */
/* ===== ABOUT TEASER ===== */
.about-teaser {
    padding: 100px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

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

.teaser-content {
    text-align: left;
}

.teaser-content .section-description {
    margin-bottom: 30px;
}

.teaser-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
    transition: var(--transition);
}

.teaser-image:hover {
    transform: scale(1.02);
}

.teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .teaser-content {
        text-align: center;
        order: 2;
        /* Image on top? Let's check user preference. Usually content first on mobile is better for story. Keep content on top. */
        order: 1;
    }

    .teaser-image {
        order: 2;
        transform: rotate(0deg);
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
    margin: 0 20px;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

/* ===== ACETERNITY TIMELINE ===== */
.timeline-container {
    display: flex;
    gap: 60px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 20px;
}

.timeline-left {
    flex-shrink: 0;
    width: 60px;
    position: relative;
}

.timeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
}

.timeline-line-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--gray-200) 10%, var(--gray-200) 90%, transparent 100%);
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    /* Revert to thinner beam as per design */
    height: 0%;
    z-index: 5;
    background-color: transparent;
    /* Remove solid fallback to allow transparency effect */
    /* Aceternity Exact Gradient: Purple(0%) -> Blue(10%) -> Transparent */
    background: linear-gradient(to top,
            #a855f7 0%,
            #3b82f6 10%,
            transparent 100%);
    box-shadow: 0 0 24px rgba(34, 42, 53, 0.06), 0 1px 1px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(34, 42, 53, 0.04);
    /* Subtle shadow from snippet? No, the snippet uses shadow on images. The beam uses: from-purple-500 via-blue-500 */
    /* Adding a glow because the snippet beam is a gradient-to-t */
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    border-radius: 999px;
    transition: height 0.05s linear, opacity 0.1s ease;
    max-height: 100%;
}

.timeline-content {
    flex-grow: 1;
    padding-bottom: 40px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    /* Ensure content aligns with dots */
    padding-top: 5px;
}

.timeline-dot-wrapper {
    position: absolute;
    left: -91px;
    /* 60px gap + 30px half-width of left col + 1px adjust */
    top: 5px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 3px solid var(--gray-300);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
    background: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(59, 158, 255, 0.2);
    transform: scale(1.2);
}

.timeline-text-content {
    background: var(--white);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .timeline-container {
        gap: 20px;
    }

    .timeline-left {
        width: 30px;
    }

    .timeline-dot-wrapper {
        left: -37px;
    }
}

/* ===== MOBILE HERO OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    .hero-container {
        display: flex !important;
        /* Switch to flex to avoid grid constraints */
        flex-direction: column;
        padding-top: 80px;
        /* Reduced further to show more bg */
        padding-bottom: 40px;
        /* Compact bottom */
        padding-left: 20px;
        /* Standard mobile padding for left align */
        padding-right: 20px;
        text-align: left !important;
        /* Left align everything */
        gap: 16px;
        /* Tighter gap */
        width: 100%;
        max-width: 100% !important;
    }

    .windows-hero .hero-container,
    .detailing-hero .hero-container {
        text-align: left;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Align items to start */
    }

    .hero-title {
        font-size: 2rem;
        /* Smaller font to save space */
        /* Slightly smaller to fit more text */
        margin-bottom: 8px;
        /* Tighter margin */
        width: 100%;
        line-height: 1.1;
        text-align: left;
    }

    /* Force title to stack as requested */
    .hero-title .title-line,
    .hero-title .title-accent {
        display: block !important;
        margin-right: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        /* Reduced margin */
        width: 100%;
        max-width: 100%;
        padding: 0;
        text-align: left;
        margin-left: 0;
    }

    .hero-ctas {
        width: 100%;
        gap: 12px;
        margin-bottom: 16px;
        /* Reduced margin */
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 0;
    }

    .windows-hero .hero-trust,
    .detailing-hero .hero-trust {
        justify-content: flex-start;
        /* Left align for trust badges too */
        margin-left: -8px;
        /* Offset padding */
    }

    /* Ensure background is readable but visible */
    .hero-bg {
        /* Reduced opacity from 0.9/0.8 to 0.75/0.65 to show more image */
        background: linear-gradient(180deg, rgba(10, 61, 98, 0.75) 0%, rgba(45, 106, 159, 0.65) 100%) !important;
    }

    /* Fix Rotating Text wrapping */
    .feature-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        white-space: nowrap;
        display: flex;
        justify-content: center;
        gap: 0.2em;
        width: 100%;
        padding: 0 10px;
    }

    .rotating-text-wrapper {
        width: auto;
        min-width: 120px;
        text-align: left;
    }

    /* Fix Service Grid Layout (2x2) and spacing */
    .services-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        gap: 12px;
        margin-bottom: 60px;
        /* Push button down */
    }

    /* Adjust Detailing Hero Background Position to show people */
    .hero.detailing-hero {
        background-position: 75% center !important;
    }
}

/* ===== ABOUT PAGE STYLES (Migrated) ===== */
.about-hero {
    padding: 180px 0 80px;
    background: var(--primary-dark);
    color: white;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.about-hero .container {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 20px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}

/* Note: .hero-title and .hero-subtitle reuse existing classes but might need specific overrides if structurally different */

.about-content-section {
    padding: 0 0 80px;
    background: var(--white);
}

.story-block {
    margin-bottom: 60px;
}

.story-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.why-choose-list {
    list-style: none;
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.check-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.mission-box {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
    margin-top: 40px;
}

.mission-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    font-style: italic;
}

/* About Page Mobile Fixes */
@media (max-width: 768px) {
    .about-hero {
        padding-top: 220px !important;
        /* Extra padding to clear mobile nav */
        padding-bottom: 60px;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    /* Fix Footer Social Icons Size explicitly on mobile */
    .footer-social-new .social-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
    }

    .footer-social-new .social-btn svg {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px;
    }

    /* Ensure footer grid stacks */
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}