/* =========================================
   PREMIUM UI SYSTEM (Antigravity v1.0)
   ========================================= */

:root {
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --accent-glow: rgba(220, 252, 17, 0.3);
    --header-bg: rgba(3, 3, 4, 0.98);
    --hero-overlay: linear-gradient(to top, rgba(3, 3, 4, 1) 0%, rgba(3, 3, 4, 0.1) 40%, transparent 100%);
}

[data-theme="light"] {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    --header-bg: rgba(255, 255, 255, 0.9);
    --hero-overlay: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.05) 30%, transparent 60%);
}

/* Base Polish */
.noise-overlay {
    display: none;
}

[data-theme="light"] .noise-overlay {
    display: none;
}

.bg-blobs {
    display: none;
}

[data-theme="light"] .blob {
    opacity: 0.05;
}

.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-accent-glow), transparent 70%);
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
}

.blob-1 {
    top: -10%;
    left: -10%;
    animation: float 20s infinite alternate;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(168, 214, 0, 0.2), transparent 70%);
    animation: float 25s infinite alternate-reverse;
}

.blob-3 {
    top: 40%;
    left: 60%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
    animation: float 18s infinite alternate;
}

@keyframes float {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(10%, 10%) rotate(20deg);
    }
}

/* Premium Theme Toggle */
.theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    color: var(--color-text-main) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
}

.theme-toggle:hover {
    border-color: var(--color-accent);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.theme-toggle svg {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sun-icon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.moon-icon {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

/* Toggle Visibility by Theme */
[data-theme="dark"] .sun-icon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

[data-theme="dark"] .moon-icon {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

[data-theme="light"] .sun-icon {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

[data-theme="light"] .moon-icon {
    opacity: 1;
    transform: scale(1) rotate(0);
    color: #4F46E5;
    /* Nice indigo for moon in light mode */
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.2s ease, background 0.3s ease;
    mix-blend-mode: normal;
}

.custom-cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease-out;
}

@media (max-width: 1024px) {

    .custom-cursor,
    .custom-cursor-follower {
        display: none !important;
    }
}

/* Global Section Spacing */
.section-padding {
    padding: 160px 0 !important;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0 !important;
    }
}

/* Glassmorphism Classes */
.premium-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-glass:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    background: rgba(220, 254, 17, 0.02);
}

/* Specific Card Overrides */
.stat-box,
.speaker-card,
.bento-card,
.faq-item,
.collab-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
}

.speaker-card {
    padding: 0;
    overflow: hidden;
}

.speaker-info {
    padding: 24px;
}

/* Header Enhancements */
header.scrolled {
    padding: 12px 0;
    background: var(--header-bg);
    backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid rgba(220, 254, 17, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] header.scrolled {
    background: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.btn-get-touch {
    background: linear-gradient(135deg, var(--color-accent), #a8d600);
    color: #000 !important;
    border: none !important;
    font-weight: 800 !important;
    border-radius: 100px !important;
    padding: 12px 28px !important;
    box-shadow: 0 4px 15px rgba(220, 254, 17, 0.3);
}

.btn-get-touch:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 254, 17, 0.5);
}

/* Section Header Typography */
.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header .text-muted {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

[data-theme="light"] .section-header .text-muted {
    color: #555 !important;
}

.hero-title-new {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

[dir="rtl"] .hero-title-new {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.35;
    letter-spacing: 0;
}

.hero-content {
    background: radial-gradient(circle at center, rgba(3, 3, 4, 0.2) 0%, rgba(3, 3, 4, 0.1) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 30px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(220, 254, 17, 0.01);
    max-width: 550px;
    margin-top: -40px;
    /* Slight lift for better positioning */
}

@media (max-width: 768px) {
    .hero-content {
        padding: 30px 20px;
        border-radius: 20px;
        background: radial-gradient(circle at center, rgba(3, 3, 4, 0.4) 0%, rgba(3, 3, 4, 0.3) 100%);
        max-width: 90%;
    }
}

[data-theme="light"] .hero-content {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(0, 0, 0, 0.1);
}

.hero-title-main {
    background: linear-gradient(180deg, #dcfc11 0%, #a8d600 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.creative-serif {
    background: linear-gradient(135deg, #fff 0%, #f4f4f5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

[dir="rtl"] .creative-serif {
    font-style: normal;
}

[dir="rtl"],
[dir="rtl"] * {
    letter-spacing: 0 !important;
    word-spacing: normal !important;
}

/* Bento Grid Finishing */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.bento-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
}

.bento-icon-lg {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 24px;
    opacity: 0.8;
}

.bento-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* Timeline/Agenda Enhancements */
.timeline-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.05);
}

/* Footer Premium Design */
.main-footer {
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-main);
    padding: 100px 0 40px;
}

[data-theme="light"] .main-footer {
    background: #f8f9fa;
    border-top-color: rgba(0, 0, 0, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 40px;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo img {
    height: 40px;
    margin-bottom: 24px;
}

[data-theme="light"] .footer-brand img {
    opacity: 1 !important;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.6;
}

[data-theme="light"] .footer-tagline {
    color: #4b5563;
}

.footer-nav-groups {
    display: flex;
    gap: 80px;
}

.footer-group h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

[data-theme="light"] .footer-group h4 {
    color: #111827;
}

.footer-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-group ul li {
    margin-bottom: 12px;
}

.footer-group ul li a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

[data-theme="light"] .footer-group ul li a {
    color: #6b7280;
}

.footer-group ul li a:hover {
    color: #b4dc02;
    padding-left: 8px;
}

[data-theme="light"] .footer-group ul li a:hover {
    color: var(--color-accent);
}

[dir="rtl"] .footer-group ul li a:hover {
    padding-left: 0;
    padding-right: 8px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

[data-theme="light"] .footer-socials a {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.footer-socials a:hover {
    background: #b4dc02;
    color: #000;
    border-color: #b4dc02;
    transform: translateY(-5px);
}

.footer-newsletter-premium {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 40px;
}

.newsletter-content h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 12px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.newsletter-form-premium {
    display: flex;
    gap: 16px;
    flex-grow: 1;
    max-width: 500px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 16px 24px !important;
    border-radius: 100px !important;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #b4dc02 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    outline: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

[data-theme="light"] .footer-bottom p {
    color: #9ca3af;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

[data-theme="light"] .footer-legal a {
    color: #9ca3af;
}

.footer-legal a:hover {
    color: #b4dc02;
}

[data-theme="light"] .footer-legal a:hover {
    color: var(--color-accent);
}

@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        margin: 0 auto;
    }

    .footer-nav-groups {
        justify-content: center;
        gap: 40px;
    }

    .footer-newsletter-premium {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center;
    }

    .newsletter-form-premium {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 24px;
        text-align: center;
    }
}

/* RTL Adjustments for Footer */
[dir="rtl"] .footer-top {
    text-align: right;
}

[dir="rtl"] .newsletter-content {
    text-align: right;
}

[dir="rtl"] .footer-group h4 {
    text-align: right;
}

[dir="rtl"] .footer-newsletter-premium {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    [dir="rtl"] .footer-newsletter-premium {
        flex-direction: column;
    }
}

/* Insight Section Premium Redesign */
.insight-section {
    padding: 160px 0;
    background: url('../assets/images/real_estate_bg.png') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.insight-glass-card {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 100px 80px;
    border-radius: 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.6),
        inset 0 0 40px rgba(255, 255, 255, 0.02);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

@media (max-width: 768px) {
    .insight-glass-card {
        padding: 40px 24px;
        border-radius: 32px;
        margin: 0 16px;
    }
}

.insight-glass-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.04);
}

.badge-glow {
    background: var(--color-accent);
    color: #000;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
    display: inline-block;
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.insight-title {
    color: #ffffff !important;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    margin-bottom: 32px;
    line-height: 1.05;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.insight-p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    /* Much brighter for readability */
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 48px;
    font-weight: 400;
}

.insight-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #fff;
    border-left: 4px solid var(--color-accent);
    padding: 20px 0 20px 30px;
    margin: 40px auto 0;
    max-width: 650px;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 24px 24px 0;
}

[dir="rtl"] .insight-quote {
    border-left: none;
    border-right: 4px solid var(--color-accent);
    padding: 20px 30px 20px 0;
    text-align: right;
    border-radius: 24px 0 0 24px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--glass-border) !important;
}

/* Animations Refinement */
.reveal-up {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.reveal-left {
    transform: translateX(-40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.reveal-right {
    transform: translateX(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.reveal-scale {
    transform: scale(0.95);
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    transform: translate(0) scale(1);
    opacity: 1;
}

/* Expert Spotlight Premium Styles */
.expert-spotlight {
    position: relative;
    max-width: 500px;
    margin: 40px auto;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Video Player Styling */
.event-video-section {
    background: linear-gradient(to bottom, var(--color-bg-main), var(--color-bg-surface));
    position: relative;
}

.event-video-section .section-header {
    margin-bottom: 50px;
}

.video-container-centered {
    max-width: 900px;
    margin: 0 auto;
}

.video-player-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.video-frame {
    border: 8px solid #b4dc02;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(180, 220, 2, 0.15);
    position: relative;
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.video-info-card {
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: rgba(3, 3, 4, 0.9) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(180, 220, 2, 0.3);
    padding: 20px 28px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
    min-width: 200px;
}

.video-info-card h4 {
    margin: 0 !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    letter-spacing: -0.01em !important;
    text-align: left !important;
}

[dir="rtl"] .video-info-card {
    right: auto;
    left: -20px;
}

[dir="rtl"] .video-info-card h4 {
    text-align: right !important;
}

@media (max-width: 768px) {
    .video-info-card {
        right: 10px;
        bottom: -20px;
        padding: 14px 18px;
        min-width: 160px;
    }

    [dir="rtl"] .video-info-card {
        right: auto;
        left: 10px;
    }

    .video-frame {
        border-width: 5px;
        border-radius: 16px;
    }
}

.expert-frame {
    border: 12px solid #b4dc02 !important;
    border-radius: 40px !important;
    overflow: hidden !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(180, 220, 2, 0.2) !important;
    position: relative;
    background: #000;
}

.expert-frame img {
    display: block;
    width: 100%;
    opacity: 0.95;
    transition: all 0.5s ease;
}

.expert-spotlight:hover .expert-frame img {
    opacity: 1;
    transform: scale(1.02);
}

.expert-info-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(3, 3, 4, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 32px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    z-index: 2;
    min-width: 240px;
}

.featured-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #b4dc02;
    margin-bottom: 6px;
}

.expert-badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(180, 220, 2, 0.15);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    border: 1px solid rgba(180, 220, 2, 0.3);
}

.expert-badge-mini i {
    color: #b4dc02;
    font-size: 0.8rem;
}

.expert-info-card h4 {
    margin: 0 !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    letter-spacing: -0.01em !important;
    text-align: left !important;
}

[dir="rtl"] .expert-info-card h4 {
    text-align: right !important;
}

[dir="rtl"] .expert-info-card {
    right: auto;
    left: -30px;
}

@media (max-width: 768px) {
    .expert-info-card {
        right: 10px;
        bottom: -20px;
        padding: 16px 20px;
        min-width: 200px;
    }

    [dir="rtl"] .expert-info-card {
        right: auto;
        left: 10px;
    }
}

/* Expert Bio Styling */
.expert-bio {
    font-size: 1.35rem;
    line-height: 1.9;
    color: var(--color-text-main);
    margin-top: 32px;
    max-width: 550px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.video-text-content .section-header {
    text-align: left;
}

.video-text-content .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

[dir="rtl"] .video-text-content .section-header {
    text-align: right;
}

[dir="rtl"] .expert-bio {
    text-align: right;
}

@media (max-width: 768px) {
    .expert-bio {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .video-text-content .section-header h2 {
        font-size: 1.75rem;
    }
}

/* Collaboration Section Premium Redesign */
.collaboration-bg {
    background: linear-gradient(to bottom, #000 0%, transparent 20%, transparent 80%, #000 100%), url('../assets/images/hero-bg.png') center/cover no-repeat fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.collaboration-bg .collaboration-badge {
    background: rgba(180, 220, 2, 0.1);
    color: #b4dc02;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(180, 220, 2, 0.2);
    margin-bottom: 30px;
    display: inline-block;
}

.glow-line-separator {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b4dc02, transparent);
    margin: 0 auto 40px;
    box-shadow: 0 0 15px rgba(180, 220, 2, 0.6);
}

.collab-cards {
    display: flex;
    gap: 32px;
    margin: 60px auto;
    max-width: 1100px;
}

.collab-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 40px !important;
}

.collab-logo {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.collab-card:hover .collab-logo {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
}

.collab-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

.collab-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    max-width: 280px;
}

.strategy-banner {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(180, 220, 2, 0.3);
    border-radius: 40px;
    padding: 50px 40px;
    text-align: center;
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    backdrop-filter: blur(10px);
}

.strategy-banner h3 {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.strategy-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .collab-cards {
        flex-direction: column;
    }

    .strategy-banner h3 {
        font-size: 1.5rem;
    }
}

[dir="rtl"] .strategy-banner {
    text-align: center;
}

[dir="rtl"] .strategy-banner p {
    margin: 0 auto;
}

/* Testimonials Premium Redesign */
.testimonials-grid-new {
    display: flex;
    gap: 32px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card-premium {
    flex: 1;
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px 50px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.2, 1);
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    border-color: #b4dc02;
    background: rgba(255, 255, 255, 0.04) !important;
}

.quote-icon-bg {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 3.5rem;
    color: rgba(180, 220, 2, 0.08);
    pointer-events: none;
}

.testimonial-quote-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-author-flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.author-details {
    text-align: right;
}

.author-name-new {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.author-role-new {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.author-rating-new {
    color: #b4dc02;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.author-avatar-new {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b4dc02, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .testimonials-grid-new {
        flex-direction: column;
        padding: 0 20px;
    }

    .testimonial-card-premium {
        padding: 40px 30px;
    }
}

/* White Contrast Section */
.section-white-contrast {
    background: #fdfdfd;
    position: relative;
    z-index: 1;
}

.section-white-contrast .text-muted {
    color: #666 !important;
}

.section-white-contrast .testimonial-card-premium {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.section-white-contrast .testimonial-quote-text {
    color: #1a1a1a;
}

.section-white-contrast .author-name-new {
    color: #000;
}

.section-white-contrast .author-role-new {
    color: #888;
}

.section-white-contrast .glow-line-separator {
    background: linear-gradient(90deg, transparent, #b4dc02, transparent);
    box-shadow: 0 0 10px rgba(180, 220, 2, 0.4);
}

/* RTL Adjustments for Testimonials */
[dir="rtl"] .quote-icon-bg {
    left: auto;
    right: 40px;
}

[dir="rtl"] .testimonial-author-flex {
    flex-direction: row;
    justify-content: flex-start;
}

[dir="rtl"] .author-details {
    text-align: right;
    margin-right: 0;
    margin-left: 0;
}

/* =========================================
   REGISTRATION FORM PREMIUM REDESIGN
   ========================================= */
.registration-container {
    max-width: 650px;
    margin: 80px auto;
    position: relative;
    z-index: 10;
}

.registration-card-premium {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 60px 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.registration-card-premium::before {
    display: none;
}

.registration-header-premium {
    text-align: center;
    margin-bottom: 48px;
}

.registration-header-premium h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.registration-header-premium .text-muted {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 450px;
    margin: 0 auto;
}

.registration-fomo-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(220, 254, 17, 0.08);
    border: 1px solid rgba(220, 254, 17, 0.2);
    padding: 10px 24px;
    border-radius: 100px;
    margin-top: 24px;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(220, 254, 17, 0.1);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 254, 17, 0.4);
    }

    70% {
        box-shadow: 0 0 20px 10px rgba(220, 254, 17, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 254, 17, 0);
    }
}

.form-premium {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group-premium {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label-premium {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 12px;
    letter-spacing: 0.02em;
}

[dir="rtl"] .form-label-premium {
    margin-left: 0;
    margin-right: 12px;
}

.input-wrapper-premium {
    position: relative;
    transition: transform 0.3s ease;
}

.input-wrapper-premium i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    transition: all 0.3s ease;
}

[dir="rtl"] .input-wrapper-premium i {
    left: auto;
    right: 20px;
}

.form-input-premium {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 20px 18px 50px;
    border-radius: 18px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[dir="rtl"] .form-input-premium {
    padding: 18px 50px 18px 20px;
}

.form-input-premium:focus {
    outline: none;
    background: rgba(220, 254, 17, 0.02);
    border-color: var(--color-accent);
    box-shadow: 0 0 25px rgba(220, 254, 17, 0.1);
    transform: translateY(-2px);
}

.form-input-premium:focus+i {
    color: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
}

.form-input-premium::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.error-message {
    font-size: 0.8rem;
    color: #ff4b4b;
    margin-top: 4px;
    margin-left: 12px;
    transition: all 0.3s ease;
}

[dir="rtl"] .error-message {
    margin-left: 0;
    margin-right: 12px;
}

.btn-submit-premium {
    margin-top: 16px;
    padding: 24px !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.05em !important;
    background: linear-gradient(135deg, var(--color-accent) 0%, #a8d600 100%) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(220, 254, 17, 0.25) !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800 !important;
}

.btn-submit-premium:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 20px 45px rgba(220, 254, 17, 0.4) !important;
}

/* Light Mode Overrides */
[data-theme="light"] .registration-card-premium {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .registration-header-premium h2 {
    background: linear-gradient(180deg, #111 0%, #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="light"] .form-label-premium {
    color: #333;
}

[data-theme="light"] .form-input-premium {
    background: #f9fafb;
    border-color: rgba(0, 0, 0, 0.1);
    color: #111;
}

[data-theme="light"] .form-input-premium::placeholder {
    color: #999;
}

[data-theme="light"] .input-wrapper-premium i {
    color: #999;
}

.form-select-premium {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 50px 18px 20px;
    border-radius: 18px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[dir="rtl"] .form-select-premium {
    padding: 18px 20px 18px 50px;
}

.form-select-premium:focus {
    outline: none;
    background: rgba(220, 254, 17, 0.02);
    border-color: var(--color-accent);
    box-shadow: 0 0 25px rgba(220, 254, 17, 0.1);
}

.form-select-premium option {
    background: #0a0a0b;
    color: #fff;
}

.form-textarea-premium {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 20px;
    border-radius: 18px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    resize: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-textarea-premium:focus {
    outline: none;
    background: rgba(220, 254, 17, 0.02);
    border-color: var(--color-accent);
    box-shadow: 0 0 25px rgba(220, 254, 17, 0.1);
}

.select-icon-premium {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    transition: all 0.3s ease;
}

[dir="rtl"] .select-icon-premium {
    right: auto;
    left: 20px;
}

[data-theme="light"] .form-select-premium,
[data-theme="light"] .form-textarea-premium {
    background: #f9fafb;
    border-color: rgba(0, 0, 0, 0.1);
    color: #111;
}

[data-theme="light"] .form-select-premium option {
    background: #fff;
    color: #111;
}

[data-theme="light"] .select-icon-premium {
    color: #999;
}

/* Response for Mobile */
@media (max-width: 768px) {
    .registration-card-premium {
        padding: 40px 24px;
        border-radius: 30px;
    }

    .registration-container {
        margin: 40px auto;
    }

    .registration-header-premium h2 {
        font-size: 1.75rem;
    }
}

/* Newsletter Premium Integration */
.newsletter-form-premium {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

@media (max-width: 768px) {
    .newsletter-form-premium {
        flex-direction: column;
        align-items: stretch;
    }
}

/* =========================================
   ACTION MARQUEE (Elegant Minimalist)
   ========================================= */
.marquee-group-container {
    position: relative;
    padding: 120px 0;
    margin: 80px 0;
    overflow: hidden;
    width: 100%;
    min-height: 280px;
    background: var(--color-bg-main);
}

/* Clear, simpler background */
.marquee-grid-overlay,
.marquee-group-container::before {
    display: none;
    /* Removed for elegance */
}

.action-marquee-section {
    width: 120vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Primary Tape: Clean & Bold */
.primary-tape {
    background: var(--color-accent);
    padding: 28px 0;
    transform: translateX(-50%) rotate(-1.5deg);
    z-index: 20;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    top: 50px;
}

.primary-tape .marquee-logo {
    color: #000 !important;
    font-weight: 800;
}

.primary-tape i {
    color: #000;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Stealth Tape: Understated Luxury */
.stealth-tape {
    background: #08080a;
    padding: 26px 0;
    transform: translateX(-50%) rotate(1.5deg);
    z-index: 10;
    border-top: 1px solid rgba(220, 252, 17, 0.05);
    border-bottom: 1px solid rgba(220, 252, 17, 0.05);
    top: 90px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stealth-tape .marquee-logo {
    color: #fff !important;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.stealth-tape i {
    color: var(--color-accent) !important;
    opacity: 0.7;
    animation: none;
    /* Static for elegance */
}

.stealth-tape .marquee-dot {
    background: rgba(220, 252, 17, 0.3);
}

/* Removed wireframe tape logic for simplicity */
.wireframe-tape {
    display: none;
}

.action-marquee-content {
    display: flex;
    align-items: center;
    animation: scrollAction 25s linear infinite;
    will-change: transform;
    gap: 0;
}

.marquee-reverse .action-marquee-content {
    animation-direction: reverse;
    animation-duration: 30s;
}

.action-marquee-content span {
    font-size: 1.6rem;
    text-transform: uppercase;
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

/* Removed Glitch and Complex Animations */
.glitch-text::before,
.glitch-text::after,
.primary-tape::after {
    display: none !important;
}

@keyframes scrollAction {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

[dir="rtl"] .primary-tape {
    transform: translateX(-50%) rotate(1.5deg);
}

[dir="rtl"] .stealth-tape {
    transform: translateX(-50%) rotate(-1.5deg);
}

[dir="rtl"] .action-marquee-content {
    animation-direction: reverse;
}

@keyframes scrollAction {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes tapeSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

[data-theme="light"] .action-marquee-section {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* =========================================
   FEATURE JAMS (CARDS)
   ========================================= */
.feature-jams-section {
    position: relative;
    z-index: 100;
    margin-top: -100px;
    padding-bottom: 60px;
}

.jams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.jam-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 50px 40px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

[dir="rtl"] .jam-card {
    text-align: right;
}

.jam-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-accent);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.jam-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(220, 254, 17, 0.1) 0%, rgba(220, 254, 17, 0.02) 100%);
    border: 1px solid rgba(220, 254, 17, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.jam-card:hover .jam-icon {
    background: var(--color-accent);
    color: #000;
    transform: scale(1.1) rotate(10deg);
}

.jam-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -0.02em;
}

.jam-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.jams-lengthening {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.scroll-pill-premium {
    width: 34px;
    height: 58px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
}

.scroll-pill-premium::before {
    content: '';
    width: 6px;
    height: 14px;
    background: var(--color-accent);
    border-radius: 100px;
    position: absolute;
    top: 10px;
    animation: scroll-pill-anim 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scroll-pill-anim {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(22px);
        opacity: 0;
    }
}

[data-theme="light"] .jam-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .jam-card h3 {
    color: #111;
}

[data-theme="light"] .jam-card p {
    color: #666;
}

[data-theme="light"] .scroll-pill-premium {
    border-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .jams-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-jams-section {
        margin-top: -60px;
    }
}

.jam-banner-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 30px 40px;
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    min-height: 100px;
    transition: all 0.5s ease;
}

.jam-banner-premium:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

[data-theme="light"] .jam-banner-premium {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

/* =========================================
   FAQ REFINEMENT (Premium & RTL)
   ========================================= */
.faq-item {
    padding: 0 !important;
    height: auto !important;
    margin-bottom: 25px;
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    border-radius: 20px !important;
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: var(--color-accent) !important;
    transform: translateY(-5px);
}

.faq-question {
    padding: 35px 40px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.faq-q-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.faq-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.8;
    background: rgba(220, 254, 17, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 !important;
}

.faq-question h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-text-main);
}

.faq-icon {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    padding: 0 40px !important;
    /* No vertical padding when closed */
    /* Indent answer relative to number */
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Large enough value */
    opacity: 1;
    padding: 0 40px 35px 110px !important;
    /* Vertical padding added when active */
}

[dir="rtl"] .faq-item.active .faq-answer {
    padding: 0 110px 35px 40px !important;
    text-align: right;
}

[data-theme="light"] .faq-item {
    background: rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .faq-question h4 {
    color: #111;
}

[data-theme="light"] .faq-answer {
    color: #555;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 25px 25px !important;
    }

    .faq-q-content {
        gap: 15px;
    }

    .faq-answer {
        padding: 0 25px 25px 85px !important;
    }

    [dir="rtl"] .faq-answer {
        padding: 0 85px 25px 25px !important;
    }
}

/* Video CTA Button */
.video-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.video-cta-btn {
    background-color: var(--color-accent);
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 60px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* Increased gap */
    box-shadow: 0 4px 15px rgba(180, 255, 0, 0.3);
}

.video-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(180, 255, 0, 0.5);
    background-color: #d4ff33;
}

/* RTL Support */
/* RTL Support */
[dir="rtl"] .video-cta-btn i {
    transform: rotate(180deg);
}

/* Enlarge Header Logo */
.logo img {
    height: 75px !important;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img {
        height: 60px !important;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #051937;
    /* Matches theme color */
    background: radial-gradient(circle at center, #0a2e5c 0%, #020b1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo-wrapper {
    position: relative;
    width: 150px;
    opacity: 0;
    animation: logoReveal 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.preloader-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(180, 255, 0, 0.2));
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Step 2 Form Enhancements */
.form-row-premium {
    display: flex;
    gap: 20px;
    margin-bottom: 5px;
}

.form-row-premium .form-group-premium {
    flex: 1;
}

.checkbox-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.checkbox-item-premium {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    transition: var(--transition-smooth);
    color: var(--color-text-main);
}

.checkbox-item-premium input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all 0.3s ease;
}

[data-theme="light"] .checkmark {
    background-color: #f3f4f6;
}

.checkbox-item-premium:hover input~.checkmark {
    border-color: var(--color-accent);
}

.checkbox-item-premium input:checked~.checkmark {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-item-premium input:checked~.checkmark:after {
    display: block;
}

.checkbox-item-premium .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-footer-trust {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 25px;
    line-height: 1.6;
}

/* Success Message Improvements */
.success-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(220, 254, 17, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--color-accent);
    font-size: 3.5rem;
    animation: successPulse 2s infinite ease-in-out;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 254, 17, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(220, 254, 17, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 254, 17, 0);
    }
}

.success-title-text {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--color-text-main), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-desc-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* RTL Adjustments */
[dir="rtl"] .checkbox-item-premium {
    padding-left: 0;
    padding-right: 35px;
}

[dir="rtl"] .checkmark {
    left: auto;
    right: 0;
}

/* Confirmation Modal */
.modal-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-premium.active {
    display: flex;
    opacity: 1;
}

.modal-content-premium {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-premium.active .modal-content-premium {
    transform: scale(1) translateY(0);
}

.modal-icon {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.modal-content-premium h3 {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-main);
    line-height: 1.4;
    font-weight: 700;
}

.modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.modal-buttons .btn-lime-rounded {
    background: var(--color-accent);
    color: var(--color-text-dark);
    box-shadow: 0 0 20px rgba(220, 254, 17, 0.4);
}

.modal-buttons .btn-outline-rounded {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.modal-buttons .btn-outline-rounded:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 480px) {
    .modal-buttons {
        flex-direction: column-reverse;
    }
}


@media (max-width: 600px) {
    .form-row-premium {
        flex-direction: column;
        gap: 0;
    }
}