    /* ============================================
       Hollingshead Auto Repair - Custom Styles
       ============================================ */

    /* Base Reset & Smooth Scrolling */
    html {
        scroll-behavior: smooth;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Selection Color */
    ::selection {
        background-color: #b5442f;
        color: #fdfcfa;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #faf6f0;
    }

    ::-webkit-scrollbar-thumb {
        background: #d4aa65;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #b5442f;
    }

    /* ============================================
       Hero Animations
       ============================================ */
    .hero-eyebrow,
    .hero-headline,
    .hero-subhead,
    .hero-cta,
    .hero-trust {
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-eyebrow {
        animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    }

    .hero-headline {
        animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    }

    .hero-subhead {
        animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    }

    .hero-cta {
        animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    }

    .hero-trust {
        animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
    }

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

    /* ============================================
       Section Animations
       ============================================ */
    .section-eyebrow,
    .section-title {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .section-eyebrow.visible,
    .section-title.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ============================================
       Service Cards
       ============================================ */
    .service-card {
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(181, 68, 47, 0.08);
    }

    /* ============================================
       Why Us Cards
       ============================================ */
    .why-card {
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .why-card:hover {
        transform: translateY(-4px);
    }

    /* ============================================
       Navbar Scroll State
       ============================================ */
    .navbar-scrolled {
        background-color: rgba(253, 252, 250, 0.95) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    }

    .navbar-scrolled .menu-line {
        background-color: #1c1917;
    }

    /* ============================================
       Mobile Menu
       ============================================ */
    #mobile-menu.menu-open {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #mobile-menu.menu-open .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }

    #mobile-menu.menu-open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
    #mobile-menu.menu-open .mobile-link:nth-child(2) { transition-delay: 0.2s; }
    #mobile-menu.menu-open .mobile-link:nth-child(3) { transition-delay: 0.3s; }
    #mobile-menu.menu-open .mobile-link:nth-child(4) { transition-delay: 0.4s; }
    #mobile-menu.menu-open .mobile-link:nth-child(5) { transition-delay: 0.5s; }

    /* Menu button animation */
    .menu-line:first-child {
        transform-origin: center;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .menu-line:last-child {
        transform-origin: center;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #menu-btn.active .menu-line:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    #menu-btn.active .menu-line:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }

    /* ============================================
       Back to Top Button
       ============================================ */
    #back-to-top.visible {
        opacity: 1;
        pointer-events: all;
    }

    /* ============================================
       Form Styles
       ============================================ */
    input:focus,
    textarea:focus,
    select:focus {
        border-bottom-color: #b5442f !important;
    }

    /* ============================================
       Image Hover Effects
       ============================================ */
    .overflow-hidden img {
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .overflow-hidden:hover img {
        transform: scale(1.02);
    }

    /* ============================================
       Responsive Adjustments
       ============================================ */
    @media (max-width: 768px) {
        .font-serif {
            line-height: 1.15;
        }
    }

    @media (min-width: 769px) and (max-width: 1023px) {
        .service-card,
        .why-card {
            padding: 2rem !important;
        }
    }

    /* ============================================
       Print Styles
       ============================================ */
    @media print {
        nav, #back-to-top, #contact-form {
            display: none;
        }

        body {
            color: #000;
            background: #fff;
        }

        .text-terracotta-600 {
            color: #b5442f !important;
        }
    }
