    /* ============================================
       Ben Pouliot, Realtor — Custom Styles
       ============================================ */

    /* Base */
    *, *::before, *::after {
        box-sizing: border-box;
    }

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

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

    /* ============================================
       Navigation
       ============================================ */
    #navbar {
        background: rgba(253, 248, 245, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(107, 15, 26, 0.06);
    }

    #navbar.scrolled {
        background: rgba(253, 248, 245, 0.95);
        box-shadow: 0 1px 20px rgba(107, 15, 26, 0.06);
    }

    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1.5px;
        background: #6B0F1A;
        transition: width 0.3s ease;
    }

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

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

    .mobile-link {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

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

    #mobileMenu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
    #mobileMenu.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
    #mobileMenu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
    #mobileMenu.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }
    #mobileMenu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }

    /* Hamburger */
    #menuBtn.active .menu-line:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    #menuBtn.active .menu-line:nth-child(2) {
        opacity: 0;
        transform: translateX(-8px);
    }
    #menuBtn.active .menu-line:nth-child(3) {
        transform: translateY(-4px) rotate(-45deg);
        width: 5px;
    }

    /* ============================================
       Hero
       ============================================ */
    .hero-content {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.8s ease forwards;
    }

    .hero-image {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.8s ease 0.2s forwards;
    }

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

    /* ============================================
       About Section
       ============================================ */
    .about-image {
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .about-image.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .about-content {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
    }

    .about-content.visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* ============================================
       Service Cards
       ============================================ */
    .service-card {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .service-card:nth-child(1) { transition-delay: 0s; }
    .service-card:nth-child(2) { transition-delay: 0.08s; }
    .service-card:nth-child(3) { transition-delay: 0.16s; }
    .service-card:nth-child(4) { transition-delay: 0.24s; }
    .service-card:nth-child(5) { transition-delay: 0.32s; }
    .service-card:nth-child(6) { transition-delay: 0.4s; }

    /* ============================================
       Area Cards
       ============================================ */
    .area-card {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .area-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .area-card:nth-child(1) { transition-delay: 0s; }
    .area-card:nth-child(2) { transition-delay: 0.1s; }
    .area-card:nth-child(3) { transition-delay: 0.2s; }
    .area-card:nth-child(4) { transition-delay: 0.3s; }

    /* ============================================
       Testimonial Cards
       ============================================ */
    .testimonial-card {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .testimonial-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .testimonial-card:nth-child(1) { transition-delay: 0s; }
    .testimonial-card:nth-child(2) { transition-delay: 0.12s; }
    .testimonial-card:nth-child(3) { transition-delay: 0.24s; }

    /* ============================================
       Form Inputs
       ============================================ */
    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
    }

    /* ============================================
       Selection
       ============================================ */
    ::selection {
        background: rgba(107, 15, 26, 0.12);
        color: #6B0F1A;
    }

    /* ============================================
       Scrollbar
       ============================================ */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #FDF8F5;
    }
    ::-webkit-scrollbar-thumb {
        background: #d4a58a;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #6B0F1A;
    }

    /* ============================================
       Responsive
       ============================================ */
    @media (max-width: 767px) {
        html {
            scroll-padding-top: 70px;
        }

        #navbar .px-6 {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
        .hero-content {
            padding-right: 2rem;
        }
    }
