/* 🎨 ثيم كلاسيكي حديث - محسن */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f8a31c;
    --accent-color: #00b4d8;
    --dark-color: #1a365d;
    --light-color: #f8fafc;
    --text-dark: #2d3748;
    --text-light: #718096;
    --section-title-bg: white;
    --primary-rgb: 44, 90, 160;
    --secondary-rgb: 248, 163, 28;
    --accent-rgb: 0, 180, 216;
}


.hero-classic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2c5aa0 0%, #00b4d8 100%);
    padding: 80px 20px;
    min-height: 400px;
}

    .hero-classic .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.1;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><pattern id="classicPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff"/></pattern></defs><rect width="100" height="100" fill="url(%23classicPattern)"/></svg>');
    }

    .hero-classic .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: white;
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* ✅ يضمن مركزية جميع العناصر */
        justify-content: center;
    }

    .hero-classic .hero-badge,
    .hero-classic .hero-title,
    .hero-classic .hero-subtitle {
        text-align: center;
        width: 100%;
    }   

    .hero-classic .hero-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 20px;
        font-size: 0.9rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
        animation: fadeInDown 1s ease-out;
    }

    .hero-classic .hero-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        animation: fadeInUp 1s ease-out 0.3s both;
        line-height: 1.2;
    }

    .hero-classic .hero-subtitle {
        font-size: 1.2rem;
        font-weight: 300;
        margin-bottom: 1.5rem;
        opacity: 0.9;
        animation: fadeInUp 1s ease-out 0.6s both;
        line-height: 1.5;
    }

/* تأثيرات الحركة */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

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

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

/* تأثيرات إضافية */
.hero-classic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

.hero-classic::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f8a31c, #00b4d8, #f8a31c);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* 🎨 قسم التواصل - Classic */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .contact-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #f8a31c, #00b4d8);
    }

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 2.2rem;
    color: #1a365d;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
}

    .contact-divider span {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #f8a31c, #00b4d8);
        border-radius: 2px;
    }

    .contact-divider i {
        color: #f8a31c;
        font-size: 1.3rem;
    }

.contact-info {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

    .contact-item:last-child {
        border-bottom: none;
    }

    .contact-item:hover {
        transform: translateX(-5px);
    }

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c5aa0, #00b4d8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-icon i {
        color: white;
        font-size: 1.2rem;
    }

.contact-details h5 {
    color: #1a365d;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-value {
    color: #718096;
    font-size: 0.95rem;
    direction: ltr;
    text-align: right;
}

.contact-cta {
    margin-top: 2rem;
    text-align: center;
}

.cta-text {
    font-size: 1rem;
    color: #718096;
    font-style: italic;
}

/* التجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .hero-classic {
        padding: 60px 20px;
        min-height: 300px;
    }

        .hero-classic .hero-title {
            font-size: 2.2rem;
        }

        .hero-classic .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-classic .hero-badge {
            font-size: 0.8rem;
            padding: 6px 16px;
        }

    .contact-section {
        padding: 40px 0;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px 0;
    }

        .contact-item:hover {
            transform: translateY(-3px);
        }
}

@media (max-width: 480px) {
    .hero-classic {
        min-height: 250px;
    }

        .hero-classic .hero-title {
            font-size: 1.8rem;
        }

        .hero-classic .hero-subtitle {
            font-size: 1rem;
        }

    .contact-title {
        font-size: 1.6rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

        .contact-icon i {
            font-size: 1.1rem;
        }
}




/* 🎨 تأثير الثيم الكلاسيكي على Owner.Master */
.classic-theme .navbar {
    background: linear-gradient(135deg, #2c5aa0 0%, #00b4d8 100%) !important;
    border-bottom: 3px solid #f8a31c !important;
}

.classic-theme .navbar-brand,
.classic-theme .nav-link {
    color: white !important;
}

    .classic-theme .nav-link:hover {
        color: #f8a31c !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
    }

.classic-theme footer {
    background: linear-gradient(135deg, #1a365d 0%, #2c5aa0 100%) !important;
}

/* كلاسات مساعدة للناڤبار والفوتر */
.classic-navbar {
    background: linear-gradient(135deg, #2c5aa0 0%, #00b4d8 100%) !important;
}

.classic-footer {
    background: linear-gradient(135deg, #1a365d 0%, #2c5aa0 100%) !important;
}





/* ✅ إصلاح محاذاة الهيرو - يضمن المركزية التامة */
.hero-classic .hero-content {
    margin: 0 auto !important;
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.hero-classic .hero-badge,
.hero-classic .hero-title,
.hero-classic .hero-subtitle {
    text-align: center !important;
    width: fit-content !important;
    margin-right: auto !important;
    margin-left: auto !important;
}



