/* TicketIn - Merged CSS for All Pages */

/* Global Variables */
:root {
    --primary-color: #164ab2;
    --secondary-color: #FF5E78;
    --accent-color: #4ECDC4;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --text-color: #333;
    --light-purple: #2a6fd6;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--light-purple));
    --card-shadow: 0 10px 30px rgba(22, 74, 178, 0.08);
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: #fff;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

/* TicketIn Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    margin-left: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 74, 178, 0.3);
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(22, 74, 178, 0.4);
}

.logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

.logo svg {
    width: 30px;
    height: 30px;
    fill: white;
}

h1 {
    font-size: 2rem; /* consistent across the site */
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 5px 0;
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand:hover {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

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

.nav-links a.active {
    color: var(--primary-color);
}

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

.cta-button {
    display: block;
    width: 100px;
    text-align: center;
    background: #ff7b00;   /* Flat primary color */
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 16px 0;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: #e56d00;   /* Slightly darker on hover */
}

.cta-button:active {
    transform: scale(0.98);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    background: none;
    border: none;
    padding: 5px;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    background-color: white;
    width: 80%;
    max-width: 300px;
    height: 100%;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.mobile-menu-logo .logo {
    margin-left: 10px;
}

.mobile-menu-logo span {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.close-menu:hover {
    color: var(--primary-color);
}

.mobile-nav-links {
    list-style: none;
}

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

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-nav-links a:hover {
    background-color: rgba(22, 74, 178, 0.1);
    color: var(--primary-color);
}

.mobile-nav-links a.active {
    background-color: rgba(22, 74, 178, 0.1);
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-cta {
    margin-top: 20px;
}

.mobile-cta .cta-button {
    width: 100px;
    text-align: center;
}

/* Home Page - Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(22, 74, 178, 0.76), rgba(42, 111, 214, 0.54)), url('https://ticketin.org/images/home-hero.webp') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');*/
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 900;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding-top: -5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 15px 15px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border: 2px solid white;
    transition: all 0.3s;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

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

/* Enhanced Hero Section Enhancements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: moveParticles 20s linear infinite;
}

@keyframes moveParticles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -100px); }
}

.hero-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(22, 74, 178, 0.1) 0%, 
        rgba(255, 94, 120, 0.1) 50%, 
        rgba(78, 205, 196, 0.1) 100%);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.hero-title {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}



.highlight-text {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.hero-description {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Animated Statistics */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Enhanced Buttons */
.hero .hero-buttons {
    animation: fadeInUp 1s ease-out 1s both;
}

.hero .btn-primary {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

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

.hero .btn-primary:hover::before {
    left: 100%;
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-stars i {
    color: #FFD700;
    font-size: 14px;
}

/* Enhanced How-it-works Section */
.how-it-works {
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-purple));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.badge-icon {
    font-size: 16px;
}

.how-it-works .section-title h2 {
    color: var(--dark-color);
    position: relative;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--light-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(22, 74, 178, 0.3);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: white;
    border: 3px solid white;
}

.step-arrow {
    position: absolute;
    top: 50%;
    left: calc(100% + 1rem);
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(-50%) translateX(0); }
    40% { transform: translateY(-50%) translateX(10px); }
    60% { transform: translateY(-50%) translateX(5px); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem) !important;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero .btn-primary, .hero .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem !important;
    }
    
    .hero p {
        font-size: 1.2rem !important;
    }
}

/* Home Page - Sections */
.section-padding {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--gradient);
    bottom: -10px;
    right: 20%;
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Home Page - Features Section */
.features {
    background-color: white;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(22, 74, 178, 0.05), transparent);
    z-index: -1;
}

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

.feature-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(22, 74, 178, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    transform: translate(30px, -30px);
    opacity: 0.1;
    z-index: 0;
}

/* Enhanced Features Section Styles */
.features {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    overflow: hidden;
}

.features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(22, 74, 178, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 94, 120, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.enhanced-feature-card {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 24px !important;
    padding: 3rem 2rem !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 
        0 25px 50px rgba(22, 74, 178, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.feature-icon {
    position: relative;
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto 2rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-purple)) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(22, 74, 178, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.feature-card:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(22, 74, 178, 0.6);
}

.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(22, 74, 178, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover .feature-glow {
    opacity: 1;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.feature-card h3 {
    transition: color 0.3s ease !important;
}

.feature-card:hover h3 {
    color: var(--primary-color) !important;
}

.feature-card p {
    transition: color 0.3s ease !important;
}

.feature-card:hover p {
    color: #555 !important;
}

.feature-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
    z-index: 1;
}

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

/* Enhanced Partners Section */
.partners {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-purple) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.partners-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.partners .section-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partners .section-title {
    color: white;
}

.partners .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.partner-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.partner-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-stat-item:hover {
    transform: translateY(-5px);
}

.partner-stat-item .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.partner-stat-item .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.partner-logo-container {
    margin-top: 4rem;
}

.partner-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-logo-item {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.partner-logo-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.partner-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    padding: 10px;
}

.partner-logo-item:hover .partner-logo {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.partner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.partner-logo-item:hover .partner-overlay {
    transform: translateY(0);
}

.partner-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .partner-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-stat-item .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .partner-stats {
        grid-template-columns: 1fr;
    }
    
    .partner-logo-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(22, 74, 178, 0.15);
}

.feature-icon {
    background: var(--gradient);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(22, 74, 178, 0.2);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

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

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Home Page - How It Works Section */
.how-it-works {
    background-color: var(--light-color);
}

.how-it-works .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    counter-reset: step-counter;
}

/* Home Page - Testimonials Section */
.testimonials {
    background-color: white;
}
.admin-benefits {
    background-color: white;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 20px;
    direction: ltr; /* To make it work correctly with flexbox in RTL */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.testimonial-card {
    flex-shrink: 0;
    width: 90%;
    max-width: 400px;
    background-color: var(--light-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    scroll-snap-align: start;
    direction: rtl; /* Restore RTL direction */
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
}

.testimonial-quote::before {
    content: "";
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -15px;
    right: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

/* How it Works Section */
.how-it-works {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(22, 74, 178, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 94, 120, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-purple));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    top: 70%;
    right: 15%;
    animation-delay: -7s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    bottom: 20%;
    left: 70%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-40px) rotate(180deg); 
        opacity: 0.6;
    }
    75% { 
        transform: translateY(-20px) rotate(270deg); 
        opacity: 0.8;
    }
}

.steps-timeline {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
    border-radius: 2px;
    z-index: 1;
    transform: translateY(-50%);
    margin: 0 10%;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 3px rgba(22, 74, 178, 0.3);
}

.steps-timeline::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 3px rgba(255, 94, 120, 0.3);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}



@keyframes pulse {
    0%, 100% { 
        opacity: 0.7;
        transform: translateY(-50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }
}


/* Step Header - Feature Card Style */
.step-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px 24px 0 0;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.step-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    transform: translate(30px, -30px);
    opacity: 0.1;
    z-index: 0;
}

/* Step Icon - Feature Card Style */
.step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(22, 74, 178, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}


/* Step Glow Effect */
.step-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(22, 74, 178, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}


/* Step Number Badge */
.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: white;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
}


/* Step Header Content */
.step-header-content {
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}


.step-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}


/* Step Hover Effect */
.step-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
    z-index: 1;
}


/* Mobile Responsive Step Headers */
@media (max-width: 768px) {
    .step-header {
        padding: 1rem 1.5rem;
        min-height: 70px;
        flex-direction: row;
        align-items: center;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin-right: 0.75rem;
    }
    
    .icon-bg {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-radius: 10px;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
        top: -6px;
        right: -6px;
        border: 2px solid white;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .step-header {
        padding: 0.75rem 1rem;
        min-height: 60px;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        margin-right: 0.5rem;
    }
    
    .icon-bg {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-radius: 8px;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: -5px;
        right: -5px;
    }
    
    .step-title {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .step-subtitle {
        font-size: 0.75rem;
    }
}

/* Mobile Responsive Step Content */
@media (max-width: 768px) {
    .step-content {
        padding: 1.5rem;
    }
    
    .step-content > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        text-align: right;
    }
}

@media (max-width: 480px) {
    .step-content {
        padding: 1rem;
    }
    
    .step-content > p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .steps-timeline {
        display: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    
    @keyframes bounce {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-5px); }
    }
}

.step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}


.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: white;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    z-index: 100;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
}

.step-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 16px 16px;
}

.step-content > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: right;
    font-size: 1rem;
    font-weight: 500;
}

/* Remove old h3 styling since titles are now in headers */

.step-details {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    border-left: 3px solid var(--primary-color);
}

.step-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Service Types */
.service-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-type {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(22, 74, 178, 0.05), rgba(255, 94, 120, 0.05));
    border: 1px solid rgba(22, 74, 178, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-type:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(22, 74, 178, 0.1);
    background: linear-gradient(135deg, rgba(22, 74, 178, 0.08), rgba(255, 94, 120, 0.08));
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 2px solid rgba(22, 74, 178, 0.1);
    transition: all 0.3s ease;
}

.service-type:hover .service-icon {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.service-emoji {
    font-size: 1.5rem;
}

.service-info {
    flex: 1;
}

.service-info strong {
    display: block;
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1rem;
}

.service-info span {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Booking Methods */
.booking-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.booking-method {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(22, 74, 178, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booking-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--light-purple));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.booking-method:hover::before {
    transform: scaleY(1);
}

.booking-method:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(22, 74, 178, 0.15);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.method-emoji {
    font-size: 1.5rem;
}

.method-header strong {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.method-description span {
    display: block;
    color: #666;
    font-weight: 500;
    margin-bottom: 4px;
}

.method-description small {
    color: #888;
    font-size: 12px;
    font-style: italic;
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-option:hover {
    transform: scale(1.02);
    border-color: #FF6B35;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.08));
}

.payment-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.payment-option:hover .payment-icon {
    border-color: #FF6B35;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.payment-emoji {
    font-size: 1.5rem;
}

.payment-details {
    flex: 1;
}

.payment-details strong {
    display: block;
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1rem;
}

.payment-details span {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Confirmation Features */
.confirmation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.confirm-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.confirm-item:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.confirm-item i {
    color: #22c55e;
    font-size: 14px;
    width: 16px;
}

.confirm-item span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Enhanced Service Types - Step Cards */
.service-types-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-item-enhanced {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 70px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-item-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-item-enhanced:hover::before {
    transform: scaleY(1);
}

.service-item-enhanced:hover {
    transform: translateY(-3px) translateX(2px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.12),
        0 3px 10px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 1));
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-right: 1rem;
}

.service-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-item-enhanced:hover .service-content h4 {
    color: #7c3aed;
}

.service-content span {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.service-item-enhanced:hover .service-content span {
    color: #475569;
}

.service-image {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 14px;
    border: 2px solid rgba(139, 92, 246, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-item-enhanced:hover .service-image {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    transform: scale(1.08) rotate(2deg);
    border-color: rgba(139, 92, 246, 0.3);
}

.service-item-enhanced:hover .service-image::after {
    opacity: 1;
}

.service-image .service-emoji {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-item-enhanced:hover .service-image .service-emoji {
    transform: scale(1.1);
}

/* Empty span styling for better visual balance */
.service-content span:empty {
    display: none;
}

/* When span is empty, adjust h4 margin */
.service-content span:empty + h4,
.service-content h4:only-child {
    margin-bottom: 0;
}

/* Enhanced animations */
@keyframes cardPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.service-item-enhanced:active {
    animation: cardPulse 0.2s ease;
}

/* Mobile Responsive for Enhanced Service Types */
@media (max-width: 768px) {
    .service-item-enhanced {
        padding: 0.8rem 1rem;
        min-height: 65px;
        border-radius: 14px;
    }
    
    .service-content {
        gap: 0.3rem;
        padding-right: 0.8rem;
    }
    
    .service-content h4 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .service-content span {
        font-size: 0.85rem;
    }
    
    .service-image {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    
    .service-image .service-emoji {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .service-item-enhanced {
        padding: 0.7rem 0.9rem;
        min-height: 60px;
        border-radius: 12px;
    }
    
    .service-content {
        gap: 0.25rem;
        padding-right: 0.7rem;
    }
    
    .service-content h4 {
        font-size: 0.9rem;
    }
    
    .service-content span {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .service-image {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    
    .service-image .service-emoji {
        font-size: 1.2rem;
    }
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 15px;
    border: 3px solid var(--primary-color);
}

.author-details h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 700;
}

.author-details p {
    color: #777;
    font-size: 0.9rem;
}

/* Home Page - Partners Section */
.partners {
    background-color: var(--light-color);
    text-align: center;
}

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Home Page - User & Provider Sections */
.admin-benefits {
    background-color: white;
}
.providers {
    background-color: var(--light-color);
}

.section-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 20px;
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    border-radius: 8px;
}

.tab-button.active {
    color: var(--primary-color);
    background-color: rgba(22, 74, 178, 0.1);
}

.tab-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    right: 0;
    background: var(--gradient);
    transition: width 0.3s;
}

.tab-button.active::after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    border-right: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Home Page - FAQ Section */
.faq-section {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--light-color);
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: rgba(22, 74, 178, 0.1);
}

.faq-question.active {
    background-color: var(--primary-color);
    color: white;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

/* Home Page - CTA Section */
.cta-section {
    background: var(--gradient);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 500;
}

/* Home Page - Contact Section */
.contact-section {
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 800;
}

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

.contact-icon {
    background: var(--gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    font-size: 1.2rem;
}

.contact-text {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 800;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(22, 74, 178, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22, 74, 178, 0.3);
}

/* Privacy Policy & Terms - Hero Section */
.privacy-hero,
.terms-hero {
    background: var(--gradient);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before,
.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.2;
}

.privacy-hero-content,
.terms-hero-content {
    position: relative;
    z-index: 2;
}

.privacy-hero h1,
.terms-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.privacy-hero p,
.terms-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.last-updated {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.8;
}

/* Privacy Policy & Terms - Content */
.privacy-content,
.terms-content {
    padding: 60px 0;
}

.privacy-section,
.terms-section {
    margin-bottom: 50px;
}

.privacy-section h2,
.terms-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-right: 15px;
}

.privacy-section h2::before,
.terms-section h2::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: var(--gradient);
    border-radius: 3px;
}

.privacy-section h3,
.terms-section h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin: 25px 0 15px;
    font-weight: 700;
}

.privacy-section p,
.terms-section p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
}

.privacy-section ul,
.terms-section ul {
    margin-right: 25px;
    margin-bottom: 15px;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.05rem;
    position: relative;
    padding-right: 20px;
}

.privacy-section li::before,
.terms-section li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.highlight-box {
    background-color: rgba(22, 74, 178, 0.05);
    border-right: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.data-table,
.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.data-table th,
.terms-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.data-table td,
.terms-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.data-table tr:nth-child(even),
.terms-table tr:nth-child(even) {
    background-color: rgba(138, 0, 196, 0.02);
}

.data-table tr:hover,
.terms-table tr:hover {
    background-color: rgba(22, 74, 178, 0.05);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

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

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links i {
    margin-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.app-download {
    margin-top: 20px;
}

.app-download a {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s;
}

.app-download a:hover {
    transform: translateY(-3px);
}

.app-download img {
    height: 40px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1,
    .privacy-hero h1,
    .terms-hero h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1,
    .privacy-hero h1,
    .terms-hero h1 {
        font-size: 2.2rem;
    }

    .hero p,
    .privacy-hero p,
    .terms-hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .section-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.2rem;
    }

    .data-table,
    .terms-table {
        font-size: 0.9rem;
    }

    .data-table th, .data-table td,
    .terms-table th, .terms-table td {
        padding: 10px;
    }
    
    /* Compact Steps Mobile */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content > p {
        font-size: 0.8rem;
    }
    
    .step-number-badge {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero,
    .privacy-hero,
    .terms-hero {
        min-height: 90vh;
        padding: 120px 0 60px;
    }

    .hero h1,
    .privacy-hero h1,
    .terms-hero h1 {
        font-size: 1.8rem;
    }

    .hero p,
    .privacy-hero p,
    .terms-hero p {
        font-size: 1rem;
    }

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

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

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.3rem;
    }

    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.1rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        left: 20px;
    }

    .service-item,
    .booking-item,
    .payment-item {
        padding: 0.4rem;
        gap: 0.5rem;
    }
    
    .service-text strong,
    .booking-text strong,
    .payment-text strong {
        font-size: 0.75rem;
    }
    
    .service-text small,
    .booking-text small,
    .payment-text small {
        font-size: 0.65rem;
    }
}

/* Steps CTA Section - جاهز للبدء؟ inside How It Works */
.steps-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(22, 74, 178, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.steps-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 100%);
    border-radius: 24px 24px 0 0;
}

.steps-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(22, 74, 178, 0.05) 0%, transparent 70%);
    animation: pulse-bg 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.steps-cta:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(138, 0, 196, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.steps-cta .cta-content {
    position: relative;
    z-index: 2;
}

.steps-cta h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.steps-cta h3::after {
    content: '🚀';
    position: absolute;
    top: -5px;
    right: -40px;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.steps-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.steps-cta .btn-primary {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

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

.steps-cta .btn-primary:hover::before {
    left: 100%;
}

.steps-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.steps-cta .btn-secondary {
    background: rgba(22, 74, 178, 0.1);
    color: var(--primary-color);
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(22, 74, 178, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.steps-cta .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(22, 74, 178, 0.3);
}

/* App Store Download Buttons */
.app-store-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    min-width: 180px !important;
    border: 2px solid transparent !important;
}

.app-store-btn.btn-primary {
    background: #34A853 !important; /* Google Play Green */
    color: white !important;
    border-color: #34A853 !important;
}

.app-store-btn.btn-primary:hover {
    background: #2d8f47 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.4) !important;
}

.app-store-btn.btn-secondary {
    background: #000000 !important; /* Apple Black */
    color: white !important;
    border-color: #000000 !important;
}

.app-store-btn.btn-secondary:hover {
    background: #333333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

.app-store-btn i {
    font-size: 24px !important;
    flex-shrink: 0;
}

.btn-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-align: left;
}

.btn-subtitle {
    font-size: 11px !important;
    opacity: 0.8;
    font-weight: 400 !important;
    margin-bottom: 2px;
}

.btn-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: -0.3px;
}

/* App Info Section */
.app-info {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(22, 74, 178, 0.1);
}

.app-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px !important;
    color: #666 !important;
    margin: 0 !important;
    flex-wrap: wrap;
}

.app-features i {
    color: #FFD700;
    font-size: 16px;
}

.app-features .separator {
    color: #ccc;
    font-weight: bold;
}

/* RTL Support for App Store Buttons */
[dir="rtl"] .btn-text-content {
    align-items: flex-end;
    text-align: right;
}

[dir="rtl"] .app-store-btn {
    flex-direction: row-reverse;
}

/* Enhanced Main CTA Section - مستعد للبدء؟ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-purple) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float-patterns 15s ease-in-out infinite;
}

@keyframes float-patterns {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.cta-section h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.cta-section h2::after {
    content: '⚡';
    position: absolute;
    top: -10px;
    right: -50px;
    font-size: 2rem;
    animation: spark 2s infinite;
}

@keyframes spark {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(10deg); opacity: 1; }
}

.cta-section p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 500;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 74, 178, 0.1), transparent);
    transition: left 0.6s;
}

.cta-section .btn-primary:hover::before {
    left: 100%;
}

.cta-section .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: white;
}

/* Mobile responsive for step numbers */
@media (max-width: 768px) {

    
    /* Steps CTA Mobile */
    .steps-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .steps-cta h3 {
        font-size: 1.8rem;
    }
    
    .steps-cta h3::after {
        right: -30px;
        font-size: 1.2rem;
    }
    
    .steps-cta p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .steps-cta .btn-primary,
    .steps-cta .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    /* App Store Buttons Mobile */
    .app-store-btn {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        min-width: auto !important;
    }
    
    .app-store-btn i {
        font-size: 22px !important;
    }
    
    .btn-title {
        font-size: 15px !important;
    }
    
    .btn-subtitle {
        font-size: 10px !important;
    }
    
    .app-features {
        font-size: 13px !important;
        gap: 6px;
    }
    
    /* Main CTA Mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .cta-section h2::after {
        right: -35px;
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .cta-section .btn-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 18px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {

    /* Steps CTA Extra Small Mobile */
    .steps-cta {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .steps-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .steps-cta h3::after {
        display: none; /* Hide emoji on very small screens */
    }
    
    .steps-cta p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .steps-cta .btn-primary,
    .steps-cta .btn-secondary {
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 40px;
    }
    
    /* App Store Buttons Extra Small Mobile */
    .app-store-btn {
        padding: 12px 16px !important;
        border-radius: 10px !important;
        gap: 10px !important;
    }
    
    .app-store-btn i {
        font-size: 20px !important;
    }
    
    .btn-title {
        font-size: 14px !important;
    }
    
    .btn-subtitle {
        font-size: 9px !important;
    }
    
    .app-features {
        font-size: 12px !important;
        gap: 4px;
        flex-direction: column;
    }
    
    .app-features .separator {
        display: none;
    }
    
    /* Main CTA Extra Small Mobile */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-section h2::after {
        display: none; /* Hide emoji on very small screens */
    }
    
    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .cta-section .btn-primary {
        padding: 16px 28px;
        font-size: 1rem;
        border-radius: 40px;
    }
}
