/* ================= ROOT VARIABLES ================= */
:root {
    /* الألوان الذهبية */
    --gold: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #B8860B;
    
    /* الألوان الأساسية */
    --primary: #1a1a1a;
    --secondary: #2d2d2d;
    --accent: #8A1538;
    --accent-secondary: #E70013;
    
    /* الألوان المحايدة */
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray: #888888;
    --gray-dark: #333333;
    
    /* ألوان الحالة */
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    
    /* ألوان التواصل */
    --whatsapp-green: #25D366;
    --facebook-blue: #1877F2;
    --tiktok-black: #000000;
    
    /* الظلال */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-large: 0 15px 35px rgba(0, 0, 0, 0.2);
    
    /* الزوايا */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    
    /* الانتقالات */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-fast: all 0.15s ease;
    
    /* الأبعاد */
    --header-height: 80px;
    --container-width: 1200px;
    
    /* التدرجات */
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-qatar: linear-gradient(135deg, #8A1538 0%, #C1002C 100%);
    --gradient-tunisia: linear-gradient(135deg, #E70013 0%, #FF1E2E 100%);
}

/* وضع الليلي */
.dark-theme {
    --primary: #ffffff;
    --secondary: #f5f5f5;
    --white: #1a1a1a;
    --black: #ffffff;
    --gray-light: #2d2d2d;
    --gray-dark: #f5f5f5;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ================= RESET & BASE STYLES ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    direction: rtl;
    overflow-x: hidden;
    transition: var(--transition-slow);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

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

/* ================= TYPOGRAPHY ================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

.gold-text {
    color: var(--gold) !important;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 1.1rem;
}

.primary-btn {
    background: var(--gradient-gold);
    color: var(--white);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.outline-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.outline-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.whatsapp-btn {
    background: var(--whatsapp-green);
    color: var(--white);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.call-btn {
    background: var(--accent);
    color: var(--white);
}

.call-btn:hover {
    background: #C1002C;
    transform: translateY(-3px);
}

/* ================= NAVIGATION ================= */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.glass-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.dark-theme .glass-header {
    background: rgba(26, 26, 26, 0.95);
}

.dark-theme .glass-header.scrolled {
    background: rgba(26, 26, 26, 0.98);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--gold);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 17px;
    margin-bottom: 0;
}

.logo-text p {
    font-size: 10px;
    color: var(--gray);
    margin-bottom: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.nav-link {
    position: relative;
    font-weight: 600;
    color: var(--primary);
    padding: 8px 0;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: all 0.3s ease;
    opacity: 0;
}

/* Theme Switcher */
.theme-switcher {
    display: flex;
    align-items: center;
}

.theme-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.theme-btn:hover {
    background: var(--gold);
    color: var(--white);
}

/* Language Switcher */
.language-switcher-nav {
    position: relative;
}

.lang-btn-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn-nav:hover {
    background: var(--gold);
    color: var(--white);
}

.lang-dropdown-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    min-width: 120px;
    display: none;
    z-index: 1001;
    overflow: hidden;
}

.dark-theme .lang-dropdown-nav {
    background: var(--secondary);
}

.lang-dropdown-nav.active {
    display: block;
}

.lang-option-nav {
    display: block;
    padding: 12px 20px;
    color: var(--primary);
    transition: var(--transition);
}

.lang-option-nav:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.lang-option-nav.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta.whatsapp-btn {
    background: var(--whatsapp-green);
    color: var(--white);

}

.nav-cta.call-btn {
    background: var(--gold-dark);
    color: var(--white);
}

.cta-text {
    display: inline-block;
}

/* Mobile Menu Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
    color: var(--white);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-prev {
    right: 20px;
}

.slider-next {
    left: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
}

/* Hero Buttons */
.hero-buttons-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    z-index: 10;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ================= WHY CHOOSE US SECTION ================= */
.why-choose {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 600px;
}

.dark-theme .why-choose {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.dark-theme .feature-card {
    background: var(--gray-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.dark-theme .feature-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.3) 100%);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ================= ABOUT SECTION ================= */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature {
    text-align: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.dark-theme .feature {
    background: rgba(212, 175, 55, 0.1);
}

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

.dark-theme .feature:hover {
    background: rgba(212, 175, 55, 0.15);
}

.feature i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    text-align: center;
}

.stat {
    padding: 20px;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.frame-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

/* ================= HOW IT WORKS SECTION ================= */
.how-it-works {
    background: var(--white);
}

.dark-theme .how-it-works {
    background: var(--gray-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), rgba(212, 175, 55, 0.3));
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.step-content {
    width: calc(50% - 40px);
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.dark-theme .step-content {
    background: var(--gray-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.timeline-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.timeline-step:hover .step-icon {
    background: var(--gradient-gold);
    color: var(--white);
    transform: rotate(15deg);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* ================= TESTIMONIALS PREVIEW ================= */
.testimonials-preview {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-preview .section-title,
.testimonials-preview .section-subtitle {
    color: var(--white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.testimonial-slide {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--gold);
}

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

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.client-info h4 {
    color: var(--white);
    margin-bottom: 5px;
}

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

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 15px 0;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1.1rem;
}

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

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ================= CALL TO ACTION ================= */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

.cta-section .section-title {
    color: var(--white);
}

.cta-section .section-title::after {
    background: var(--white);
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-btn {
    min-width: 200px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: var(--white);
    color: var(--gold);
}

.cta-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--gold);
    transform: translateY(-5px);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.cta-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-feature i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-feature h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.cta-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ================= FOOTER ================= */
.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-desc {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--white);
    transition: var(--transition);
}

.social-icon.whatsapp { background: var(--whatsapp-green); }
.social-icon.facebook { background: var(--facebook-blue); }
.social-icon.tiktok { background: var(--tiktok-black); }

.social-icon:hover {
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-link {
    color: var(--gray);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--gold);
    padding-right: 5px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gray);
}

.footer-contact-info i {
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.legal-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.legal-notice i {
    font-size: 1.2rem;
}

.legal-notice p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

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

/* ================= FLOATING BUTTONS ================= */
.float-whatsapp,
.float-theme,
.scroll-to-top {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
}

.float-whatsapp {
    bottom: 30px;
    left: 30px;
    background: var(--whatsapp-green);
    color: var(--white);
}

.float-whatsapp:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.float-whatsapp .float-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--error);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.float-theme {
    bottom: 100px;
    left: 30px;
    background: var(--secondary);
    color: var(--primary);
}

.float-theme:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: var(--secondary);
}

.scroll-to-top {
    bottom: 170px;
    left: 30px;
    background: var(--gold);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: scale(1.1) translateY(-5px);
    background: var(--gold-dark);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ================= AOS STYLES ================= */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-large);
        z-index: 1001;
    }
    
    .dark-theme .nav-links {
        background: var(--gray-light);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .header-buttons .cta-text {
        display: none;
    }
    
    .timeline::before {
        right: 30px;
    }
    
    .timeline-step {
        flex-direction: row !important;
    }
    
    .step-content {
        width: calc(100% - 70px);
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .slide-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .float-whatsapp,
    .float-theme,
    .scroll-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .float-theme {
        bottom: 90px;
        left: 20px;
    }
    
    .scroll-to-top {
        bottom: 150px;
        left: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-wrap {
        padding: 0 15px;
    }
    
    .header-buttons {
        display: none;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .testimonial-slide {
        padding: 30px 20px;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
}














/* ================= HERO SLIDER UPDATES ================= */
.country-flag {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: flagWave 2s ease-in-out infinite alternate;
}

.country-flags {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
}

@keyframes flagWave {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(5deg); }
}

.slide-content {
    text-align: center;
}

.service-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.slider-dots .dot {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots .dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2);
}

/* ================= COUNTRY BUTTONS ================= */
.country-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.country-btn {
    min-width: 150px;
    position: relative;
    overflow: hidden;
    border: 2px solid;
}

.qatar-btn {
    border-color: #8a1538;
    color: #8a1538;
}

.qatar-btn:hover {
    background: #8a1538;
    color: white;
}

.tunisia-btn {
    border-color: #e70013;
    color: #e70013;
}

.tunisia-btn:hover {
    background: #e70013;
    color: white;
}

/* ================= SERVICES BY COUNTRY SECTION ================= */
.services-country {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0.01) 100%);
}

.country-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.country-service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.country-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

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

.country-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.qatar-header {
    background: linear-gradient(135deg, rgba(138, 21, 56, 0.1) 0%, rgba(138, 21, 56, 0.05) 100%);
}

.qatar-header::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 L100,0 L50,100 Z" fill="%238a1538"/></svg>');
}

.tunisia-header {
    background: linear-gradient(135deg, rgba(231, 0, 19, 0.1) 0%, rgba(231, 0, 19, 0.05) 100%);
}

.tunisia-header::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23e70013"/></svg>');
}

.international-header {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
}

.international-header::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 A40,40 0 1,1 50,90 A40,40 0 1,1 50,10" fill="%232196f3"/></svg>');
}

.country-flag-large {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
}

.country-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

.country-services-list {
    padding: 0 30px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--white);
    transform: rotate(15deg);
}

.service-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.service-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.country-cta {
    padding: 30px;
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    margin-top: 20px;
}

.country-cta .btn {
    min-width: 200px;
}

/* ================= DARK THEME ADJUSTMENTS ================= */
.dark-theme .country-service-card {
    background: var(--dark-bg-light);
    border-color: rgba(212, 175, 55, 0.2);
}

.dark-theme .service-item {
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.dark-theme .country-services-list {
    color: var(--dark-text);
}

.dark-theme .service-content h4 {
    color: var(--dark-text);
}

.dark-theme .service-content p {
    color: var(--dark-text-light);
}

.dark-theme .country-cta {
    background: rgba(212, 175, 55, 0.1);
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 768px) {
    .country-services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        flex-direction: column;
        align-items: center;
    }
    
    .country-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .country-btn {
        width: 100%;
    }
    
    .slider-dots .dot {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .country-flag-large {
        font-size: 3rem;
    }
    
    .country-header,
    .country-services-list,
    .country-cta {
        padding: 20px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto;
    }
}