
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }

        :root {
            --primary: #e63946;
            --secondary: #1d3557;
            --accent: #457b9d;
            --light: #f1faee;
            --warning: #ff9e00;
            --success: #2a9d8f;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            padding-top: 78px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1000;
            transition: transform 0.3s ease-in-out;
        }

        header.hide-header {
            transform: translateY(-100%);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            font-size: 2.2rem;
            color: var(--primary);
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 30px;
            transition: background 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background-color: var(--primary);
        }

        /* Hero Section */
        .hero {
            background:
                linear-gradient(
                    135deg,
                    rgba(29,53,87,0.85),
                    rgba(69,123,157,0.75)
                ),
                url('../images/hero-contact.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        

        .hero {
            min-height: 45vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}


.hero h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.btn-primary {
    background: linear-gradient(135deg, #e63946, #c62828);
    font-size: 1.1rem;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(230,57,70,0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(230,57,70,0.5);
}

@keyframes pulseHero {
    0% { box-shadow: 0 0 0 0 rgba(230,57,70,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(230,57,70,0); }
    100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}

#getLocation {
    animation: pulseHero 2s infinite;
}

.location-access {
    margin-top: 2.5rem;
    gap: 20px;
}


        /* Contact Content */
        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 3rem 0;
        }

        .contact-info {
            background: white;
            border-radius: 30px;
            padding: 2.5rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-info h3 {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 1.8rem;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            transition: background 0.3s;
        }

        .contact-detail:hover {
            background: #f1faee;
        }

        .contact-detail i {
            font-size: 2rem;
            color: var(--primary);
            width: 50px;
            text-align: center;
        }

        .contact-detail .detail {
            flex: 1;
        }

        .contact-detail .detail h4 {
            font-size: 1.3rem;
            color: var(--secondary);
        }

        .contact-detail .detail p,
        .contact-detail .detail a {
            color: #555;
            text-decoration: none;
            font-size: 1.1rem;
        }

        .contact-detail .detail a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 2rem;
            justify-content: center;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .contact-form {
            background: white;
            border-radius: 30px;
            padding: 2.5rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-form h3 {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--secondary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            font-size: 1rem;
            font-family: 'Cairo', sans-serif;
            transition: border 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-submit:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .map-container {
            margin: 2rem 0;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 350px;
            border: 0;
        }

        /* Floating Emergency Button */
        .floating-wrapper {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 9999;
        }

        .floating-emergency {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            border: none;
            font-size: 22px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transition: 0.3s;
        }

        .floating-emergency:hover {
            transform: scale(1.1);
        }

        .emergency-menu {
            position: absolute;
            bottom: 80px;
            left: 0;
            display: none;
            flex-direction: column;
            gap: 10px;
        }

        .emergency-menu a {
            background: white;
            color: #333;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            transition: 0.2s;
            white-space: nowrap;
        }

        .emergency-menu a:hover {
            background: var(--primary);
            color: white;
        }

        .emergency-menu img {
            width: 22px;
            height: 22px;
        }

        /* Footer */
        /* ===== Footer Modern ===== */

        footer {
            background: linear-gradient(135deg, var(--secondary), #14213d);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }

        /* إزالة التوسيط العمودي القديم */
        .footer-content {
            width: 100%;
        }

        /* توزيع الأعمدة */
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            text-align: right;
        }

        /* عناوين الأعمدة */
        .footer-col h4 {
            margin-bottom: 18px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
        }

        /* القوائم */
        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        /* الروابط */
        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
            /* منع التسطير نهائياً */
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
        }

        /* تأثير احترافي */
        .footer-col ul li a:hover {
            color: #ffffff;
            transform: translateX(-8px);
        }

        /* تأثير أيقونة */
        .footer-col ul li a i {
            transition: 0.3s ease;
        }

        .footer-col ul li a:hover i {
            color: #e63946;
            transform: scale(1.25);
        }

        /* خط سفلي متحرك احترافي */
        .footer-col ul li a::after {
            content: "";
            position: absolute;
            bottom: -3px;
            right: 0;
            width: 0%;
            height: 2px;
            background: #e63946;
            transition: 0.3s ease;
        }

        .footer-col ul li a:hover::after {
            width: 100%;
        }

        /* الجزء السفلي */
        .footer-bottom {
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 20px;
            text-align: center;
            font-size: 0.95rem;
            color: #bbb;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            .hero h2 {
                font-size: 2.2rem;
            }

            .contact-section {
                grid-template-columns: 1fr;
            }
        }

        /* تحسين شعار الفوتر */
        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .footer-logo img {
            width: 90px;
            height: 90px;
            object-fit: cover;
            border-radius: 50%;
            background: white;
            padding: 10px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .footer-logo img:hover {
            transform: scale(1.08);
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
        }

        .footer-logo h2 {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            /* المسافة بين الصورة والنص */
        }

        .logo img {
            display: block;
            width: 50px;
            /* حجم الشعار */
            height: 50px;
            border-radius: 50%;
            /* يجعل الصورة دائرية */
            object-fit: cover;
            /* لضمان عدم تشويه الصورة داخل الدائرة */
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
        }
