        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Core brand colors */
            --primary-color: #0056b3;
            --secondary-color: #e63946;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --dark-bg: #343a40;

            /* UI elements */
            --transition: all 0.3s ease;
            --container-width: min(90%, 1200px);
            --border-radius: 15px;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --shadow-strong: 0 8px 20px rgba(0, 0, 0, 0.15);

            /* Typography */
            --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
            --font-size-base: 16px;
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
            --font-weight-extrabold: 800;

            /* Spacing */
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 1.5rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-xxl: 5rem;
        }

        html {
            scroll-behavior: smooth;
            font-size: var(--font-size-base);
        }

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

        /* Container */
        .container {
            width: var(--container-width);
            margin: 0 auto;
        }

        /* Navigation */
        header {
            background: #ffffff;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scroll-down {
            transform: translateY(-100%);
        }

        header.scroll-up {
            transform: translateY(0);
        }

        nav {
            width: var(--container-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            position: relative;
        }

        .logo {
            font-size: clamp(1.25rem, 2vw, 1.5rem);
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            z-index: 1001;
        }

        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1010;
        }

        .mobile-menu-btn .bar {
            display: block;
            width: 25px;
            height: 2px;
            margin: 6px auto;
            background-color: var(--primary-color);
            transition: all 0.3s ease-in-out;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

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

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

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1200&q=80') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 4rem 1rem;
        }

        .hero-content {
            width: var(--container-width);
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: clamp(1rem, 3vw, 1.5rem);
            line-height: 1.2;
            font-weight: 800;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            margin-bottom: clamp(2rem, 4vw, 2.5rem);
            opacity: 0.9;
        }

        .emergency-contact-hero {
            background: rgba(230, 57, 70, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: clamp(1.5rem, 3vw, 2rem);
            border-radius: var(--border-radius);
            margin-bottom: clamp(2rem, 4vw, 2.5rem);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transform: translateY(0);
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .emergency-contact-hero:hover {
            transform: translateY(-5px);
            background: rgba(230, 57, 70, 0.35);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 10px 25px rgba(230, 57, 70, 0.5);
        }

        .emergency-label {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 1);
            font-weight: 600;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .emergency-contact-hero .phone-number {
            font-size: clamp(2rem, 6vw, 3.5rem);
            color: white;
            text-decoration: none;
            font-weight: 800;
            display: block;
            transition: var(--transition);
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .emergency-contact-hero .phone-number:hover {
            transform: scale(1.05);
            color: white;
            text-decoration: underline;
        }

        /* Service Cards */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: clamp(1.5rem, 3vw, 2.5rem);
            width: var(--container-width);
            margin: 2rem auto;
        }

        .service-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            isolation: isolate;
        }

        .service-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.8) 100%);
            z-index: -1;
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-image {
            width: 100%;
            padding-top: 66%;
            /* 2:3 Aspect ratio */
            position: relative;
            overflow: hidden;
        }

        .service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg,
                    rgba(0, 0, 0, 0) 0%,
                    rgba(0, 0, 0, 0.2) 100%);
            z-index: 1;
            transition: opacity 0.3s ease;
        }

        .service-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 1.8rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 1) 5%);
        }

        .service-card h3 {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        .service-card:hover h3::after {
            width: 60px;
        }

        .service-card p {
            color: #666;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-card .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
            margin-top: auto;
        }

        .service-card .service-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-link {
            gap: 0.8rem;
        }

        .service-card:hover .service-link::after {
            transform: translateX(3px);
        }

        /* Service card animations */
        .service-card {
            opacity: 0;
            transform: translateY(20px);
        }

        .service-card.animate-in {
            animation: cardFadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        }

        @keyframes cardFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        /* Contact Cards */
        .contact-card {
            background: white;
            padding: clamp(1.5rem, 3vw, 2rem);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            height: 100%;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .contact-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: clamp(1.2rem, 2vw, 1.5rem);
        }

        .contact-card .phone-number {
            font-size: clamp(1.5rem, 3vw, 1.8rem);
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: bold;
            display: block;
            margin: 1rem 0;
            transition: var(--transition);
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 1rem;
            background: #f8f9fa;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background: #e9ecef;
        }

        .faq-icon {
            transition: transform 0.3s;
            font-size: 0.8rem;
        }

        .faq-answer {
            padding: 1rem;
            background: white;
        }

        .faq-answer ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .faq-answer li {
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 5%;
            }

            .mobile-menu-btn {
                display: block;
                z-index: 1010;
            }

            /* Hamburger menu animation */
            .mobile-menu-btn.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .mobile-menu-btn.active .bar:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-btn.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                height: 100vh; /* Explicitly set height */
                overflow-y: auto; /* Enable vertical scrolling */
                background: #ffffff;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
                z-index: 1000;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-links a {
                font-size: 1.2rem;
                padding: 1rem 2rem;
                width: 100%; /* Make links fill the width */
                background: var(--light-bg); /* Add default background */
                text-align: center;
                border-radius: 8px;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .nav-links a:hover {
                background: var(--light-bg); /* Keep same hover background or adjust */
            }

            .nav-links a::before {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 3px;
                background: var(--primary-color);
                transform: scaleX(0);
                transform-origin: right;
                transition: transform 0.3s ease;
            }

            .nav-links a:hover::before {
                transform: scaleX(1);
                transform-origin: left;
            }

            .nav-links a::after {
                display: none;
            }

            /* Prevent body scroll when menu is open */
            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
                height: 100%;
            }

            .hero {
                padding-top: 6rem;
            }

            .emergency-contact-hero {
                margin: 2rem auto;
            }

            .service-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-info {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        .animate-in {
            animation: fadeIn 0.6s ease forwards;
        }

        /* Section spacing */
        section {
            padding: clamp(3rem, 8vw, 5rem) 0;
        }

        /* Section headers */
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--primary-color);
            text-align: center;
            margin-bottom: clamp(2rem, 4vw, 3rem);
            position: relative;
            padding-bottom: 1rem;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 3px;
        }

        /* Services Section */
        .services {
            padding: 5rem 1rem;
            background: var(--light-bg);
        }

        /* About Section */
        .about {
            padding: 5rem 1rem;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 2rem auto;
        }

        .feature {
            text-align: center;
            padding: 2rem;
        }

        /* Contact Section */
        .contact {
            background: var(--light-bg);
            padding: 5rem 1rem;
        }

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

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 0 auto;
        }

        .contact-card p {
            color: #666;
            margin: 0.5rem 0;
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 1rem 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: center;
            text-align: center;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 0.5rem;
        }

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

        .social-links a:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.2);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* General Spacing */
        section {
            padding: 5rem 1rem;
        }

        /* About Us Section */
        .about-us {
            background: white;
            padding: clamp(3rem, 8vw, 5rem) 0;
        }

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

        .about-text h3 {
            color: var(--primary-color);
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .about-text p {
            font-size: clamp(1rem, 1.5vw, 1.1rem);
            line-height: 1.8;
            color: #666;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .about-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            background: var(--light-bg);
            transition: transform 0.3s ease;
        }

        .about-feature:hover {
            transform: translateY(-5px);
        }

        .feature-number {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--secondary-color);
            line-height: 1;
        }

        .feature-text {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: #666;
            font-weight: 500;
            text-align: center;
        }

        /* Media queries for About section */
        @media (max-width: 768px) {
            .about-features {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .about-feature {
                padding: 1rem;
            }

            .about-text p {
                padding: 0 1rem;
            }
        }