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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .logo-slogan {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 50px;
        }

        .logo-slogan .line1,
        .logo-slogan .line2 {
            font-size: 0.9rem;
            font-weight: bold;
            background: linear-gradient(45deg, #FFD700, #FF4500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #000;
            text-decoration: none;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
            transform: skewX(-10deg);
            display: inline-block;
            transition: all 0.3s ease;
        }

        .nav-menu a span {
            display: inline-block;
            transform: skewX(10deg);
        }

        .nav-menu a:hover {
            background: linear-gradient(45deg, #FFA500, #FFD700);
            transform: skewX(-10deg) translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
        }

        .emergency-btn {
            background: linear-gradient(45deg, #FF4500, #FF6347) !important;
            color: #fff !important;
            animation: pulse 2s infinite;
        }

        .emergency-btn:hover {
            background: linear-gradient(45deg, #FF6347, #FF4500) !important;
            color: #fff !important;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #FFD700;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        @keyframes pulse {
            0% { box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3); }
            50% { box-shadow: 0 4px 25px rgba(255, 69, 0, 0.6); }
            100% { box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3); }
        }

        /* Hero Section */
        .hero {
            height: 40vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/bg.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #FFD700, #FF4500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #f0f0f0;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
            align-items: stretch;
        }

        .contact-info {
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(255, 215, 0, 0.2);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .contact-info h2 {
            color: #FFD700;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .contact-item:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: translateX(10px);
        }

        .contact-item i {
            font-size: 2rem;
            background: linear-gradient(45deg, #FFD700, #FF4500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            min-width: 40px;
        }

        .contact-item-content h3 {
            color: #FFD700;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .contact-item-content p {
            color: #e0e0e0;
            font-size: 1.1rem;
            line-height: 1.4;
        }

        /* Map Section */
        .map-container {
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.2);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .map-header {
            padding: 2rem;
            text-align: center;
            background: rgba(255, 215, 0, 0.1);
            flex-shrink: 0;
        }

        .map-header h2 {
            color: #FFD700;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .map-header p {
            color: #e0e0e0;
            font-size: 1.1rem;
        }

        .map-embed {
            width: 100%;
            flex: 1;
            min-height: 400px;
            border: none;
            filter: grayscale(20%) contrast(1.2);
        }

        /* Emergency Section */
        .emergency-section {
            background: linear-gradient(45deg, #FF4500, #FF6347);
            padding: 4rem 0;
            text-align: center;
            margin: 3rem 0;
        }

        .emergency-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .emergency-content h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .emergency-content p {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .emergency-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .emergency-btn-large {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem 2.5rem;
            background: white;
            color: #FF4500;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            min-width: 200px;
            justify-content: center;
        }

        .emergency-btn-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .emergency-btn-large i {
            font-size: 1.5rem;
        }

        /* Service Areas */
        .service-areas {
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            padding: 4rem 0;
        }

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

        .area-card {
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
        }

        .area-card:hover {
            transform: translateY(-5px);
            border-color: #FFD700;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
        }

        .area-card i {
            font-size: 3rem;
            background: linear-gradient(45deg, #FFD700, #FF4500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .area-card h3 {
            color: #FFD700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .area-card p {
            color: #e0e0e0;
            line-height: 1.6;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #FFD700;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(45deg, #FFD700, #FF4500);
            border-radius: 2px;
        }

        .section-title p {
            color: #ccc;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Footer */
        .footer {
            background: #000;
            color: #ccc;
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid #333;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                gap: 1.5rem;
                padding-top: 3rem;
                transition: left 0.3s ease;
            }

            .nav-menu a {
                margin: 0;
                width: 80%;
                text-align: center;
                transform: skewX(0deg);
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .nav-menu a span {
                transform: skewX(0deg);
            }

            .nav-menu.active {
                left: 0;
            }

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

            .hero {
                height: 30vh;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .contact-section {
                padding: 3rem 0;
            }

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

            .contact-info {
                padding: 2rem;
            }

            .contact-info h2 {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .contact-item {
                padding: 1rem;
                margin-bottom: 1.5rem;
                flex-direction: column;
                text-align: center;
            }

            .contact-item i {
                font-size: 1.5rem;
            }

            .contact-item-content h3 {
                font-size: 1.1rem;
            }

            .contact-item-content p {
                font-size: 0.95rem;
            }

            .emergency-section {
                padding: 2.5rem 0;
            }

            .emergency-content h2 {
                font-size: 1.8rem;
            }

            .emergency-content p {
                font-size: 1rem;
            }

            .emergency-buttons {
                flex-direction: column;
                align-items: center;
            }

            .emergency-btn-large {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .service-areas {
                padding: 3rem 0;
            }

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

            .area-card {
                padding: 1.5rem;
            }

            .area-card i {
                font-size: 2.5rem;
            }

            .area-card h3 {
                font-size: 1.3rem;
            }

            .area-card p {
                font-size: 0.9rem;
            }

            .section-title {
                margin-bottom: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .section-title p {
                font-size: 1rem;
            }
        }