
        * {
            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;
            --gold: #ffd700;
            --silver: #c0c0c0;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        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: sticky;
            top: 0;
            z-index: 1000;
        }

        .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;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            background:
                linear-gradient(
                    135deg,
                    rgba(29,53,87,0.85),
                    rgba(69,123,157,0.75)
                ),
                url('../images/najda_final_hero.png');
            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;
}

        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-secondary {
            background-color: var(--accent);
            color: white;
        }

        .btn-success {
            background-color: var(--success);
            color: white;
        }

        .btn-gold {
            background-color: var(--gold);
            color: var(--secondary);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Plans Section */
        .plans-section {
            padding: 4rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 2rem;
        }

        .plan-card {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .plan-card.premium {
            border-color: var(--gold);
        }

        .plan-card.free {
            border-color: var(--silver);
        }

        .plan-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--gold);
            color: var(--secondary);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
        }

        .plan-card.free .plan-badge {
            background-color: var(--silver);
            color: white;
        }

        .plan-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: rgba(69, 123, 157, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: var(--accent);
        }

        .plan-card.premium .plan-icon {
            color: var(--gold);
        }

        .plan-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            text-align: center;
            color: var(--secondary);
        }

        .plan-price {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .plan-price span {
            font-size: 1rem;
            color: #666;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #f0f0f0;
        }

        .plan-features li i {
            color: var(--success);
        }

        .plan-card.free .plan-features li i {
            color: var(--silver);
        }

        /* Registration Form Section */
        .registration-section {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin: 3rem 0;
        }

        .form-title {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-title h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--secondary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .payment-methods {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }

        .payment-method {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-submit {
            background-color: var(--success);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            width: 100%;
            transition: background-color 0.3s;
        }

        .btn-submit:hover {
            background-color: #21867a;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: white;
            width: 90%;
            max-width: 400px;
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            padding: 2rem;
        }

        .modal-icon {
            font-size: 4rem;
            color: var(--success);
            margin-bottom: 1rem;
        }

        .modal h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .modal p {
            margin-bottom: 1.5rem;
            color: #666;
        }

        .modal .btn {
            width: 100%;
        }

        /* 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;
        }

        /* تحسين شعار الفوتر */
        .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;
        }

        .phone-card-link {
            transition: color 0.2s ease;
            display: inline-block;
        }

        .phone-card-link:hover {
            color: var(--primary) !important;
            text-decoration: underline !important;
        }

        /* الجزء السفلي */
        .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;
        }

        /* ===== زر الرجوع للأعلى ===== */

        #scrollTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            border: none;
            background: #e63946;
            color: white;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            display: none;
            transition: all 0.3s ease;
            z-index: 9999;
        }

        #scrollTopBtn:hover {
            background: #b71c1c;
            transform: scale(1.15);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }
