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

body {
    font-family: 'Cairo', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo - Image Only */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

/* إخفاء النص القديم إذا كان موجود */
.logo-text {
    display: none;
}

/* Adjust header for logo only */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: #D4AF37;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #D4AF37;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #B8901F);
    color: #0a0a0a;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #E0C050, #C9A030);
}

.btn-outline {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    background: transparent;
}

.btn-outline:hover {
    background: #D4AF37;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.alt-bg {
    background-color: #111111;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.highlight {
    color: #D4AF37;
}

.underline {
    width: 80px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 30%, #1a1a1a, #050505);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37, #FFF5CC);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 35px;
}

/* Hero Features */
/* Hero Features - Modern Design */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 60px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4AF37, #B8901F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.2rem;
    color: #0a0a0a;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #D4AF37;
    margin: 0 0 3px 0;
}

.feature-text p {
    font-size: 0.75rem;
    color: #aaa;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-features {
        gap: 15px;
        margin-top: 40px;
    }
    
    .hero-feature {
        padding: 8px 18px;
        gap: 10px;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-text h4 {
        font-size: 0.85rem;
    }
    
    .feature-text p {
        font-size: 0.65rem;
    }
}

@media (max-width: 550px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-feature {
        width: 80%;
        justify-content: center;
    }
}

/* Stats Section */
.stats {
    background: linear-gradient(145deg, #0a0a0a 0%, #0f0f0f 100%);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, #141414 0%, #0d0d0d 100%);
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #D4AF37;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-plus, .stat-percent {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AF37;
}

.stat-label {
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 500;
}

.stat-line {
    width: 0;
    height: 2px;
    background: #D4AF37;
    margin: 12px auto 0;
    transition: width 0.3s ease;
}

.stat-card:hover .stat-line {
    width: 40px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.value-item {
    background: #0a0a0a;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.value-item:hover {
    border-bottom-color: #D4AF37;
    background: #151515;
}

.value-item i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

.tab-btn {
    background: #1a1a1a;
    border: none;
    padding: 12px 24px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    color: #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.tab-btn.active, .tab-btn:hover {
    background: #D4AF37;
    color: #0a0a0a;
}

.tab-content {
    background: #1a1a1a;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.service-list span {
    background: #252525;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: #D4AF37;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.package-card {
    background: #1a1a1a;
    border-radius: 25px;
    padding: 30px 25px;
    transition: transform 0.3s;
    position: relative;
    border: 1px solid #2a2a2a;
}

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

.package-card.featured {
    border: 2px solid #D4AF37;
    transform: scale(1.02);
    background: #1f1f1f;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #D4AF37;
    color: #0a0a0a;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.8rem;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
}

.package-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.price-tag {
    color: #D4AF37;
    font-weight: bold;
    font-size: 1rem;
}

.package-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-card ul li i {
    color: #D4AF37;
    width: 24px;
}

.custom {
    background: linear-gradient(145deg, #121212, #0a0a0a);
    border: 1px dashed #D4AF37;
}

.custom .package-header i {
    font-size: 2.5rem;
    color: #D4AF37;
}

.package-note {
    background: #0a0a0a;
    border-right: 4px solid #D4AF37;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #bbb;
}

.package-note i {
    color: #D4AF37;
    margin-left: 10px;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 40px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-info .info-item i {
    font-size: 2rem;
    color: #D4AF37;
    width: 50px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    color: #fff;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

/* Footer */
footer {
    background: #050505;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #1a1a1a;
    margin-top: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    object-fit: contain !important;
}

.footer-logo-text h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #D4AF37;
}

.footer-logo-text p {
    font-size: 0.65rem;
    color: #777;
    margin: 0;
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b859;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-features {
        gap: 15px;
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        width: 80%;
        justify-content: center;
        padding: 8px 18px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px 10px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
/* التنسيق للشاشات المتوسطة (تابلت) */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr) !important; /* 3 أعمدة بدل 6 */
        gap: 15px;
    }
}

/* التنسيق للشاشات الصغيرة (جوال) */
@media (max-width: 768px) {
    /* 1. جعل شريط التنقل يظهر بشكل منسدل */
    .menu-toggle {
        display: block !important;
    }
    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    nav ul.active {
        display: flex !important;
    }

    /* 2. تحويل شبكات الأرقام والخدمات والباقات إلى عمود واحد */
    .stats-grid,
    .services-tabs,
    .packages-grid {
        grid-template-columns: 1fr !important; /* عمود واحد */
        gap: 15px !important;
    }

    /* 3. جعل أزرار علامات التبويب (الخدمات) تأخذ عرضها الكامل */
    .tab-btn {
        width: 100%;
        text-align: center;
    }

    /* 4. تكديس محتوى قسم التواصل عموديًا */
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
        gap: 30px !important;
    }

    /* 5. تصغير الهوامش والمسافات الداخلية للأقسام */
    .section-padding {
        padding: 40px 0 !important;
    }

    /* 6. تحسين عرض البطاقات */
    .package-card {
        margin: 0 10px;
    }
    
    /* 7. تحسين عرض خصائص الهيرو */
    .hero-features {
        flex-direction: column !important;
        align-items: center;
        gap: 15px !important;
    }
    .hero-feature {
        width: 90% !important;
    }
}

/* للشاشات الصغيرة جدًا */
@media (max-width: 480px) {
    .container {
        padding: 0 15px !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
    }
}
/* ======================================== */
/* شريط العملاء - دوران مستمر بدون توقف */
/* ======================================== */

.clients-strip {
    background: #0a0a0a;
    padding: 50px 0;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    margin: 30px 0;
    width: 100%;
    overflow: hidden;
}

/* Header القسم */
.clients-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
    width: 100%;
}

.clients-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #D4AF37;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.08);
    padding: 6px 22px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    white-space: nowrap;
}

.clients-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}

/* حاوية السلايدر */
.clients-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-slider {
    width: 100%;
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 30px;
    animation: slideClients 30s linear infinite;
    width: fit-content;
}

/* إيقاف الحركة عند المرور بالماوس */
.clients-strip:hover .clients-track {
    animation-play-state: paused;
}

/* بطاقة العميل */
.client-item {
    min-width: 140px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    padding: 12px 20px;
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.client-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-5px);
}

/* الصورة */
.client-item img {
    max-width: 110px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.85) contrast(1.15);
    opacity: 0.65;
    transition: all 0.35s ease;
}

.client-item:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
}

/* تأثير التدرج الجانبي */
.clients-slider-wrapper::before,
.clients-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #0a0a0a, transparent);
}

.clients-slider-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, #0a0a0a, transparent);
}

/* الحركة المستمرة - تتحرك إلى اليسار */
@keyframes slideClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

/* ======================================== */
/* للكمبيوتر (شاشات كبيرة) */
/* ======================================== */
@media (min-width: 1200px) {
    .clients-track {
        gap: 35px;
        animation-duration: 40s;
    }
    
    .client-item {
        min-width: 160px;
        height: 95px;
        padding: 15px 25px;
    }
    
    .client-item img {
        max-width: 130px;
        max-height: 65px;
    }
    
    .clients-slider-wrapper::before,
    .clients-slider-wrapper::after {
        width: 150px;
    }
}

/* ======================================== */
/* للتابلت */
/* ======================================== */
@media (max-width: 992px) and (min-width: 769px) {
    .clients-track {
        gap: 25px;
        animation-duration: 25s;
    }
    
    .client-item {
        min-width: 120px;
        height: 75px;
        padding: 10px 16px;
    }
    
    .client-item img {
        max-width: 95px;
        max-height: 48px;
    }
}

/* ======================================== */
/* للجوال */
/* ======================================== */
@media (max-width: 768px) {
    .clients-strip {
        padding: 35px 0;
        margin: 20px 0;
    }
    
    .clients-header {
        margin-bottom: 30px;
        gap: 12px;
    }
    
    .clients-title {
        font-size: 0.75rem;
        padding: 4px 16px;
    }
    
    .clients-line {
        width: 45px;
    }
    
    .clients-track {
        gap: 18px;
        animation-duration: 20s;
    }
    
    .client-item {
        min-width: 95px;
        height: 60px;
        padding: 8px 12px;
    }
    
    .client-item img {
        max-width: 70px;
        max-height: 38px;
    }
    
    .clients-slider-wrapper::before,
    .clients-slider-wrapper::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .clients-track {
        gap: 12px;
        animation-duration: 15s;
    }
    
    .client-item {
        min-width: 75px;
        height: 52px;
        padding: 6px 10px;
    }
    
    .client-item img {
        max-width: 58px;
        max-height: 32px;
    }
    
    .clients-slider-wrapper::before,
    .clients-slider-wrapper::after {
        width: 35px;
    }
}