
        /* ===== CSS RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #1A2B4A;
            --secondary-blue: #2C3E50;
            --light-gray: #F5F7FA;
            --medium-gray: #8A9299;
            --dark-gray: #333333;
            --accent-red: #C62828;
            --accent-silver: #C0C6CC;
            --white: #FFFFFF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            font-size: 1.125rem;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
            width: 100%;
        }

   .loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1090;
    color: darkred;
    
    /* Add these to ensure proper display */
    display: block;
    margin: 0;
    padding: 0;
    pointer-events: none; /* Allows clicks to pass through if needed */
    
    /* If it's an image, ensure proper sizing */
    max-width: 100%;
    height: auto;
}

/* If your loader contains an image, add this */
.loader img {
    display: block;
    margin: 0 auto;
}



        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 700;
        }

        h2 {
            font-size: 2.5rem;
            position: relative;
            margin-bottom: 2.5rem;
        }

        h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background-color: var(--accent-red);
        }

        h3 {
            font-size: 1.75rem;
        }

        h4 {
            font-size: 1.25rem;
        }

        p {
            margin-bottom: 1.5rem;
        }

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

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

        .btn {
            display: inline-block;
            padding: 14px 32px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            text-align: center;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .btn-primary {
            background-color: var(--accent-red);
            color: var(--white);
        }

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

        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

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

        .btn-outline {
            background-color: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .btn-outline:hover {
            background-color: var(--primary-blue);
            color: var(--white);
            transform: translateY(-3px);
        }

        section {
            padding: 80px 0;
            width: 100%;
        }

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

        .section-title-center::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* ===== ENHANCED HERO SECTION ===== */
        .hero {
            height: 100vh;
            min-height: 700px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: left;
            width: 100%;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        /* Video Background */
        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.4);
        }

        /* Animated Overlay */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 43, 74, 0.85) 0%, rgba(44, 62, 80, 0.7) 100%);
            z-index: 0;
        }

        /* Animated Elements */
        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(198, 40, 40, 0.1);
            animation: float 6s infinite ease-in-out;
        }

        .hero-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            right: 5%;
            animation-delay: 0s;
        }

        .hero-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: 15%;
            left: 10%;
            animation-delay: 2s;
        }

        .hero-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 50%;
            right: 20%;
            animation-delay: 4s;
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero h1 {
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            font-weight: 300;
        }

        .hero-highlight {
            color: #FFD700;
            font-weight: 600;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
        }

        /* Stats Counter */
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Floating Trust Badges */
        .trust-badges {
            position: absolute;
            bottom: 40px;
            right: 40px;
            z-index: 2;
            display: flex;
            gap: 15px;
        }

        .badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .badge:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
        }

        .badge-icon {
            color: #FFD700;
            font-size: 1.5rem;
        }

        .badge-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

        .scroll-arrow {
            width: 30px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 15px;
            position: relative;
        }

        .scroll-arrow::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 10px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 2px;
            animation: scroll 2s infinite;
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

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

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

        @keyframes scroll {
            0% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
            100% {
                opacity: 0;
                transform: translateX(-50%) translateY(20px);
            }
        }

        /* Stats Counter Animation */
        .count-up {
            opacity: 0;
            transform: translateY(20px);
            transition: all 1s ease;
        }

        .count-up.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== HEADER & NAVIGATION ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(26, 43, 74, 0.95);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            z-index: 1001;
        }

        .logo span {
            color: var(--accent-red);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-red);
            transition: var(--transition);
        }

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

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            background-color: var(--light-gray);
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary-blue);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-top-color: var(--accent-red);
        }

        .service-icon {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin: 30px 0 20px;
        }

        .service-content {
            padding: 0 25px 30px;
        }

        .service-content h3 {
            margin-bottom: 15px;
        }

        .service-content p {
            color: var(--medium-gray);
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: var(--accent-red);
            font-size: 0.95rem;
        }

        .service-link i {
            transition: var(--transition);
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* ===== WHY CHOOSE US SECTION ===== */
        .why-us-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-us-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .why-us-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .why-us-image:hover img {
            transform: scale(1.03);
        }

        .why-us-items {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .why-us-item {
            display: flex;
            gap: 20px;
        }

        .why-us-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-red);
            min-width: 50px;
        }

        .why-us-text h4 {
            margin-bottom: 8px;
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials {
            background-color: var(--light-gray);
        }

        .testimonials-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            margin-top: 50px;
        }

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

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 0 10px;
        }

        .testimonial-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 40px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 5rem;
            color: rgba(26, 43, 74, 0.1);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-rating {
            color: #FFC107;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            color: var(--medium-gray);
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-blue);
        }

        .author-info h4 {
            margin-bottom: 5px;
        }

        .author-vehicle {
            color: var(--medium-gray);
            font-size: 0.95rem;
        }

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

        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--white);
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-btn:hover {
            background-color: var(--primary-blue);
            color: var(--white);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--accent-silver);
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active {
            background-color: var(--primary-blue);
        }

        /* ===== PROCESS SECTION ===== */
        .process-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 60px;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-silver);
            z-index: 1;
        }

        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 20%;
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--white);
            border: 2px solid var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .process-step:hover .step-number {
            background-color: var(--primary-blue);
            color: var(--white);
        }

        .step-icon {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary-blue);
        }

        .step-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            margin-bottom: 10px;
            text-align: center;
        }

        .step-desc {
            text-align: center;
            color: var(--medium-gray);
            font-size: 0.95rem;
            padding: 0 10px;
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            background-color: var(--light-gray);
        }

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

        .contact-form-container {
            background-color: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            color: var(--primary-blue);
        }

        .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--accent-silver);
            border-radius: 4px;
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(26, 43, 74, 0.1);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            margin-bottom: 8px;
        }

        .hours-list {
            list-style: none;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--accent-silver);
        }

        /* ===== FOOTER ===== */
        footer {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 70px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 25px;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: var(--accent-red);
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .hours-list-footer li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

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

        .social-links a:hover {
            background-color: var(--accent-red);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .footer-links-bottom {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }

        .footer-links-bottom a {
            color: rgba(255, 255, 255, 0.7);
        }

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

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1024px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .services-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
                gap: 40px;
            }
            
            .process-step {
                width: 45%;
            }
            
            .process-steps::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            /* Mobile Navigation */
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--primary-blue);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 30px 30px;
                transition: left 0.3s ease;
                z-index: 999;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
                margin: 0;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 0 0 20px 0;
                width: 100%;
            }
            
            .nav-links a {
                display: block;
                padding: 10px 0;
                font-size: 1.1rem;
                width: 100%;
            }
            
            .nav-links a.btn-primary {
                display: inline-block;
                width: auto;
                padding: 10px 20px;
                margin-top: 10px;
            }
            
            /* Mobile Hero Section */
            .hero {
                height: 100vh;
                min-height: 100vh;
                padding: 100px 0 60px;
                text-align: center;
            }
            
            .hero-content {
                text-align: center;
                width: 100%;
                max-width: 100%;
            }
            
            .hero h1 {
                font-size: 2.2rem;
                padding: 0 15px;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                padding: 0 20px;
                margin-bottom: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 40px;
                padding: 0 20px;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 25px;
                margin-top: 40px;
                padding: 0 20px;
            }
            
            .stat-item {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 8px;
                padding: 20px;
                border: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .hero-shapes {
                display: none;
            }
            
            .trust-badges {
                display: none;
            }
            
            .scroll-indicator {
                bottom: 20px;
            }
            
            /* Other Mobile Adjustments */
            .services-container {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                margin: 0 10px;
            }
            
            .why-us-container {
                grid-template-columns: 1fr;
            }
            
            .why-us-image {
                margin-bottom: 30px;
            }
            
            .testimonial-card {
                padding: 30px 20px;
                margin: 0 10px;
            }
            
            .process-step {
                width: 100%;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .contact-form-container {
                padding: 30px 20px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            section {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            .container {
                padding: 0 15px;
            }
        }

        /* Fade-in Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Prevent body scroll when menu is open */
        body.menu-open {
            overflow: hidden;
        }

        /* Backdrop for mobile menu */
        .menu-backdrop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
        }

        .menu-backdrop.active {
            display: block;
        }
