@charset "UTF-8";
:root {
    --primary-color: #2A5C8B;
    --primary-rgb: 42, 92, 139;
    --secondary-color: #851414;
    --secondary-rgb: 133, 20, 20;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
}

div.section-header {
    text-align: center;
    margin-bottom: 2rem;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: var(--light-color);
    line-height: 1.6;
    color: var(--dark-color);
}

.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-header.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    height: var(--header-shrink-height) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.modern-header.scrolled .nav-links a {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.modern-header.scrolled .cta-btn:not(.secondary) {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.modern-header.scrolled .cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.navbar {
    padding: 0 2rem;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    transition: var(--transition);
}

.logo {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #fff;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1631623843714-3b91f30ec1dc?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat fixed;
    padding: calc(var(--header-height) + 2rem) 1.5rem 6rem;
    margin-top: calc(-1 * var(--header-height));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPgogICAgICA8Y2lyY2xlIGN4PSIxIiBjeT0iMSIgcj0iMSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPgogICAgPC9wYXR0ZXJuPgogIDwvZGVmcz4KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+Cjwvc3ZnPg==') repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.3;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
    margin-top: 0;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--header-shrink-height) + 3rem) 1rem 4rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-cta .cta-btn {
        min-width: 100%;
        padding: 1rem 1.5rem;
    }
}

.cta-btn {
    background: var(--secondary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.services-grid, .features-grid {
    max-width: 1200px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem;
    color: var(--primary-color);
}

.service-list {
    padding: 0 1.5rem 2rem;
    list-style: none;
}

.service-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background-color: rgba(42, 92, 139, 0.1);
}

.service-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateX(-5px);
}

.service-link i {
    margin-right: 0.5rem;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(-5px);
}

.contact-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

input:focus, textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 8px rgba(52, 183, 167, 0.3);
}

.submit-btn {
    background: var(--primary-color);
    color: #fff;
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #1f4568;
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
}

.success-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

:root {
    /* نظام الألوان الجديد */
    --primary: #FF6B35;    /* برتقالي محفز */
    --primary-dark: #e65a29; /* درجة أغمق للبرتقالي */
    --secondary: #4361EE;  /* أزرق ملكي */
    --secondary-dark: #3a56d4; /* درحة أغمق للأزرق */
    --success: #2ECC71;    /* أخضر نابض */
    --warning: #FFC107;    /* أصفر ذهبي */
    --danger: #FF3B30;     /* أحمر زاهي */
    
    /* الألوان المحايدة */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* تأثيرات الظل */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 0 15px rgba(255, 107, 53, 0.4);
    --shadow-secondary: 0 0 15px rgba(67, 97, 238, 0.4);
    
    /* التنسيقات العامة */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --header-height: 80px;
    --header-shrink-height: 70px;
}

/* شريط الحقوق القديم */
.copyright-footer {
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.copyright-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.copyright-footer p {
    font-size: 0.9rem;
}

/* ====== Navigation Links ====== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    border-radius: 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-links a.active {
    color: var(--primary-light);
    font-weight: 800;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    right: auto;
    left: 0;
}

/* ====== CTA Buttons ====== */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-right: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    text-shadow: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Primary Button */
.cta-btn:not(.secondary) {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.cta-btn:not(.secondary):hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border-color: var(--primary-light);
}

.cta-btn:not(.secondary):active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* Secondary Button */
.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(67, 97, 238, 0.1);
}

/* Button Icons */
.cta-btn i {
    margin-left: 8px;
    transition: var(--transition);
}

.cta-btn:hover i {
    transform: translateX(-3px);
}

/* ====== Hero CTA Button Styles ====== */
.hero-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.hero-cta .cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.3);
    min-width: 260px;
    text-align: center;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.hero-cta .cta-btn:hover::before {
    opacity: 1;
}

.hero-cta .cta-btn:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.3);
}

.hero-cta .cta-text {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 1.1em;
    line-height: 1.4;
}

.hero-cta .cta-subtext {
    display: block;
    font-size: 0.7em;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.4em;
    transition: all 0.3s ease;
}

.hero-cta .cta-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.hero-cta .cta-btn:hover .cta-icon {
    transform: translate(0.5rem, -50%);
    opacity: 1;
}

.cta-btn .cta-text {
    position: relative;
    z-index: 2;
    margin-left: 10px;
}

.cta-btn .cta-subtext {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.cta-btn .cta-icon {
    font-size: 1.2rem;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
}

.cta-btn:hover .cta-icon {
    transform: translateX(-5px);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* CTA Support Section */
.cta-support {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.stat-item i {
    margin-left: 8px;
    color: #60a5fa;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 240px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .stat-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ====== Navigation Styles ====== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    animation: fadeInDown 0.5s ease forwards;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    right: auto;
    left: 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

/* Animation for nav items */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay for each nav item */
.nav-links li:nth-child(1) a { animation-delay: 0.1s; }
.nav-links li:nth-child(2) a { animation-delay: 0.2s; }
.nav-links li:nth-child(3) a { animation-delay: 0.3s; }
.nav-links li:nth-child(4) a { animation-delay: 0.4s; }
.nav-links li:nth-child(5) a { animation-delay: 0.5s; }

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-right: 2rem;
}

.cta-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid #fff;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
    padding: 0.5rem;
    border-radius: 4px;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .cta-buttons {
        margin-right: 1rem;
    }
}

@media (max-width: 992px) {
    .cta-buttons {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(42, 92, 139, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        padding: 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 1rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.8rem 0;
        display: block;
        width: 100%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active {
        position: fixed;
        right: 2rem;
        top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .nav-links {
        width: 100%;
    }
}

/* ====== Header Logo Styles ====== */
.header-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.logo-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ====== Footer Logo Styles ====== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #fff;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

/* ====== Footer Styles ====== */
.site-footer{
    background: linear-gradient(135deg, #1a2a3a, #2c3e50);
    color:#fff;
    direction: rtl;
    font-size:15px;
    padding-top: 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}
.footer-top{
    background: linear-gradient(90deg, rgba(0,0,0,0.1), rgba(255,255,255,0.1), rgba(0,0,0,0.1));
    text-align:center;
    padding:1.5rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}
.social-cta{
    margin-top:0.5rem;
}
.social-btn{
    display:inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    color:#fff;
    padding:0.6rem 1.2rem;
    border-radius:30px;
    font-size:0.95rem;
    text-decoration:none;
    margin:0.5rem 0.4rem;
    transition:all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.social-btn i {
    margin-left: 8px;
    font-size: 1.1em;
}

.social-btn.insta {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-btn.tiktok {
    background: #000;
    color: #fff;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.social-btn:hover{
    background:#6c0f0f;
}
.footer-main{
    max-width:1200px;
    margin:0 auto 2rem;
    padding:0 1rem;
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap:2.5rem;
    position: relative;
    z-index: 1;
}
.footer-col h4{
    margin-bottom:1.5rem;
    font-size:1.2rem;
    color:#fff;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

/* استثناء عناوين أقسام وسائل التواصل من الخط السفلي */
.footer-col:last-child h4::after {
    display: none;
}
.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
}
.footer-links li,
.footer-contact li{
    margin-bottom:0.6rem;
}
.footer-links a,
.footer-contact a{
    color:#ddd;
    text-decoration:none;
    transition:color 0.3s;
}
.footer-links a,
.footer-contact a {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.footer-links a::before,
.footer-contact a::before {
    content: '→';
    position: absolute;
    right: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
    transform: translateX(-5px);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    right: -10px;
    opacity: 1;
}
.footer-social a{
    color:#fff;
    font-size:1.4rem;
    margin-left:0.5rem;
    transition:color 0.3s;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    position: relative;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 0 0 3px 3px;
}

.footer-bottom a{
    color:#fff;
    text-decoration:none;
}
.footer-bottom a:hover{
    text-decoration:underline;
}
@media(max-width:600px){
    .social-cta{
        display:flex;
        flex-direction:column;
        gap:0.5rem;
        align-items:center;
    }
}