:root {
    --primary-blue: #0047AB;
    --light-blue: #F0F8FF;
    --light-grey: #E0E0E0;
    --dark-grey: #333333;
    --accent-gold: #FFD700;
    --subtle-red: #A52A2A;
    --white: #ffffff;
    --text-color: #333333;
    --font-primary: 'Montserrat', sans-serif;
    --font-fallback: 'Open Sans', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-fallback);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--dark-grey);
}

.btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: var(--light-blue);
}

.btn-secondary:hover {
    background-color: #003d8f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
}

.split-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.split-text:nth-child(1) { animation-delay: 0.1s; }
.split-text:nth-child(2) { animation-delay: 0.2s; }
.split-text:nth-child(3) { animation-delay: 0.3s; }

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-medium);
}

.header.scrolled {
    height: 64px;
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: block;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-grey);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
    transition: color var(--transition-fast);
}

.phone-link:hover {
    color: #003d8f;
}

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

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--primary-blue);
    position: relative;
    transition: all var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary-blue);
    transition: all var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    transition: right var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--light-grey);
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-grey);
}

.mobile-nav {
    flex: 1;
    padding: 20px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: block;
    padding: 16px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-grey);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.mobile-menu-cta {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--light-grey);
}

.mobile-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark-grey);
    padding: 12px 0;
}

.mobile-address svg {
    width: 18px;
    height: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.85) 0%, rgba(0, 71, 171, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-blue);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--light-blue);
    font-size: 12px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

/* Welcome Intro Section */
.welcome-intro {
    padding: 100px 0;
    background: var(--light-blue);
}

.welcome-intro .section-title {
    text-align: center;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content p {
    font-size: 18px;
    color: var(--dark-grey);
    margin-bottom: 20px;
    line-height: 1.8;
}

.welcome-content p:last-child {
    margin-bottom: 0;
}

/* Core Services Section */
.core-services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    display: block;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid var(--light-grey);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border-radius: 50%;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-blue);
}

.service-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--dark-grey);
    line-height: 1.6;
}

/* Why Conley Section */
.why-conley {
    background: var(--light-blue);
}

.why-conley-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.why-conley-image {
    position: relative;
    overflow: hidden;
}

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

.curtain-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    transform: translateX(0);
    transition: transform 1s ease;
}

.why-conley-image.in-view .curtain-reveal {
    transform: translateX(100%);
}

.why-conley-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-conley-content .section-title {
    text-align: left;
    margin-bottom: 32px;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid var(--light-grey);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-grey);
    text-align: left;
    transition: all var(--transition-fast);
}

.accordion-header:hover {
    background: var(--light-blue);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.accordion-content p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--dark-grey);
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--light-grey);
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-medium);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 40px;
    text-align: center;
}

.testimonial-portrait {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--dark-grey);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-card cite {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--primary-blue);
}

.carousel-btn:hover svg {
    stroke: var(--white);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark-grey);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-grey);
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* Kyle Laser Wash Promo */
.kyle-wash-promo {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.promo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s ease;
}

.kyle-wash-promo:hover .promo-bg img {
    transform: scale(1);
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.9) 0%, rgba(0, 71, 171, 0.8) 100%);
}

.promo-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.promo-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.promo-content p {
    font-size: 18px;
    color: var(--light-blue);
    margin-bottom: 32px;
}

/* About Snippet */
.about-snippet {
    padding: 100px 0;
    background: var(--light-grey);
}

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

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: var(--dark-grey);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: var(--primary-blue);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 32px;
}

.contact-cta-content {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    transition: transform var(--transition-fast);
}

.contact-phone:hover {
    transform: scale(1.05);
}

.contact-phone svg {
    width: 32px;
    height: 32px;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
}

.map-address {
    padding: 20px;
    text-align: center;
    background: var(--light-blue);
}

.map-address a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-blue);
    transition: color var(--transition-fast);
}

.map-address a:hover {
    color: #003d8f;
}

.map-address svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: var(--dark-grey);
    color: var(--light-blue);
    padding: 60px 0 20px;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--light-blue);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--light-blue);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--light-blue);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-hours {
    margin-top: 20px;
}

.footer-hours h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.footer-hours .day {
    color: var(--light-blue);
}

.footer-hours .time {
    color: var(--accent-gold);
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--light-blue);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--accent-gold);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.loader.active {
    opacity: 1;
    visibility: visible;
}

.wrench-icon {
    width: 48px;
    height: 48px;
    stroke: var(--primary-blue);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .header-container {
        padding: 0 24px;
    }

    .nav-list {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .why-conley-image {
        height: 300px;
    }

    .why-conley-content {
        padding: 60px 30px;
    }

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

    .about-image {
        order: -1;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .header {
        height: 68px;
    }

    .logo-img {
        height: 48px;
    }

    .hero {
        padding-top: 68px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 280px;
    }

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

    .welcome-intro,
    .core-services,
    .testimonials,
    .about-snippet {
        padding: 60px 0;
    }

    .welcome-content p {
        font-size: 16px;
    }

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

    .promo-content h2 {
        font-size: 28px;
    }

    .promo-content p {
        font-size: 16px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .contact-cta h2 {
        font-size: 24px;
    }

    .contact-phone {
        font-size: 22px;
    }

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

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .split-text {
        opacity: 1;
        transform: none;
    }

    .curtain-reveal {
        display: none;
    }
}

/* Additional Page Styles */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.about-hero .hero-bg,
.about-hero .hero-overlay,
.about-hero .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

/* Services Hero */
.services-hero,
.laser-wash-hero,
.contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.services-hero .hero-bg,
.services-hero .hero-overlay,
.services-hero .hero-content,
.laser-wash-hero .hero-bg,
.laser-wash-hero .hero-overlay,
.laser-wash-hero .hero-content,
.contact-hero .hero-bg,
.contact-hero .hero-overlay,
.contact-hero .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-hero .hero-content,
.laser-wash-hero .hero-content,
.contact-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.contact-quick-info {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-blue);
    font-size: 16px;
    transition: color var(--transition-fast);
}

.quick-contact:hover {
    color: var(--accent-gold);
}

.quick-contact svg {
    width: 20px;
    height: 20px;
}

/* Story Section */
.our-story {
    padding: 100px 0;
    background: var(--light-blue);
}

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

.story-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: sepia(30%);
}

.diagonal-reveal {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    clip-path: polygon(100% 0, 100% 100%, 30% 100%, 0 0);
    transition: clip-path 1s ease;
}

.story-image.in-view .diagonal-reveal {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
}

.story-content h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    color: var(--dark-grey);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Values Section */
.our-values {
    padding: 100px 0;
    background: var(--primary-blue);
}

.our-values .section-title {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-medium);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border-radius: 50%;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-blue);
}

.value-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--light-blue);
    line-height: 1.6;
}

/* Meet The Team */
.meet-the-team {
    padding: 100px 0;
    background: var(--white);
}

.team-photo {
    margin-bottom: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
    padding: 32px;
    background: var(--light-blue);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-portrait {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.team-role {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.team-card p {
    font-size: 14px;
    color: var(--dark-grey);
    line-height: 1.6;
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background: var(--light-grey);
}

.certifications-track {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    animation: scroll 20s linear infinite;
}

.cert-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.cert-logo:hover {
    opacity: 1;
}

.cert-logo svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-blue);
}

.cert-logo span {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-grey);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Community Section */
.community {
    padding: 100px 0;
    background: var(--light-blue);
}

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

.community-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    filter: grayscale(100%);
    transition: filter 1s ease;
}

.community-image.in-view {
    filter: grayscale(0%);
}

.community-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.community-content h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.community-content p {
    font-size: 16px;
    color: var(--dark-grey);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* About Contact CTA */
.about-contact-cta {
    padding: 80px 0;
    background: var(--accent-gold);
    text-align: center;
}

.about-contact-cta h2 {
    font-size: 36px;
    color: var(--dark-grey);
    margin-bottom: 24px;
}

/* Service Detail Sections */
.lube-maintenance,
.auto-repair-detail,
.tire-services-detail {
    padding: 100px 0;
    background: var(--light-blue);
}

.service-detail-grid {
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 16px;
    color: var(--dark-grey);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-benefits h3,
.process-steps h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.service-benefits ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark-grey);
}

.service-benefits li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: bold;
}

.progress-bar {
    height: 4px;
    background: var(--light-grey);
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-blue);
    width: 0;
    transition: width 1s ease;
}

.process-steps.in-view .progress-fill {
    width: 100%;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.steps-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--dark-grey);
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    font-weight: 600;
    font-size: 12px;
    flex-shrink: 0;
}

/* Split Service Grid */
.split-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.split-content h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.split-content > p {
    font-size: 16px;
    color: var(--dark-grey);
    line-height: 1.8;
    margin-bottom: 24px;
}

.repair-specialties h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.repair-specialties ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.repair-specialties li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark-grey);
}

.repair-specialties li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: bold;
}

/* Tire Services Detail */
.tire-services-detail .section-title {
    text-align: center;
}

.tire-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tire-content > p {
    font-size: 16px;
    color: var(--dark-grey);
    line-height: 1.8;
    margin-bottom: 40px;
}

.tire-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.tire-service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.tire-service-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-blue);
}

.tire-service-item span {
    font-size: 14px;
    color: var(--dark-grey);
}

/* Service FAQ */
.service-faq {
    padding: 100px 0;
    background: var(--light-grey);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--light-grey);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--white);
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-grey);
    text-align: left;
    background: var(--white);
    transition: background var(--transition-fast);
}

.faq-header:hover {
    background: var(--light-blue);
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.faq-header[aria-expanded="true"] .faq-icon {
    transform: rotate(90deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-content p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--dark-grey);
    line-height: 1.6;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
    background: var(--primary-blue);
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 18px;
    color: var(--light-blue);
    margin-bottom: 32px;
}

/* Laser Wash Sections */
.what-is-laser-wash {
    padding: 100px 0;
    background: var(--light-blue);
}

.wash-packages {
    padding: 100px 0;
    background: var(--light-grey);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: all var(--transition-medium);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 4px 16px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
}

.package-header h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 24px;
}

.package-features {
    text-align: left;
    margin-bottom: 24px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark-grey);
    padding: 8px 0;
    border-bottom: 1px solid var(--light-grey);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-blue);
    flex-shrink: 0;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-item {
    text-align: center;
    padding: 24px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border-radius: 50%;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-blue);
}

.step-item h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.step-item p {
    font-size: 14px;
    color: var(--dark-grey);
    line-height: 1.6;
}

/* Gallery */
.laser-wash-gallery {
    padding: 100px 0;
    background: var(--dark-grey);
}

.laser-wash-gallery .section-title {
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-image:hover img {
    transform: scale(1.05);
}

.sparkle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-image:hover .sparkle-overlay {
    opacity: 1;
    animation: sparkle 1s ease infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Laser Wash FAQ */
.laser-wash-faq {
    padding: 100px 0;
    background: var(--light-blue);
}

/* Laser Wash CTA */
.laser-wash-cta {
    padding: 80px 0;
    background: var(--accent-gold);
    text-align: center;
}

.laser-wash-cta h2 {
    font-size: 36px;
    color: var(--dark-grey);
    margin-bottom: 16px;
}

.laser-wash-cta p {
    font-size: 18px;
    color: var(--dark-grey);
    margin-bottom: 32px;
}

/* Contact Options */
.contact-options {
    padding: 100px 0;
    background: var(--light-grey);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-option {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-medium);
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-option:hover .option-icon {
    transform: scale(1.1);
}

.option-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.option-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-blue);
}

.contact-option h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-option p {
    font-size: 14px;
    color: var(--dark-grey);
    margin-bottom: 16px;
}

.option-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    transition: color var(--transition-fast);
}

.option-link:hover {
    color: #003d8f;
}

.hours-list {
    text-align: left;
    margin-top: 12px;
}

.hours-list p {
    font-size: 13px;
    color: var(--dark-grey);
    margin-bottom: 4px;
}

/* Contact Form */
.contact-form-section {
    padding: 100px 0;
    background: var(--white);
}

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

.form-content h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.form-content > p {
    font-size: 16px;
    color: var(--dark-grey);
    line-height: 1.8;
}

.form-wrapper {
    background: var(--light-blue);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--light-grey);
    border-radius: var(--radius-md);
    font-family: var(--font-fallback);
    font-size: 16px;
    background: var(--white);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -8px;
    left: 12px;
    font-size: 12px;
    background: var(--light-blue);
    padding: 0 4px;
    color: var(--primary-blue);
}

.form-group select {
    cursor: pointer;
}

/* Additional responsive styles */
@media (max-width: 1023px) {
    .story-grid,
    .community-grid,
    .split-service-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .values-grid,
    .steps-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .service-benefits ul,
    .steps-list {
        grid-template-columns: 1fr;
    }
    
    .tire-services-list {
        flex-direction: column;
    }
    
    .form-wrapper {
        padding: 24px;
    }
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #003d8f;
}