/* Custom Fonts */
@font-face {
    font-family: 'Sky';
    src: url('https://fonts.cdnfonts.com/s/sky/Sky.woff2') format('woff2'),
        url('https://fonts.cdnfonts.com/s/sky/Sky.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sky-Bold';
    src: url('https://fonts.cdnfonts.com/s/sky/Sky-Bold.woff2') format('woff2'),
        url('https://fonts.cdnfonts.com/s/sky/Sky-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* Global Styles */
:root {
    --primary-color: #3a58fe;
    --primary-dark: #2240e0;
    --secondary-color: #4778ff;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-border: #2d2d2d;
    --text-light: #f5f5f5;
    --text-gray: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #3a58fe 0%, #2240e0 100%);
    --gradient-secondary: linear-gradient(135deg, #4778ff 0%, #3a58fe 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: visible;
}

/* إزالة المربع الأزرق الذي يظهر عند النقر على العناصر */
*:focus,
*:active,
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
.btn:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
}

/* إعدادات نصوص الأزرار للشاشات المختلفة */
.mobile-text {
    display: none;
}

.desktop-text {
    display: inline;
}

body {
    font-family: 'Noto Sans Arabic', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    direction: rtl;
    overflow-x: visible;
}

/* تطبيق خط Tajawal على النصوص العادية */
p {
    font-family: 'Sky', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 5px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.primary-btn {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: none;
}

.secondary-btn {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    margin-right: 15px;
}

.secondary-btn:hover {
    background: rgba(108, 92, 231, 0.1);
}

/* جعل الأزرار متساوية في العرض في الشاشات الكبيرة فقط */
@media (min-width: 992px) {
    .cta-buttons {
        display: flex;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 180px;
        text-align: center;
        justify-content: center;
    }
}

/* تعديل حجم الأزرار في الشاشات المتوسطة لتكون مثل الشاشات الكبيرة */
@media (min-width: 769px) and (max-width: 991px) {
    .cta-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 180px;
        text-align: center;
        justify-content: center;
        font-size: 1rem;
        padding: 8px 20px;
    }

    /* إظهار الصورة في الشاشات المتوسطة فوق النص */
    .mobile-hero-image {
        display: block !important;
        width: 100%;
        max-width: 500px;
        height: auto;
        margin: 20px auto 25px;
        border-radius: 10px;
        object-fit: contain;
    }

    /* تغيير ترتيب العناصر في الشاشات المتوسطة */
    .hero-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .hero-content .title {
        order: 1;
    }

    .hero-content .subtitle {
        font-family: 'Tajawal', sans-serif;
        order: 2;
    }

    .mobile-hero-image {
        order: 3;
    }

    .hero-content p {
        order: 4;
        margin: 0 auto 25px;
    }

    .cta-buttons {
        order: 5;
    }

    /* إخفاء الصورة الكبيرة في الشاشات المتوسطة */
    .hero-image {
        display: none;
    }

    /* تعديلات إضافية للشاشات المتوسطة */
    .hero .container {
        flex-direction: column;
    }
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    padding: 5px 0;
}

header.scrolled {
    padding: 3px 0;
    background-color: rgba(18, 18, 18, 0.95);
}

header.scrolled nav {
    padding: 7px 0;
}

header.scrolled .logo img {
    height: 45px;
}

header.scrolled .nav-links a {
    font-size: 0.98rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    vertical-align: middle;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
    padding: 8px 5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    bottom: 0;
    right: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-light);
    border-radius: 10px;
    opacity: 1;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    background: var(--dark-bg);
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-left: 20px;
}

.hero-content .title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content .centered-title {
    font-size: 2.4rem;
    text-align: center;
    display: block;
    width: 100%;
    font-weight: 700;
    margin: 0 auto 15px;
    color: var(--text-light);
}

/* تطبيق خط Tajawal على العنوان في الشاشات الكبيرة فقط */
@media (min-width: 768px) {
    .hero-content .centered-title {
        font-family: 'Tajawal', sans-serif;
    }
}

.hero-content .title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content .title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-color);
    opacity: 0.3;
    z-index: -1;
}

.hero-content .subtitle {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-gray);
    max-width: 600px;
}

/* Mobile hero image - hidden by default */
.mobile-hero-image {
    display: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 15px auto 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    padding: 10px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.2;
    border-radius: 20px;
    z-index: 1;
}

.image-container img {
    border-radius: 15px;
    display: block;
}

/* Features Section */
.features {
    background-color: var(--dark-bg);
    position: relative;
}

/* Section Divider */
.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--dark-border), transparent);
    margin: 0;
}

.features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--dark-border), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--dark-card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card .icon {
    margin-bottom: 20px;
}

.feature-card .icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    background-color: var(--dark-bg);
    position: relative;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--dark-border), transparent);
}

/* Default grid layout for large screens */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* تنسيقات خاصة للشاشات المتوسطة */
@media (min-width: 768px) and (max-width: 991px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

.service-card {
    background-color: var(--dark-card);
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--dark-border);
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Slider layout only for small screens */
@media (max-width: 767px) {
    .services .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .services .section-header {
        padding: 0 20px;
        margin-bottom: 25px;
    }

    .services-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding: 10px 0 25px 0;
        margin: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
    }

    .services-grid::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .service-card {
        flex: 0 0 auto;
        width: 75%;
        max-width: 280px;
        margin-bottom: 5px;
        scroll-snap-align: center;
        flex-direction: column;
        height: auto;
        margin-left: 0;
        border-radius: 16px;
        overflow: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        position: relative;
    }

    .service-card:first-child {
        margin-right: 15px;
    }

    .service-card:last-child {
        margin-left: 15px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        padding: 0;
        border-radius: 20px;
        margin: 0 auto 15px;
        position: relative;
        z-index: 1;
        box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
        background: var(--gradient-primary);
        transform: rotate(10deg);
        transition: transform 0.3s ease;
    }

    .service-card:hover .service-icon {
        transform: rotate(0deg);
    }

    .service-content {
        background-color: var(--dark-card);
        padding: 25px 20px 20px;
        border-radius: 18px;
        text-align: center;
        border: 1px solid var(--dark-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-30px);
        padding-top: 40px;
        position: relative;
        z-index: 0;
        height: 100%;
    }

    .service-content h3 {
        margin-bottom: 12px;
        font-size: 1.1rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
    }

    .service-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .service-card .read-more {
        margin-top: 15px;
        display: inline-flex;
        padding: 8px 15px;
        background-color: rgba(108, 92, 231, 0.1);
        border-radius: 30px;
        font-size: 0.85rem;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .service-card .read-more:hover {
        transform: translateY(-3px);
        background-color: rgba(108, 92, 231, 0.2);
    }
}

@media (max-width: 576px) {
    .service-card {
        width: 85%;
    }

    .services .section-header {
        padding: 0 15px;
    }

    .service-card:first-child {
        margin-right: 10px;
    }

    .service-card:last-child {
        margin-left: 10px;
    }
}

.service-icon {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    color: white;
}

.service-icon i {
    font-size: 2rem;
}

.service-content {
    padding: 25px;
    flex: 1;
}

.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.read-more {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(-5px);
}

/* Testimonials */
.testimonials {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--dark-border), transparent);
}

.testimonials-slider {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.testimonials-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    width: 100%;
    position: absolute;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}

.testimonials-group.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial {
    background-color: transparent;
    text-align: center;
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
}

.testimonial-exiting {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-entering {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    margin-bottom: 15px;
}

.client-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.rating {
    margin-bottom: 20px;
    color: #ffc107;
    font-size: 1.1rem;
}

.rating i {
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(30, 30, 30, 0.7);
    border: 1px solid var(--dark-border);
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.prev-btn:disabled,
.next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.prev-btn:disabled:hover,
.next-btn:disabled:hover {
    background-color: var(--dark-card);
    border-color: var(--dark-border);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--dark-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    width: 20px;
    border-radius: 10px;
}

/* تعديل عرض التعليقات في الشاشات المختلفة */
/* في الشاشات الكبيرة والمتوسطة: 3 تعليقات في الصف */
@media (min-width: 769px) {
    .testimonial {
        flex: 0 0 calc(33.333% - 20px) !important;
        max-width: calc(33.333% - 20px) !important;
    }
}

/* تحسين مظهر التعليقات في الشاشات المتوسطة */
@media (min-width: 769px) and (max-width: 991px) {
    .testimonial {
        padding: 15px 10px;
    }

    .client-image {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    .client-info h4 {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* تحسين تنسيق مجموعة التعليقات */
    .testimonials-group {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
    }

    .testimonials-slider {
        gap: 15px;
    }
}

/* في الشاشات الصغيرة: تعليق واحد فقط */
@media (max-width: 768px) {
    .testimonial {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .testimonials-slider {
        flex-wrap: nowrap;
        overflow-x: hidden;
    }
}

@media (max-width: 992px) {
    .testimonials-group {
        transition: opacity 0.8s ease;
    }

    .testimonial-exiting,
    .testimonial-entering {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 70px;
    }

    .hero-content .title {
        font-size: 2.2rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .hero-content .subtitle {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .cta-buttons .btn {
        width: auto;
        margin: 0;
        font-size: 0.9rem;
        padding: 8px 15px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* تعديلات إضافية للموبايل */
    section {
        padding: 60px 0;
    }

    .feature-card,
    .service-card {
        padding: 20px;
    }

    .feature-card h3,
    .service-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p,
    .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-content .title {
        font-size: 1.8rem;
    }

    .hero-content .subtitle {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 45%;
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .video-container {
        display: none;
    }

    .feature-card .icon i,
    .service-icon i {
        font-size: 2rem;
    }
}

/* FAQ Section */
.faq {
    background-color: var(--dark-bg);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.faq::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--dark-border), transparent);
}

.faq-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Tabs */
.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 8px 20px;
    background-color: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-light);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

/* FAQ Items */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    padding-left: 40px;
    transition: color 0.3s ease;
}

.faq-icon {
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faq-icon i {
    color: var(--primary-color);
    font-size: 0.8rem;
    position: absolute;
    transition: all 0.3s ease;
}

.faq-icon i.fa-chevron-down {
    opacity: 1;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.faq-icon i.fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .faq-icon i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon i.fa-minus {
    opacity: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 18px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    padding-right: 18px;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.faq-answer li {
    margin-bottom: 8px;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* أنماط مخصصة لعناوين الاختراق في الأسئلة الشائعة */
.faq-answer h4 {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-answer ul li::before {
    content: '';
    position: absolute;
    right: -16px;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* FAQ Animation */
.faq-item {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.7s;
}

.faq-item:nth-child(8) {
    animation-delay: 0.8s;
}

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

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 14px 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-left: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: calc(100% - 60px);
    }

    .faq-item.active .faq-question h3 {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        max-width: none;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    padding: 20px 0 15px;
    position: relative;
    margin-top: 0;
}

/* نزيل خاصية before */
footer::before {
    display: none;
}

/* Minimal Footer Styles */
.minimal-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-img:hover {
    transform: scale(1.05);
}

.store-description {
    max-width: 500px;
    margin: 0 auto 20px;
}

.store-description p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-copyright {
    width: 100%;
    padding-top: 0;
}

.footer-copyright p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    footer {
        padding: 20px 0 15px;
    }

    .footer-img {
        height: 40px;
    }

    .store-description {
        padding: 0 15px;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        text-align: center;
        padding: 0;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .cta-buttons {
        justify-content: center;
    }

    /* تم إزالة هذه القاعدة لأنها تتعارض مع عرض 3 تعليقات في الشاشات المتوسطة */
    /* 
    .testimonial {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    */
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.5s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
        z-index: 1000;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    .testimonials-slider {
        flex-wrap: nowrap;
        overflow-x: hidden;
    }

    .testimonial {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content .title {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card,
    .service-card {
        min-width: 100%;
    }
}

/* Pricing Section */
.pricing {
    background-color: var(--dark-bg);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--dark-border), transparent);
}

.pricing .container {
    position: relative;
    z-index: 1;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 50px;
    position: relative;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
    margin: 0 15px;
    cursor: pointer;
    transition: var(--transition);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-card);
    transition: .4s;
    border: 1px solid var(--dark-border);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    right: 4px;
    bottom: 3px;
    background: var(--gradient-primary);
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--dark-card);
}

input:checked+.slider:before {
    transform: translateX(-30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-toggle input:checked~.toggle-label:last-of-type {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-toggle input:not(:checked)~.toggle-label:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: calc(50% - 60px);
    background: var(--gradient-secondary);
    color: white;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(253, 121, 168, 0.4);
    transform: translateX(50%);
    opacity: 0;
    transition: all 0.3s ease;
}

#pricingToggle:checked~.discount-badge {
    opacity: 1;
    top: -15px;
}

/* Pricing Cards */
.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    perspective: 1000px;
}

.price-card {
    background-color: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    max-width: 350px;
    box-shadow: var(--box-shadow);
    transition: all 0.5s ease;
    border: 1px solid var(--dark-border);
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(0deg) translateZ(0);
    backface-visibility: hidden;
    font-family: 'Tajawal', sans-serif;
}

.price-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.price-card.popular {
    transform: scale(1.05);
    z-index: 1;
    border: 2px solid transparent;
    background:
        linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
        var(--gradient-primary) border-box;
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-15px) rotateY(-5deg);
}

/* إلغاء حركة البطاقات على الشاشات الصغيرة */
@media (max-width: 900px) {

    /* تعطيل جميع الحركات والتأثيرات */
    .pricing-cards {
        perspective: none !important;
    }

    /* إعادة تعيين البطاقات إلى وضعها الطبيعي */
    .price-card {
        transform: none !important;
        transition: box-shadow 0.3s ease !important;
        transform-style: flat !important;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2) !important;
    }

    /* إلغاء أي تأثير عند النقر أو التحويم */
    .price-card:hover,
    .price-card.popular:hover,
    .price-card.popular {
        transform: none !important;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3) !important;
    }

    /* إلغاء التكبير للبطاقة المميزة */
    .price-card.popular {
        transform: none !important;
        border: 2px solid var(--primary-color) !important;
    }
}

.popular-badge {
    position: absolute;
    top: 10px;
    left: 0;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px 4px 15px;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(108, 92, 231, 0.4);
    z-index: 1;
}

.card-header {
    padding: 30px 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--dark-border), transparent);
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.price {
    margin: 15px 0;
    position: relative;
    height: 70px;
}

.monthly,
.yearly {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    transition: all 0.5s ease;
}

.yearly {
    opacity: 0;
    transform: translateY(20px);
}

#pricingToggle:checked~.pricing-cards .yearly {
    opacity: 1;
    transform: translateY(0);
}

#pricingToggle:checked~.pricing-cards .monthly {
    opacity: 0;
    transform: translateY(-20px);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.currency {
    font-size: 1.3rem;
    margin-right: 5px;
    color: var(--text-light);
    position: relative;
    top: -10px;
}

.period {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 15px;
    padding: 0 10px;
}

.card-features {
    padding: 20px 30px;
}

.card-features ul {
    list-style: none;
    padding: 0;
}

.card-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.card-features li i {
    margin-left: 10px;
    font-size: 1rem;
}

.card-features li .fa-check {
    color: #2ed573;
}

.card-features li .fa-times {
    color: #ff4757;
}

.card-features li.disabled {
    color: var(--text-gray);
    opacity: 0.7;
}

.card-footer {
    padding: 25px 30px 30px;
    text-align: center;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.price-card:not(.popular) .pricing-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.price-card:not(.popular) .pricing-btn:hover {
    background: rgba(108, 92, 231, 0.1);
}

.price-card.popular .pricing-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: none;
}

.pricing-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
    z-index: -1;
}

.pricing-btn:hover::after {
    left: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: rgba(108, 92, 231, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.pricing-note p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

.pricing-note i {
    color: var(--primary-color);
    margin-left: 8px;
}

/* Price Card Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.price-card:nth-child(1) {
    animation: none;
}

.price-card:nth-child(2) {
    animation: float 4s ease-in-out infinite;
}

.price-card:nth-child(3) {
    animation: none;
}

/* Responsive Pricing */
@media (max-width: 992px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        width: 100%;
        max-width: 450px;
        margin-bottom: 30px;
    }

    .price-card.popular {
        transform: scale(1.03);
        order: -1;
    }

    .price-card.popular:hover {
        transform: scale(1.03) translateY(-15px);
    }
}

/* Video Container Styles */
/* تم استبدال مربع الفيديو بصورة */
.desktop-image-container {
    position: relative;
    padding: 0;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    background: none;
    box-shadow: none;
    transform: none;
}

.desktop-image-container:hover {
    transform: none;
}

/* تم إزالة المربع الأزرق حول الصورة */
.desktop-image-container::before {
    display: none;
}

.desktop-hero-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    position: relative;
    z-index: 0;
}

/* إخفاء الصورة في الشاشات الصغيرة */
@media (max-width: 768px) {
    .desktop-image-container {
        display: none;
    }

    .hero {
        padding: 150px 0 70px;
    }

    .hero-content .title {
        font-size: 2.2rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .hero-content .subtitle {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .cta-buttons .btn {
        width: auto;
        margin: 0;
        font-size: 0.9rem;
        padding: 8px 15px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* تعديلات إضافية للموبايل */
    section {
        padding: 60px 0;
    }

    .feature-card,
    .service-card {
        padding: 20px;
    }

    .feature-card h3,
    .service-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p,
    .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-content .title {
        font-size: 1.8rem;
    }

    .hero-content .subtitle {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 45%;
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .video-container {
        display: none;
    }

    .feature-card .icon i,
    .service-icon i {
        font-size: 2rem;
    }
}

/* تنسيقات الفيديو القديمة - مخفية الآن في كل الشاشات */
.video-container {
    display: none;
}

/* طريقة الاستخدام */
.how-to-use .container {
    position: relative;
    z-index: 2;
}

.steps-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 70px 0 50px;
    position: relative;
}

.step-flow-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background-color: var(--dark-card);
    border-radius: 15px;
    padding: 25px 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.step-flow-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-flow-item::before {
    content: none;
}

.step-flow-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.steps-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.steps-connector i {
    animation: arrow-pulse 2s ease-in-out infinite;
    transform-origin: center;
    display: inline-block;
}

.step-flow-content {
    text-align: center;
    padding-top: 25px;
}

.step-flow-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto 20px;
    position: relative;
    transform: none;
    transition: all 0.3s ease;
}

.step-flow-item:hover .step-flow-icon {
    transform: none;
}

.step-flow-icon .bx {
    font-size: 30px;
    color: var(--primary-color);
    transform: none;
    transition: all 0.3s ease;
    display: inline-flex;
}

.step-flow-item:hover .step-flow-icon .bx {
    transform: none;
}

.step-flow-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.step-flow-item:hover .step-flow-icon img {
    transform: scale(1.1);
}

.step-flow-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.step-flow-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

@keyframes arrow-pulse {
    0% {
        transform: scale(1.0);
        color: var(--primary-color);
        text-shadow: 0 0 0 rgba(108, 92, 231, 0);
    }

    25% {
        transform: scale(1.1);
        color: var(--primary-color);
        text-shadow: 0 0 5px rgba(108, 92, 231, 0.3);
    }

    50% {
        transform: scale(1.3);
        color: var(--primary-color);
        text-shadow: 0 0 10px rgba(108, 92, 231, 0.5);
    }

    75% {
        transform: scale(1.1);
        color: var(--primary-color);
        text-shadow: 0 0 5px rgba(108, 92, 231, 0.3);
    }

    100% {
        transform: scale(1.0);
        color: var(--primary-color);
        text-shadow: 0 0 0 rgba(108, 92, 231, 0);
    }
}

/* تحسينات للهواتف */
@media (max-width: 992px) {
    .steps-flow {
        flex-direction: column;
        gap: 30px;
    }

    .step-flow-item {
        width: 100%;
        max-width: 100%;
    }

    .steps-connector {
        transform: rotate(270deg);
        margin: -15px 0;
    }

    .step-flow-number {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .step-flow-item {
        padding: 15px 15px;
    }

    .step-flow-content {
        padding-top: 15px;
    }

    .step-flow-icon {
        width: 60px;
        height: 60px;
        margin: 5px auto 12px;
    }

    .step-flow-icon i {
        font-size: 20px;
    }

    .step-flow-icon img {
        width: 100%;
        height: 100%;
    }

    .step-flow-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .step-flow-content p {
        font-size: 0.85rem;
    }
}

/* تنسيقات خاصة بالقوائم المختلفة حسب حجم الشاشة */
/* إظهار قائمة سطح المكتب في الشاشات الكبيرة فقط وإخفاء قائمة الموبايل */
@media (min-width: 992px) {
    .desktop-only-nav {
        display: flex;
    }

    .mobile-only-nav {
        display: none;
    }

    .hamburger {
        display: none;
    }
}

/* إظهار قائمة الموبايل وأيقونة القائمة في الشاشات المتوسطة والصغيرة */
@media (max-width: 991px) {
    .desktop-only-nav {
        display: none;
    }

    .mobile-only-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.5s ease;
        z-index: 999;
    }

    .mobile-only-nav.active {
        transform: translateX(0);
    }

    .mobile-only-nav li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 1000;
    }

    .hamburger span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--text-light);
        border-radius: 10px;
        opacity: 1;
        transform: rotate(0deg);
        transition: all 0.25s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 0px;
    }

    .hamburger span:nth-child(2) {
        top: 9px;
    }

    .hamburger span:nth-child(3) {
        top: 18px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }
}

/* تنسيق زر تسجيل الدخول ليكون مثل الروابط العادية */
.login-button {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
    padding: 8px 5px !important;
    position: relative;
    background: none;
    border-radius: 0 !important;
    box-shadow: none;
}

.login-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    bottom: 0;
    right: 0;
    transition: width 0.3s ease;
    display: block !important;
}

.login-button:hover {
    color: var(--text-light);
    transform: none;
    box-shadow: none;
}

.login-button:hover::after {
    width: 100%;
}