 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #003049;
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
    header {
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        color: white;
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(30, 58, 138, 0.2);
    }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fdf0d5;
        }

        .emergency-btn {
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(102, 155, 188, 0.3);
}

/* Call button specific styling */
.emergency-btn.call-btn {
    background: #25D366;
    position: relative;
    padding-left: 45px;
}

.emergency-btn.call-btn:hover {
    background: #1DA851;
    animation: none;
}

.emergency-btn.call-btn::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Red pulse animation for urgency */
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.emergency-btn:hover {
    background: #5a8ca8;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 155, 188, 0.4);
}
/* WhatsApp button specific styling */
.emergency-btn.whatsapp-btn {
    background: #25D366;
    position: relative;
    padding-left: 45px;
}

.emergency-btn.whatsapp-btn:hover {
    background: #1DA851;
}

.emergency-btn.whatsapp-btn::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.890-5.335 11.893-11.893A11.821 11.821 0 0020.893 3.506z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
/* WhatsApp Submit Button with Logo */
.submit-btn.whatsapp-submit {
    background: #25D366;
    color: white;
    padding: 15px 40px 15px 60px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    position: relative;
}

.submit-btn.whatsapp-submit:hover {
    background: #1DA851;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.submit-btn.whatsapp-submit::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.890-5.335 11.893-11.893A11.821 11.821 0 0020.893 3.506z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26,26,26,0.6), rgba(45,55,72,0.6)), url('AutoRaedtruck.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            transition: background-image 0.5s ease;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-content .lebanon-badge {
            font-size: 1.5rem;
            font-weight: bold;
            /* background: #669bbc; */
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

    .btn {
    background: #669bbc;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(102, 155, 188, 0.3);
}

.btn-primary {
    background: #669bbc;
    color: white;
}

.btn-secondary {
    background: #669bbc;
    color: white;
    border: none;
}

.btn:hover {
    background: #5a8ca8;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 155, 188, 0.4);
}

.btn-secondary:hover {
    background: #5a8ca8;
    color: white;
}

        .btn-secondary:hover {
            background: #468ba2;
            color: white;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: #fdf0d5;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #003049;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: #fdf0d5;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 48, 73, 0.1);
            transition: all 0.3s ease;
            border: 2px solid #669bbc;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(102, 155, 188, 0.2);
            border-color: #003049;
            background: #669bbc;
        }

        .service-card:hover .service-icon {
            color: #fdf0d5;
        }

        .service-card:hover h3 {
            color: #fdf0d5;
        }

        .service-card:hover p {
            color: #fdf0d5;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #669bbc;
            transition: color 0.3s ease;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #003049;
            transition: color 0.3s ease;
        }

        .service-card p {
            color: #003049;
            transition: color 0.3s ease;
        }

        /* Order Form Section */
       /* Order Form Section */
.order-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 48, 73, 0.8), rgba(102, 155, 188, 0.8)), url('AtuRaedCrane.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fdf0d5;
}

        .order-form {
            background: rgba(255,255,255,0.08);
            padding: 40px;
            border-radius: 12px;
            backdrop-filter: blur(15px);
            max-width: 600px;
            margin: 0 auto;
            border: 1px solid rgba(37, 99, 235, 0.3);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

       .submit-btn {
    background: #669bbc;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 155, 188, 0.3);
}

.submit-btn:hover {
    background: #5a8ca8;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 155, 188, 0.4);
}

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: #fdf0d5;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .contact-item {
            text-align: center;
            padding: 30px;
            background: #fdf0d5;
            border: 2px solid #669bbc;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: #669bbc;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(102, 155, 188, 0.3);
        }

        .contact-item:hover h3 {
            color: #fdf0d5;
        }

        .contact-item:hover p {
            color: #fdf0d5;
        }

        .contact-item h3 {
            color: #003049;
            margin-bottom: 15px;
            font-size: 1.3rem;
            transition: color 0.3s ease;
        }

        .contact-item p {
            font-size: 1.1rem;
            color: #003049;
            transition: color 0.3s ease;
        }

        /* Footer */
        footer {
            background: #003049;
            color: #fdf0d5;
            text-align: center;
            padding: 40px 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            nav {
                flex-direction: column;
                gap: 20px;
            }
            
            nav > div {
                flex-direction: column;
                gap: 10px;
            }
            
            .emergency-btn {
                font-size: 0.9rem;
                padding: 10px 20px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(102, 155, 188, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(102, 155, 188, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(102, 155, 188, 0);
            }
        }