/* ========================================
   AI Courses Platform - Custom Styles
   Dark Blue & Indigo Theme with RTL
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --bg-nav: rgba(15, 23, 42, 0.9);
    
    --indigo: #4f46e5;
    --indigo-light: #6366f1;
    --indigo-dark: #3730a3;
    --purple: #7c3aed;
    --cyan: #06b6d4;
    --amber: #f59e0b;
    --green: #10b981;
    --red: #ef4444;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --gradient-indigo: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    --gradient-emerald: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    --gradient-whatsapp: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1a1f3c 100%);
    
    /* Shadows */
    --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.4);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Arabic', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.4;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    color: var(--text-primary) !important;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 2s ease-in-out infinite;
}

.logo-icon i {
    color: white;
    font-size: 1.2rem;
}

.navbar-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transform: scale(2.25);
}

.brand-text {
    font-weight: 700;
    font-size: 1.3rem;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary) !important;
}

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

.nav-link:hover::after {
    width: calc(100% - 2rem);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
    color: white;
}

.btn-primary-custom:has(> i:only-child) {
    padding: 0.75rem 1.5rem;
    justify-content: center;
    min-width: 60px;
}

.btn-whatsapp {
    background: var(--gradient-whatsapp);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-whatsapp:has(> i:only-child) {
    padding: 0.75rem 1.5rem;
    justify-content: center;
    min-width: 60px;
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    border: 2px solid rgba(79, 70, 229, 0.5);
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.btn-secondary-custom:hover {
    background: rgba(79, 70, 229, 0.2);
    border-color: var(--indigo);
    color: white;
}

.btn-gold {
    background: var(--gradient-gold);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    animation: gradient-shift 3s ease infinite;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    color: white;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--indigo);
    top: 10%;
    right: 20%;
    animation: float 5s ease-in-out infinite;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--purple);
    bottom: 15%;
    left: 15%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 2s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.z-10 {
    z-index: 10;
}

/* Hero Content */
.hero-content {
    padding-top: 100px;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.badge-custom i {
    color: var(--indigo);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Hero Images */
.hero-images {
    position: relative;
    padding-top: 100px;
}

.hero-slider-wrapper {
    position: relative;
    padding-top: 100px;
}

#heroCarousel {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#heroCarousel .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

#heroCarousel .carousel-item {
    transition: opacity 0.6s ease-in-out;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}

.hero-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.hero-image-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

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

.main-card {
    aspect-ratio: 4/3;
}

.hero-image-card:not(.main-card) {
    aspect-ratio: 3/4;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

.image-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(79, 70, 229, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.8rem;
}

.image-badge.purple {
    background: rgba(124, 58, 237, 0.8);
}

.image-badge.cyan {
    background: rgba(6, 182, 212, 0.8);
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    top: 80px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    animation: bounce-subtle 2s ease-in-out infinite;
}

.floating-badge i {
    color: var(--amber);
    font-size: 1.2rem;
}

.floating-badge span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce-subtle 2s ease-in-out infinite;
}

.scroll-indicator a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.scroll-indicator a:hover {
    color: var(--text-primary);
}

.scroll-indicator span {
    font-size: 0.9rem;
}

/* ========================================
   Features Section
   ======================================== */
/* ========================================
   Stats / KPI Section
   ======================================== */
.stats-section {
    padding: 4rem 0;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stat-emoji {
    font-size: 2rem;
    line-height: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
    line-height: 1.6;
}

/* Responsive: sm:grid-cols-2 */
@media (min-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 2.75rem;
    }
}

/* Responsive: lg:grid-cols-5 with separators */
@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        position: relative;
    }
    
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background: rgba(255, 255, 255, 0.1);
    }
    
    [dir="rtl"] .stat-item:not(:last-child)::after {
        right: auto;
        left: 0;
    }
    
    .stat-value {
        font-size: 3rem;
    }
    
    .stat-emoji {
        font-size: 2.25rem;
    }
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: 6rem 0;
    position: relative;
    background: var(--gradient-dark);
}

/* ========================================
   Certified Platforms Section
   ======================================== */
.certified-platforms-section {
    padding: 6rem 0;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.certified-platforms-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.certification-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-fast);
    height: 100%;
}

.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(79, 70, 229, 0.3);
}

.certification-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.certification-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

/* Feature Cards */
.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(79, 70, 229, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: transform var(--transition-fast);
}

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

.gradient-indigo {
    background: var(--gradient-indigo);
}

.gradient-purple {
    background: var(--gradient-purple);
}

.gradient-cyan {
    background: var(--gradient-cyan);
}

.gradient-emerald {
    background: var(--gradient-emerald);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Foundation Day Offer Section
   ======================================== */
.foundation-section {
    padding: 6rem 0;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.foundation-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orb-red {
    width: 300px;
    height: 300px;
    background: var(--red);
    bottom: 0;
    left: 0;
    opacity: 0.15;
}

.orb-green {
    width: 300px;
    height: 300px;
    background: #22c55e;
    top: 0;
    right: 0;
    opacity: 0.15;
}

/* Offer Content */
.offer-content {
    position: relative;
    z-index: 10;
}

.offer-badge-limited {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    color: #fca5a5;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.offer-badge-limited i {
    color: var(--red);
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.offer-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.offer-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Offer Features */
.offer-features {
    margin-bottom: 2rem;
}

.features-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.features-list i {
    color: var(--green);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Countdown */
.countdown-box {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.countdown-items {
    display: flex;
    gap: 1rem;
}

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

.countdown-value {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.countdown-unit {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Offer Pricing */
.offer-pricing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.price-original {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-discount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-save {
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50px;
    color: #34d399;
    font-size: 0.9rem;
}

/* Offer Image */
.offer-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.offer-image-link:hover {
    text-decoration: none;
}

.offer-image-wrapper {
    position: relative;
}

.offer-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-image img {
    width: 100%;
    height: auto;
}

.decorator {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 16px;
    border: 2px solid;
    z-index: -1;
}

.decorator-red {
    border-color: rgba(239, 68, 68, 0.3);
    top: -20px;
    right: -20px;
}

.decorator-green {
    border-color: rgba(34, 197, 94, 0.3);
    bottom: -20px;
    left: -20px;
    width: 130px;
    height: 130px;
}

.offer-floating-badge {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9) 0%, rgba(220, 38, 38, 0.9) 100%);
    border-radius: 12px;
    animation: bounce-subtle 2s ease-in-out infinite;
    z-index: 10;
}

.offer-floating-badge i {
    color: white;
    font-size: 1.1rem;
}

.offer-floating-badge span {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ========================================
   Golden Package Section
   ======================================== */
.golden-section {
    padding: 6rem 0;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.golden-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orb-amber {
    width: 500px;
    height: 500px;
    background: var(--amber);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
}

/* Golden Content */
.golden-content {
    position: relative;
    z-index: 10;
}

.golden-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.golden-badge i {
    color: var(--amber);
}

.golden-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.golden-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.golden-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Golden Features */
.golden-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.golden-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.golden-features i {
    color: var(--amber);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Golden Bonus */
.golden-bonus {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.golden-bonus i {
    font-size: 1.8rem;
    color: var(--amber);
}

.bonus-title {
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.bonus-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Golden Pricing */
.golden-pricing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Golden Image */
.golden-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.golden-image-link:hover {
    text-decoration: none;
}

.golden-image-wrapper {
    position: relative;
}

.golden-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.golden-image img {
    width: 100%;
    height: auto;
}

.golden-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 24px;
    z-index: -1;
}

/* ========================================
   AI Image Creation Course Section
   ======================================== */
.ai-course-section {
    padding: 6rem 0;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.course-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orb-course {
    width: 500px;
    height: 500px;
    background: var(--amber);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
}

.course-content {
    position: relative;
    z-index: 10;
}

.course-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.course-learning {
    margin-bottom: 2rem;
}

.learning-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.learning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.learning-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.learning-list li i {
    color: var(--green);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.course-learning-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.course-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.course-pricing .price-discount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
}

.course-pricing .price-original {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.course-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.course-image-link:hover {
    text-decoration: none;
}

.course-image-wrapper {
    position: relative;
}

.course-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   CV Review Section
   ======================================== */
.cv-review-section {
    padding: 6rem 0;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.cv-review-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orb-cv {
    width: 500px;
    height: 500px;
    background: var(--amber);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
}

.cv-review-content {
    position: relative;
    z-index: 10;
}

.cv-review-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cv-review-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cv-review-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.cv-review-image-link:hover {
    text-decoration: none;
}

.cv-review-image-wrapper {
    position: relative;
}

.cv-review-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cv-review-image img {
    width: 100%;
    height: auto;
    display: block;
}

.golden-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--gradient-gold);
    border-radius: 12px;
    animation: bounce-subtle 2s ease-in-out infinite;
}

.golden-floating-badge i {
    color: white;
    font-size: 1.1rem;
}

.golden-floating-badge span {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
    background: var(--gradient-dark);
}

.testimonial-card {
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all var(--transition-fast);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(79, 70, 229, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 6rem 0;
    position: relative;
    background: var(--gradient-dark);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(79, 70, 229, 0.1);
    color: var(--text-primary);
    box-shadow: none;
}

.accordion-button::after {
    margin-right: auto;
    margin-left: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f8fafc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f8fafc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--text-secondary);
    padding: 1rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(15, 23, 42, 1));
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-orb {
    width: 500px;
    height: 500px;
    background: var(--indigo);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    animation: pulse 4s ease-in-out infinite;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

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

/* ========================================
   Footer
   ======================================== */
.footer-section {
    padding: 4rem 0 2rem;
    background: var(--gradient-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-about {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.footer-contact li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   Animations
   ======================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(79, 70, 229, 0.4); }
    50% { box-shadow: 0 0 40px rgba(79, 70, 229, 0.8); }
}

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

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title,
    .offer-title,
    .golden-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-content,
    .hero-images {
        padding-top: 50px;
    }
    
    .hero-slider-wrapper {
        padding-top: 50px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .floating-badge {
        top: 30px;
        left: 10px;
    }
    
    .countdown-items {
        gap: 0.5rem;
    }
    
    .countdown-value {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title,
    .offer-title,
    .golden-title,
    .cta-title {
        font-size: 1.7rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .offer-pricing,
    .golden-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .price-discount {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title,
    .offer-title,
    .golden-title,
    .cta-title {
        font-size: 1.5rem;
    }
    
    .countdown-value {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .countdown-unit {
        font-size: 0.7rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--indigo);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--indigo-light);
}

/* Selection Styling */
::selection {
    background: rgba(79, 70, 229, 0.3);
    color: var(--text-primary);
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-fast);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    color: white;
    font-size: 1.8rem;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}
