html, body{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
:root {
    --primary-color: #000000;
    --secondary-color: #f4cd35;
    --accent-color: #ffdb4d;
    --white: #ffffff;
    --black: #000000;
    --ul-gray: #E5E7EB;
    --text-gray: #4a4a4a;
    --muted: #666666;
    --shadow: rgba(0, 0, 0, 0.15);
    --shadow-hover: rgba(0, 0, 0, 0.25);
}
::selection {
    color: white;
    background: black;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 12px;
}
@font-face{
    font-family: "baysan";
    src: url('../fonts/arfonts-dg-baysan.ttf') format('opentype');
}
    
body {
    font-family: 'baysan', sans-serif;
    overflow-x: hidden;
}
section{
    scroll-margin-top: 84px;
}

/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
    width: fit-content;
}

:dir(rtl) .language-switcher {
    left: 30px;
}

:dir(ltr) .language-switcher {
    right: 30px;
}

.language-switcher-toggle {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 
                0 2px 8px rgba(102, 126, 234, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 65px;
    height: 50px;
}

.language-switcher-toggle::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.4));
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.language-switcher-toggle:hover::before {
    opacity: 1;
}

.language-switcher-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 
                0 4px 16px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.25);
}

.language-switcher-toggle:active {
    transform: translateY(-1px) scale(0.98);
}

.language-switcher-toggle[aria-expanded="true"] {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 
                0 4px 16px rgba(102, 126, 234, 0.2);
}

.language-switcher-toggle .flag-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.chevron-icon {
    color: #667eea;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.65;
    flex-shrink: 0;
}

.language-switcher-toggle:hover .chevron-icon {
    opacity: 1;
    color: #5568d3;
}

.language-switcher-toggle[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
    opacity: 1;
    color: #5568d3;
}

.language-menu {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 8px 24px rgba(102, 126, 234, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(102, 126, 234, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(12px) scale(0.95);
    transform-origin: bottom center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    min-width: 140px;
}

.language-menu::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-right: 1.5px solid rgba(102, 126, 234, 0.2);
    border-bottom: 1.5px solid rgba(102, 126, 234, 0.2);
    z-index: -1;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: all;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.08);
    position: relative;
    overflow: hidden;
}

.language-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.04));
    padding-left: 22px;
}

.language-option:hover::before {
    transform: translateX(0);
}

.language-option:active {
    transform: scale(0.98);
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.08));
}

.language-option .flag-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.language-option:hover .flag-icon {
    border-color: rgba(102, 126, 234, 0.4);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.language-label {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
}

.language-option:hover .language-label {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-switcher {
        bottom: 20px;
    }
    
    :dir(rtl) .language-switcher {
        left: 20px;
    }
    
    :dir(ltr) .language-switcher {
        right: 20px;
    }
    
    .language-switcher-toggle {
        height: 46px;
        min-width: 60px;
        padding: 10px 14px;
    }
    
    .language-switcher-toggle .flag-icon {
        width: 24px;
        height: 24px;
    }
    
    .language-option {
        padding: 12px 16px;
    }
    
    .language-option .flag-icon {
        width: 26px;
        height: 26px;
    }
    
    .language-label {
        font-size: 13px;
    }
}

/* Animation for menu items */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-menu.show .language-option {
    animation: slideInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.language-menu.show .language-option:nth-child(1) {
    animation-delay: 0.05s;
}

.language-menu.show .language-option:nth-child(2) {
    animation-delay: 0.1s;
}

/* ===============================
    Style 3: Minimal with Badge
    =============================== */
.section-heading-3 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-heading-3 .badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid rgba(28, 18, 74, 0.1);
    animation: fadeInDown 0.6s ease-out;
}

.section-heading-3 .badge-tag i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.section-heading-3 h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.section-heading-3 .highlight {
    color: var(--secondary-color);
    position: relative;
}

.section-heading-3 .highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 35%;
    background: var(--secondary-color);
    opacity: 0.15;
    z-index: -1;
    border-radius: 8px;
}

.section-heading-3 p {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Tablet - شاشات متوسطة */
@media (max-width: 992px) {
    .section-heading-3 {
        margin-bottom: 50px;
    }
    
    .section-heading-3 h2 {
        font-size: 2.2rem;
    }
    
    .section-heading-3 p {
        font-size: 1.05rem;
        max-width: 600px;
        padding: 0 20px;
    }
}

/* Mobile - شاشات صغيرة */
@media (max-width: 768px) {
    .section-heading-3 {
        margin-bottom: 40px;
    }
    
    .section-heading-3 .badge-tag {
        font-size: 0.85rem;
        padding: 8px 20px;
        gap: 6px;
    }
    
    .section-heading-3 .badge-tag i {
        font-size: 0.9rem;
    }
    
    .section-heading-3 h2 {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .section-heading-3 p {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 15px;
    }
}

/* Mobile صغير جداً */
@media (max-width: 480px) {
    .section-heading-3 {
        margin-bottom: 30px;
    }
    
    .section-heading-3 .badge-tag {
        font-size: 0.8rem;
        padding: 7px 18px;
    }
    
    .section-heading-3 h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .section-heading-3 .highlight::before {
        height: 30%;
    }
    
    .section-heading-3 p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}
.whatsapp-icon {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 111;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: bounce 1.5s infinite;
    text-decoration: none;
}
:dir(rtl).whatsapp-icon{
    right: 20px;

}
:dir(ltr).whatsapp-icon{
    left: 20px;

}
.whatsapp-icon i{
    font-size: 30px;
}
/* تأثير التحريك */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* تأثير عند التحويم */
.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    background-color: #25D366;
    color: white;
}

.notification-badge {
    position: absolute;
    top: 0px;
    right: 5px;
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
    animation: pulse 1.5s infinite;
}


/* Header Styles - بالضبط نفس الستايل بتاعك */
        .main-header .container {
            display: flex;
            align-items: center;
            margin: 0 auto;
            max-width: 1200px;
            padding: 0 20px;
        }

        .main-header {
            position: fixed;
            background-color: var(--primary-color);
            width: 100%;
            height: auto;
            top: 0;
            left: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            padding-block: 5px;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .main-header.scrolled {
            background-color: var(--primary-color);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .logo img {
            width: 120px;
            padding-block: 10px;
            height: auto;
            transition: all .3s ease-in-out;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            justify-content: end;
            margin: 0;
            padding: 0;
        }

        .main-nav li {
            margin-left: 30px;
            position: relative;
        }

        .main-nav a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
            font-size: 18px;
        }

        .main-nav .active {
            color: #a4a3a3;
        }

        .main-nav .active::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            display: block;
            height: 3px;    
            background-color: #eee;
            border-radius: 3px;
            transition: all 0.3s ease;
            width: 100%;
        }

        /* Seller Button */
        .seller-btn {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            font-size: 16px;
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            white-space: nowrap;
            border: none;
            cursor: pointer;
        }

        .seller-btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(244, 205, 53, 0.3);
        }

        .header-seller-btn {
            margin-left: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        /* إخفاء أزرار الموبايل في الديسكتوب */
        .mobile-buttons {
            display: none;
        }

        /* Popup Overlay */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .popup-overlay.active {
            display: flex;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Popup Container */
        .popup-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: slideUp 0.4s ease;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Close Button */
        .popup-close {
            position: absolute;
            top: 15px;
            left: 15px;
            background: transparent;
            border: none;
            font-size: 32px;
            cursor: pointer;
            color: #666;
            transition: color 0.3s;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .popup-close:hover {
            color: var(--primary-color);
        }

        /* Popup Content */
        .popup-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .popup-icon {
            width: 80px;
            height: 80px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 40px;
        }

        .popup-title {
            font-size: 26px;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: bold;
        }

        .popup-description {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
        }

        /* Location Buttons */
        .location-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }

        .location-btn {
            padding: 20px 30px;
            border: 2px solid var(--secondary-color);
            background: white;
            color: var(--primary-color);
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .location-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(244, 205, 53, 0.4);
        }

        .location-btn.uae {
            background: var(--secondary-color);
        }

        .location-btn.uae:hover {
            background: var(--primary-color);
            color: var(--secondary-color);
            border-color: var(--primary-color);
        }

        .location-icon {
            font-size: 24px;
        }

        /* Mobile Styles - بالضبط نفس الستايل بتاعك */
        @media (max-width: 992px) {
            .mobile-menu-toggle {
                display: flex;
            }
            
            .logo img {
                width: 80px;
            }
            
            .main-header .container {
                justify-content: space-between;
            }
            
            .main-nav {
                position: fixed;
                top: 0px;        
                padding-top: 60px;
                width: 60%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--primary-color);
                transition: all 0.4s ease;
                z-index: 1000;
                left: -100%;
            }
            
            .main-nav.active {
                left: 0;        
            }

            .main-nav ul {
                flex-direction: column;
                padding: 20px;
            }

            .main-nav li {
                margin: 15px 0;
            }

            .main-nav a {
                font-size: 18px;
                color: white;
            }

            .main-nav a.active {
                color: #a4a3a3;
            }

            .mobile-menu-toggle.active span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }

            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-toggle.active span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }

            /* إخفاء أزرار الديسكتوب في الموبايل */
            .header-seller-btn {
                display: none !important;
            }
            
            /* إظهار أزرار الموبايل في السايد بار */
            .mobile-buttons {
                display: flex;
                flex-direction: column;
                gap: 12px;
                padding: 20px;
                margin-top: 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .mobile-buttons .seller-btn {
                width: 100%;
                text-align: center;
            }
            
            .popup-container {
                padding: 30px 20px;
                width: 95%;
            }

            .popup-title {
                font-size: 22px;
            }

            .location-btn {
                padding: 16px 20px;
                font-size: 16px;
            }
        }
/* ===============================
    HERO SECTION
    =============================== */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* أشكال هندسية ديناميكية في الخلفية */
.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.4;
}

.shape-1 {
    top: 10%;
    right: 8%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), transparent);
    border-radius: 20px;
    animation: rotate3d 15s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 5%;
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.shape-3 {
    bottom: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: rotate3d 20s ease-in-out infinite reverse;
}

.shape-4 {
    top: 30%;
    left: 8%;
    width: 70px;
    height: 70px;
    border: 3px solid var(--secondary-color);
    transform: rotate(45deg);
    animation: float 10s ease-in-out infinite;
}

@keyframes rotate3d {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* خطوط منقطة ديكورية */
.dotted-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle, var(--primary-color) 1px, transparent 1px),
        radial-gradient(circle, var(--secondary-color) 1px, transparent 1px);
    background-size: 50px 50px, 60px 60px;
    background-position: 0 0, 25px 25px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* ===============================
    CONTENT STYLING
    =============================== */
.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

/* خط متموج تحت النص المميز */
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 100%;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M0,6 Q50,0 100,6 T200,6' stroke='%23f4cd35' stroke-width='3' fill='none' opacity='0.6'/%3E%3C/svg%3E");    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: drawLine 1.5s ease-out 1s both;
}

@keyframes drawLine {
    from { width: 0; }
    to { width: 100%; }
}

.hero-subtitle {
    color: var(--muted);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 560px;
    line-height: 1.8;
}

/* ===============================
    FEATURES BADGES
    =============================== */
.features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(244, 205, 53, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 205, 53, 0.3);
    border-color: #f4cd35;
}

.badge-item i {
    font-size: 1.2rem;
    color: #f4cd35;
}

.badge-item span {
    font-weight: 600;
    color: #000000;
    font-size: 0.95rem;
}

.badge-item.discount {
    background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
    color: #000000;
    font-weight: 700;
    animation: pulse-discount 2s ease-in-out infinite;
}

.badge-item.discount i,
.badge-item.discount span {
    color: #000000;
}

@keyframes pulse-discount {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===============================
    CTA BUTTON
    =============================== */
.cta-button {
    background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
    color: #000000;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(244, 205, 53, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.7s both;
    animation: floatFancy 2.2s ease-in-out infinite;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px rgba(244, 205, 53, 0.5);
    background: linear-gradient(135deg, #ffdb4d 0%, #f4cd35 100%);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(-5px);
}
/* ===============================
    IMAGE SECTION
    =============================== */
.hero-image-wrapper {
    position: relative;
    z-index: 5;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.student-image {
    width: 100%;
    height: auto;
    max-width: 550px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 25px 50px rgba(28, 18, 74, 0.15));
    border-radius: 50%;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* دائرة خلفية متحركة خلف الصورة */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(178, 205, 50, 0.2) 100%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-circle 4s ease-in-out infinite;
    opacity: 0.15;
}


/* عناصر ديكور إضافية */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -40px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    opacity: 0.08;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-circle {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
}

@keyframes morph {
    0%, 100% { 
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    50% { 
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(180deg);
    }
}

/* جزيئات متطايرة حول الصورة */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: particle-float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 70%; left: 15%; animation-delay: 2s; }
.particle:nth-child(4) { top: 85%; left: 70%; animation-delay: 1.5s; }

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

/* ===============================
    RESPONSIVE DESIGN
    =============================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .student-image {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .features-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-image-wrapper,
    .hero-title,
    .hero-subtitle,
    .features-badges,
    .hero-content,
    .cta-button{
        animation: none;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero-image-wrapper::before {
        width: 350px;
        height: 350px;
    }

    .badge-item {
        padding: 10px;
        font-size: 0.8rem;
    }

    .shape-1, .shape-3 {
        width: 60px;
        height: 60px;
    }

    .shape-2, .shape-4 {
        width: 50px;
        height: 50px;
    }
}

/* ===============================
    HERO BUTTONS WRAPPER
    =============================== */
.hero-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

/* الزر الأساسي (تواصل معنا) */
.cta-button.primary-btn {
    background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
    color: #000000;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(244, 205, 53, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    animation: floatFancy 2.2s ease-in-out infinite;
    text-decoration: none;
}

.cta-button.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.6s;
}

.cta-button.primary-btn:hover::before {
    left: 100%;
}

.cta-button.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px rgba(244, 205, 53, 0.5);
    background: linear-gradient(135deg, #ffdb4d 0%, #f4cd35 100%);
}

.cta-button.primary-btn i {
    transition: transform 0.3s ease;
}

.cta-button.primary-btn:hover i {
    transform: translateX(-5px);
}

/* الزر الثانوي (اصبح بائعاً) */
.cta-button.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-button.secondary-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.cta-button.secondary-btn:hover::before {
    width: 300%;
    height: 300%;
}

.cta-button.secondary-btn:hover {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary-btn i {
    transition: transform 0.3s ease;
}

.cta-button.secondary-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* ===============================
    RESPONSIVE للأزرار
    =============================== */
@media (max-width: 768px) {
    .hero-buttons-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-button.primary-btn,
    .cta-button.secondary-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cta-button.primary-btn,
    .cta-button.secondary-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

/* ======= Why Choose Us Section ======= */
.ul-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.ul-section-spacing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* خلفية ديكورية */
.ul-section-spacing::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
}

.ul-section-spacing::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(244, 205, 53, 0.08), rgba(255, 219, 77, 0.08));
    border-radius: 50%;
    z-index: 0;
}

/* قسم الصور المحسّن */
.about-us-imgs {
    display: flex;
    justify-content: center;
    gap: 25px;
    height: 550px;
    position: relative;
}

.about-us-imgs .img {
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 20px;
}

.about-us-imgs .img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(244, 205, 53, 0.25);
}

.about-us-imgs .img:first-child {
    width: 300px;
    height: 100%;
}

.about-us-imgs .img:last-child {
    width: 300px;
    height: 90%;
    margin-top: 60px;
}

.about-us-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.about-us-imgs .img:hover img {
    transform: scale(1.05);
}

.about-us-imgs .img .icon {
    position: absolute;
    background:  #ffdb4d;
    font-size: 50px;
    bottom: 160px;
    color: white;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(244, 205, 53, 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 11;
}
:dir(rtl) .about-us-imgs .img .icon{
    right: -65px;

}
:dir(rtl) .about-us-imgs .img .icon{
    right: -65px;

}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* قسم النص المحسّن */
.ul-section-sub-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(244, 205, 53, 0.15), rgba(255, 219, 77, 0.1));
    padding: 8px 20px;
    border-radius: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ul-section-title {
    font-weight: 800;
    font-size: 46px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.ul-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ffdb4d);
    border-radius: 2px;
}
:dir(rtl) .ul-section-title::after{
    right: 0;

}
:dir(ltr) .ul-section-title::after{
    left: 0;

}
.about-us-heading-descr {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 45px;
    line-height: 1.8;
}

.about-us-heading-descr strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* القائمة المحسّنة */
.about-us-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-us-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 25px;
    border-bottom: 1px solid var(--ul-gray);
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
}

.about-us-list-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.08;
    transition: width 0.4s ease;
    border-radius: 12px;
    z-index: -1;
}

.about-us-list-item:hover::before {
    width: 100%;
}

.about-us-list-item:hover {
    transform: translateX(-8px);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(244, 205, 53, 0.15);
}

.about-us-list-item:last-child {
    border-bottom: none;
}

.about-us-list-item .icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background:  #ffdb4d;
    border-radius: 15px;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-top: 5px;
    transition: transform 0.3s ease;
}

.about-us-list-item:hover .icon {
    transform: rotate(5deg) scale(1.1);
}

.about-us-list-item .txt {
    flex: 1;
}

.about-us-list-item-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.about-us-list-item-descr {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* شارات المميزات */
.features-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, rgba(244, 205, 53, 0.15), rgba(255, 219, 77, 0.1));
    color: var(--secondary-color);
    padding: 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(244, 205, 53, 0.2);
}

.badge i {
    color: var(--primary-color);
}

/* زر CTA */
.cta-section {
    margin-top: 40px;
}

.cta-button {
    background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
    color: #000000;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(244, 205, 53, 0.3);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px rgba(244, 205, 53, 0.5);
    background: linear-gradient(135deg, #ffdb4d 0%, #f4cd35 100%);
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .about-us-imgs {
        height: 450px;
        margin-top: 50px;
    }

    .ul-section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .ul-section-spacing {
        padding: 70px 0;
    }

    .about-us-imgs {
        height: 400px;
        gap: 20px;
    }

    .about-us-imgs .img:first-child {
        width: 220px;
    }

    .about-us-imgs .img:last-child {
        width: 220px;
        margin-top: 50px;
    }

    .about-us-imgs .img .icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
        bottom: 120px;
    }
    :dir(rtl) .about-us-imgs .img .icon{
        right: -50px;
    }
    :dir(ltr) .about-us-imgs .img .icon{
        left: -50px;
    }
    .ul-section-title {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .ul-section-spacing {
        padding: 60px 0;
    }

    .about-us-imgs {
        height: 350px;
        gap: 15px;
    }

    .about-us-imgs .img:first-child {
        width: 180px;
    }

    .about-us-imgs .img:last-child {
        width: 180px;
        margin-top: 40px;
    }

    .ul-section-title {
        font-size: 28px;
    }

    .about-us-list-item {
        padding: 20px 15px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
/* ======= Steps Section ======= */

.steps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    position: relative;
}

.steps-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.step-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.step-circle:hover {
    transform: translateY(-10px) scale(1.05);
}

.step-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(244, 205, 53, 0.2);
    transition: all 0.4s ease;
}

.step-circle:hover img {
    box-shadow: 0 15px 40px rgba(244, 205, 53, 0.35);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
    box-shadow: 0 5px 15px rgba(244, 205, 53, 0.4);
    z-index: 10;
}

.step-icon-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(244, 205, 53, 0.4);
    z-index: 10;
}

.step-icon-badge i {
    font-size: 1.2rem;
    color: #000;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Arrow Connector */
.arrow-connector {
    position: absolute;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
:dir(rtl) .arrow-connector{
    right: calc(100% + 10px);
    top: 38%;
}
:dir(ltr) .arrow-connector{
    left: calc(100% + 10px);
    rotate: 180deg;
        top: 12%;
}
.arrow-connector i {
    font-size: 2rem;
    color: #f4cd35;
    animation: slideArrow 1.5s ease-in-out infinite;
}


/* Hide last arrow on desktop */
@media (min-width: 993px) {
    .step-item:last-child .arrow-connector {
        display: none;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes slideArrow {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) translateX(8px);
        opacity: 0.6;
    }
}

/* Tablet Screens */
@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 40px;
    }

    /* Hide horizontal arrows */
    .arrow-connector {
        display: none;
    }

    /* Show vertical arrow from step 1 to step 2 */
    .step-item:nth-child(1)::after {
        content: '\f053';
        font-family: 'Font Awesome 7 Free';
        font-weight: 900;
        position: absolute;
        top: 80px;        
        font-size: 2rem;
        color: #f4cd35;
        animation: slideDown 1.5s ease-in-out infinite;
    }
    :dir(rtl) .step-item:nth-child(1)::after{
        left: -20px;
    }
    :dir(ltr) .step-item:nth-child(1)::after{
        right: -8px;
        rotate: 180deg;
    }
    /* Show vertical arrow from step 3 to step 4 */
    .step-item:nth-child(3)::after {
        content: '\f053';
        font-family: 'Font Awesome 7 Free';
        font-weight: 900;
        position: absolute;
        top: 80px;
        font-size: 2rem;
        color: #f4cd35;
        animation: slideDown 1.5s ease-in-out infinite;
    }
    :dir(rtl) .step-item:nth-child(3)::after{
        left: -20px;
    }
    :dir(ltr) .step-item:nth-child(3)::after{
        right: -8px;
        rotate: 180deg;
    }
}

@keyframes slideDown {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 0.6;
    }
}

/* Mobile Screens - 2 columns */
@media (max-width: 576px) {
    .steps-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 20px;
        padding: 0 10px;
    }

    .step-circle {
        width: 140px;
        height: 140px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: -25px;
    }

    .step-icon-badge {
        width: 50px;
        height: 50px;
        bottom: -12px;
    }

    .step-icon-badge i {
        font-size: 1.2rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    /* Arrow from step 1 to step 2 */
    .step-item:nth-child(1)::after {
        content: '\f053';
        font-family: 'Font Awesome 7 Free';
        font-weight: 900;
        position: absolute;
        top: 50px;
        left: -8px;
        font-size: 1.5rem;
        color: #f4cd35;
        animation: slideDown 1.5s ease-in-out infinite;
    }

    /* Arrow from step 3 to step 4 */
    .step-item:nth-child(3)::after {
        content: '\f053';
        font-family: 'Font Awesome 7 Free';
        font-weight: 900;
        position: absolute;
        top: 50px;
        left: -8px;
        font-size: 1.5rem;
        color: #f4cd35;
        animation: slideDown 1.5s ease-in-out infinite;
    }
}

/* Extra Small Screens */
@media (max-width: 380px) {
    .step-circle {
        width: 120px;
        height: 120px;
    }

    .steps-container {
        gap: 50px 15px;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.8rem;
    }
}



/* ===== service Section ===== */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(244, 205, 53, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    height: 100%;
}


.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(244, 205, 53, 0.25);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    position: relative;
}

.service-divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f4cd35 0%, #ffdb4d 100%);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    padding: 20px;
    border: 10px solid white;
}
:dir(rtl) .service-icon{
    right: 0;
}
:dir(ltr) .service-icon{
    left: 0;
}
.service-icon i {
    font-size: 1.3rem;
    color: #000;
}

.service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .service-image {
        height: 320px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .service-content {
        padding: 20px;
    }

    .service-image {
        height: 300px;
    }
}

.footer {
    background: #000000; /* اللون الأسود بدل البنفسجي */
    color: white;
    padding: 40px 0;
    margin-top: 50px;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* إضافة تأثير الأصفر الذهبي */
.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 205, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.footer-brand .icon {
        max-width: 350px;

}
.footer-brand .icon img {
    /* width: 150px; */
    margin-bottom: 35px;
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #f4cd35; /* العناوين بالأصفر الذهبي */
    font-weight: 700;
}

.footer-links li {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #f4cd35; /* حدود ذهبية */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%); /* خلفية ذهبية عند الهوفر */
    color: #000;
    border-color: #ffdb4d;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 205, 53, 0.3); /* خط ذهبي */
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    
    .footer::before {
        left: -400px;
    }
}


/* start  stats  */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats-box {
    width: 100%;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(244, 205, 53, 0.1);
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f4cd35 0%, #ffdb4d 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(244, 205, 53, 0.25);
    border-color: #f4cd35;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
    font-size: 2rem;
    color: #fff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin: 15px 0 10px;
    direction: ltr;
}

.stat-label {
    font-size: 1rem;
    color: #666666;
    font-weight: 600;
    margin: 0;
}

/* Animations */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    animation: countUp 0.6s ease-out forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stats-box {
        padding: 30px 15px;
    }
}
/* start  features  */
.features{
    padding-block: 50px;
    background-color: rgba(236, 241, 244, 1);
}
.features .section-title span{
    font-size: 14px;
    color: var(--secondary-color);
}
.features .section-title .title{
    font-weight: bold;
    color: var(--secondary-color);
    margin-block: 15px;
}
.features .section-title ul li {
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.features .section-title ul li img{
    width: 20px;
}
/* ============================================
   Features Video Section
   ============================================ */

/* ============================================
   Features Video Section
   ============================================ */

.features .features-video {
    padding: 35px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.features .features-video::before {
    position: absolute;
    content: "";
    width: 300px;
    height: 200px;
    background-color: transparent;
    border-bottom-right-radius: 35px;
    border-right: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    bottom: -20px;
    right: -20px;
    z-index: -1;
}

/* ============================================
   Video Content Wrapper
   ============================================ */

.features .features-video > .row:first-child {
    display: flex;
    align-items: center;
    gap: 40px;
}

.features .features-video > .row:first-child > .col-12 {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

/* Video Box */
.features .video-box {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background-color: #000;
    flex-shrink: 0;
    width: fit-content;
}

.features .video-box video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 25px;
    border: 5px solid var(--primary-color);
    object-fit: cover;
    background-color: #000;
}

.features .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 25px;
}

/* ============================================
   Side Content
   ============================================ */

.features .video-side-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.features .video-side-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.features .video-side-content h3 .highlight {
    color: var(--secondary-color);
    position: relative;
}

.features .video-side-content h3 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.features .video-side-content p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.9;
    margin-bottom: 25px;
}

.features .video-features-list {
    list-style: none;
    display: grid;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.features .video-features-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.features .video-features-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 14px;
    margin-top: 2px;
}

/* ============================================
   Feature Boxes (existing)
   ============================================ */

.features .feature-box {
    padding: 30px 20px;
    border-radius: 15px;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
}

.features .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(28, 18, 74, 0.15);
}

.features .feature-box .icon {
    color: var(--primary-color);
}

.features .feature-box .title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.features .feature-box .description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   Desktop - Side by Side Layout
   ============================================ */

@media (min-width: 1400px) {
    .features .video-box {
        height: 700px;
    }
    
    .features .video-side-content h3 {
        font-size: 2.2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .features .video-box {
        height: 650px;
    }
    
    .features .video-side-content h3 {
        font-size: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .features .video-box {
        height: 600px;
    }
    
    .features .features-video {
        padding: 30px;
    }
    
    .features .features-video > .row:first-child > .col-12 {
        gap: 30px;
    }
    
    .features .video-side-content h3 {
        font-size: 1.8rem;
    }
    
    .features .video-side-content p {
        font-size: 1.05rem;
    }
}

/* ============================================
   Tablet & Mobile - Stacked Layout
   ============================================ */

@media (max-width: 991px) {
    .features .features-video > .row:first-child > .col-12 {
        flex-direction: column;
        gap: 30px;
    }
    
    .features .video-box {
        width: 100%;
        margin: 0 auto;
    }
    
    .features .video-side-content {
        text-align: center;
        display: none;
        padding: 0 10px;
    }
    
    .features .video-side-content h3 {
        font-size: 1.6rem;
    }
    
    .features .video-features-list li {
        text-align: right;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .features .features-video {
        padding: 25px;
    }
    
    .features .features-video::before {
        width: 250px;
        height: 150px;
        bottom: -15px;
        right: -15px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .features .video-box {
        max-width: 100%;
    }
    
    .features .features-video {
        padding: 20px;
    }
    
    .features .features-video::before {
        width: 200px;
        height: 120px;
        bottom: -12px;
        right: -12px;
        border-width: 2px;
    }
    
    .features .video-box video {
        border-width: 4px;
    }
    
    .features .video-side-content h3 {
        font-size: 1.5rem;
    }
    
    .features .video-side-content p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .features .features-video {
        padding: 15px;
    }
    
    .features .features-video::before {
        width: 150px;
        height: 100px;
        bottom: -10px;
        right: -10px;
        border-width: 2px;
    }
    
    .features .video-box video {
        border-width: 3px;
        border-radius: 20px;
    }
    
    .features .video-box {
        border-radius: 20px;
    }
    
    .features .video-side-content h3 {
        font-size: 1.4rem;
    }
    
    .features .video-side-content p {
        font-size: 0.95rem;
    }
    
    .features .video-features-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .features .features-video {
        padding: 12px;
    }
    
    .features .features-video::before {
        width: 120px;
        height: 80px;
        bottom: -8px;
        right: -8px;
    }
}

/* ============================================
   Sound Toggle Button
   ============================================ */

.sound-toggle-btn {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 100 !important;
}

@media (max-width: 767px) {
    .sound-toggle-btn {
        bottom: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
    }
}
/* ============================================
   Sound Toggle Button Position
   ============================================ */

.sound-toggle-btn {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 100 !important;
}

/* في الموبايل */
@media (max-width: 767px) {
    .sound-toggle-btn {
        bottom: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
    }
}
.features .features-video img{
    width: 100%;
    border-radius: 30px;
}
.features .feature-box{
    position: relative;
    z-index: 111;
}
.feature-box .icon i {
        color: #f4cd35;
    }
.features .feature-box .title{
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
}   
.features .feature-box .description{
    color: var(--text-gray);
    max-width: 330px;
}
@media(max-width:767px){
    .features .section-title ul li{
        font-size: 14px;
    }
    .features .feature-box .title{
        font-size: 20px;
    }
    .features .feature-box .description{
        font-size: 14px;
    }
}


.float-btn {
    animation: floatFancy 2.2s ease-in-out infinite;
}

@keyframes floatFancy {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.03); }
    100% { transform: translateY(0) scale(1); }
}

.contact-section {
            padding: 80px 0;
            background: #ffffff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 10px;
        }

        .section-header .highlight {
            color: #f4cd35;
        }

        .section-header p {
            font-size: 1rem;
            color: #666;
        }

        /* Contact Info */
        .contact-info {
            padding: 40px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 35px;
            transition: transform 0.3s ease;
        }

        .contact-info-item:hover {
            transform: translateX(-5px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon i {
            font-size: 1.5rem;
            color: #000;
        }

        .contact-details h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 8px;
        }

        .contact-details p {
            font-size: 0.95rem;
            color: #666;
            margin: 0;
            line-height: 1.6;
        }

        .contact-details a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #f4cd35;
        }

        /* Contact Form */
        .contact-form {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 20px;
            border: 2px solid #e5e7eb;
        }

        .form-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            font-weight: 600;
            color: #000;
            margin-bottom: 8px;
            display: block;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: #fff;
        }

        .form-control:focus {
            outline: none;
            border-color: #f4cd35;
            box-shadow: 0 0 0 3px rgba(244, 205, 53, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
            color: #000;
            border: none;
            padding: 14px 30px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            box-shadow: 0 8px 20px rgba(244, 205, 53, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(244, 205, 53, 0.4);
        }

        /* Social Icons */
        .social-section {
            margin-top: 35px;
            padding-top: 25px;
            border-top: 2px solid #e5e7eb;
        }

        .social-title {
            font-size: 1rem;
            font-weight: 600;
            color: #000;
            margin-bottom: 15px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(244, 205, 53, 0.4);
        }

        .social-icon i {
            font-size: 1.2rem;
            color: #000;
        }

        /* Thank You Popup */
        .thank-you-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .thank-you-popup.show {
            display: flex;
            opacity: 1;
        }

        .popup-content {
            background: #fff;
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .thank-you-popup.show .popup-content {
            transform: scale(1);
        }

        .popup-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            animation: bounce 0.6s ease;
        }

        .popup-icon i {
            font-size: 2.5rem;
            color: #000;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .popup-title {
            font-size: 2rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 15px;
        }

        .popup-message {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .popup-close-btn {
            background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
            color: #000;
            border: none;
            padding: 12px 40px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .popup-close-btn:hover {
            transform: scale(1.05);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .contact-info {
                padding: 30px 20px;
                margin-bottom: 30px;
            }

            .contact-form {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 0;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .contact-info-item {
                margin-bottom: 25px;
            }
        }
/* Select2 Customization for Contact Form */
.select2-container--default .select2-selection--multiple {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    min-height: 45px;
    padding: 5px;
    background: #fff;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #f4cd35;
    box-shadow: 0 0 0 3px rgba(244, 205, 53, 0.1);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
    border: none;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #000;
    margin-right: 5px;
}

.select2-container {
    width: 100% !important;
}

.app-cta-section {
    padding-bottom: 60px ;
    padding-top: 100px;
    background: #f8f9fa;
    position: relative;
}

.app-cta-banner {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Decorative circles */
.app-cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 205, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.app-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(244, 205, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.mockup-container {
    text-align: center;
    position: relative;
}

.phone-mockup {
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    margin-top: -150px;
    transform: translateY(-50px);
    filter: drop-shadow(0 30px 60px rgba(244, 205, 53, 0.3));
    /* animation: float-phone 4s ease-in-out infinite; */
}

.cta-text {
    text-align: center;
    color: #fff;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(244, 205, 53, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(244, 205, 53, 0.3);
}

.cta-badge i {
    color: #f4cd35;
    font-size: 1rem;
}

.cta-badge span {
    color: #f4cd35;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-title .highlight {
    color: #f4cd35;
}

.cta-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f4cd35 0%, #ffdb4d 100%);
    color: #000;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(244, 205, 53, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 205, 53, 0.5);
    color: #000;
}

.download-btn i {
    font-size: 1.8rem;
}

.download-btn-info span {
    display: block;
    text-align: right;
}

.download-btn-info .small {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
}

.download-btn-info .large {
    font-size: 1rem;
    font-weight: 800;
}

@keyframes float-phone {
    0%, 100% {
        transform: translateY(-50px);
    }
    50% {
        transform: translateY(-60px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .app-cta-banner {
        padding: 50px 30px;
        border-radius: 20px;
    }

    .phone-mockup {
        max-width: 400px;
        margin-top: -100px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .app-cta-banner {
        padding: 40px 20px;
    }

    .phone-mockup {
        max-width: 300px;
        margin-top: -80px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }
}