* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    transition: background 0.2s ease, color 0.2s ease;
    overflow-x: hidden;
    position: relative;
    background: #FFF8E7;
}

[dir="rtl"] body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 50%;
    transform: scale(0);
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    transform: scale(0);
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
}

body.dark-transition::before {
    animation: expandCircle 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

body.light-transition::after {
    animation: expandCircle 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes expandCircle {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    99% {
        transform: scale(50);
        opacity: 1;
    }

    100% {
        transform: scale(50);
        opacity: 0;
    }
}

body.dark-mode {
    background: #1a1a1a;
    color: #fff;
}

/* Intro Animation */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.3s ease 1.2s forwards;
}

.intro-content {
    perspective: 1000px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-lottie {
    width: 150px;
    height: 150px;
}

.intro-text {
    display: flex;
    gap: 0.2rem;
    position: relative;
    z-index: 1;
}

.letter {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(90deg, #25F4EE 0%, #FE2C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    opacity: 0;
    transform: translateZ(-500px) rotateY(180deg) scale(0);
    animation: letterExplode 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--i) * 0.1s);
    filter: drop-shadow(0 0 30px rgba(5, 150, 105, 0.8)) drop-shadow(0 0 30px rgba(13, 148, 136, 0.8)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    letter-spacing: 0.1rem;
}

@keyframes letterExplode {
    0% {
        opacity: 0;
        transform: translateZ(-500px) rotateY(180deg) scale(0);
        filter: blur(20px);
    }

    50% {
        opacity: 1;
        transform: translateZ(100px) rotateY(360deg) scale(1.3);
        filter: blur(0px);
    }

    70% {
        transform: translateZ(0px) rotateY(380deg) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateZ(0px) rotateY(360deg) scale(1);
        filter: blur(0px);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    gap: 10px;
}

.lang-toggle {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 0.4rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    position: relative;
}

.lang-toggle button {
    padding: 0.4rem 0.8rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    z-index: 1;
    color: #666;
}

.lang-toggle button.active {
    color: #fff;
}

.lang-slider {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    height: calc(100% - 0.8rem);
    width: calc(50% - 0.4rem);
    background: #333;
    border-radius: 25px;
    transition: transform 0.3s ease;
    box-shadow:
        0 0 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
}

.lang-toggle button:last-child.active~.lang-slider {
    transform: translateX(100%);
}

.theme-toggle {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 0.4rem 0.6rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle button {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle button:hover {
    transform: scale(1.1);
}

.theme-toggle button:active {
    transform: scale(0.95);
}

body.dark-mode .header-content {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    transition: none;
}

body.dark-mode .sections-slider {
    background: #333;
    transition: none;
}

body.dark-mode .slider-background {
    background: #fff;
    transition: none;
}

body.dark-mode .section-item {
    color: #999;
    transition: none;
}

body.dark-mode .section-item.active {
    color: #000;
}

body.dark-mode .lang-toggle,
body.dark-mode .theme-toggle {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    transition: none;
}

body.dark-mode .lang-slider {
    background: #fff;
    transition: none;
}

body.dark-mode .lang-toggle button {
    color: #999;
    transition: none;
}

body.dark-mode .lang-toggle button.active {
    color: #000;
}

body.dark-mode .section {
    background: #1a1a1a !important;
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease;
}

body.dark-mode .section:nth-child(even) {
    background: #222 !important;
}

body.dark-mode .section h1 {
    color: #fff !important;
    transition: color 0.2s ease;
}

body.dark-mode .service-card {
    background: #2a2a2a;
    border-color: #444;
}

body.dark-mode .service-card h3 {
    color: #fff;
}

body.dark-mode .service-card p {
    color: #ccc;
}

body.dark-mode .services-subtitle {
    color: #999;
}

body.dark-mode .slide-content p {
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
}

body.dark-mode .contact-text h2 {
    color: #fff;
}

body.dark-mode .contact-text p {
    color: #ccc;
}

body.dark-mode .info-value {
    color: #fff;
}

body.dark-mode .contact-form {
    background: rgba(42, 42, 42, 0.5);
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: #2a2a2a;
    border-color: #444;
    color: #fff;
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: #999;
}

body.dark-mode footer {
    background: #000;
    transition: background 0.2s ease;
}

.header-content {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
    transition: none;
}

.sections-slider {
    position: relative;
    display: flex;
    gap: 0.5rem;
    background: #e8e8e8;
    padding: 0.3rem;
    border-radius: 30px;
    transition: none;
}

.slider-background {
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    height: calc(100% - 0.6rem);
    background: #333;
    border-radius: 25px;
    transition: all 0.3s ease;
    z-index: 0;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.section-item {
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
    white-space: nowrap;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.header-content {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
    transition: background 0.4s ease 1s;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #25F4EE;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(37, 244, 238, 0.3);
    overflow: visible;
    flex-shrink: 0;
    background: rgba(26, 26, 26, 0.9);
    padding: 8px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(37, 244, 238, 0.4));
}

.sections-slider {
    position: relative;
    display: flex;
    gap: 0.5rem;
    background: #e8e8e8;
    padding: 0.3rem;
    border-radius: 30px;
    transition: background 0.4s ease 1s;
}

.slider-background {
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    height: calc(100% - 0.6rem);
    background: #333;
    border-radius: 25px;
    transition: all 0.3s ease, background 0.4s ease 1s;
    z-index: 0;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.section-item {
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
    white-space: nowrap;
}

.section-item.active {
    color: #fff;
}

/* Main Content */
main {
    width: 100%;
    margin-top: 100px;
}

.section {
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

#services {
    overflow: visible !important;
}

.section:nth-child(odd) {
    background: #ffffff;
}

.section:nth-child(even) {
    background: #f9f9f9;
}

/* ===== HOME SECTION ===== */
.home-section {
    flex-direction: column;
    padding: 0 !important;
    background: transparent !important;
    min-height: auto !important;
    overflow: hidden;
    position: relative;
}

/* Hero */
.home-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 2rem 3rem;
}

.home-hero-text {
    flex: 1;
    max-width: 650px;
}

.home-badge {
    display: inline-block;
    padding: 0.5rem 1.6rem;
    border-radius: 30px;
    border: 2px solid #222;
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
}

.home-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.home-title-highlight {
    background: linear-gradient(90deg, #25F4EE 0%, #FE2C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 2rem;
    max-width: 560px;
}

.home-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.home-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #25F4EE 0%, #FE2C55 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 50px;
}

.home-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.home-cta-btn:hover::before {
    opacity: 1;
}

.home-cta-btn span,
.home-cta-btn {
    position: relative;
    z-index: 1;
}

/* Hero Lottie */
.home-hero-lottie {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-lottie-animation {
    width: 320px;
    height: 320px;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.12));
    animation: floatHero 4s ease-in-out infinite;
}

@keyframes floatHero {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* Feature Cards */
.home-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #25F4EE 0%, #FE2C55 100%);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.feature-card:hover::after {
    width: 60%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.92);
}

/* Card animation on scroll */
.feature-card--animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.feature-card--animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card--animate:nth-child(1) {
    transition-delay: 0s;
}

.feature-card--animate:nth-child(2) {
    transition-delay: 0.12s;
}

.feature-card--animate:nth-child(3) {
    transition-delay: 0.24s;
}

.feature-card--animate:nth-child(4) {
    transition-delay: 0.36s;
}

.feature-card-lottie {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.feature-card-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-card-icon svg {
    transform: scale(1.12) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.home-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 2rem 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #25F4EE 0%, #FE2C55 100%);
    border-radius: 2px;
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: #1a1a1a;
    display: inline;
    font-family: 'Orbitron', sans-serif;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 900;
    color: #FE2C55;
    display: inline;
    vertical-align: super;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.95rem;
    color: #777;
    margin-top: 0.3rem;
    font-weight: 600;
}

/* Decorative Lottie */
.home-decorative-lottie {
    width: 160px;
    height: 80px;
    margin: 0 auto 2rem;
    opacity: 0.7;
}

/* ===== DARK MODE — HOME ===== */
body.dark-mode .home-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #222 40%, #1a1a1a 100%) !important;
}

body.dark-mode .home-badge {
    border-color: #666;
    color: #ddd;
    background: rgba(50, 50, 50, 0.6);
}

body.dark-mode .home-title {
    color: #f0f0f0;
}

body.dark-mode .home-subtitle {
    color: #aaa;
}

body.dark-mode .home-cta-btn {
    background: #fff;
    color: #1a1a1a;
}

body.dark-mode .feature-card {
    background: rgba(42, 42, 42, 0.75);
    border-color: rgba(80, 80, 80, 0.5);
}

body.dark-mode .feature-card:hover {
    background: rgba(50, 50, 50, 0.92);
}

body.dark-mode .feature-card h3 {
    color: #f0f0f0;
}

body.dark-mode .feature-card p {
    color: #aaa;
}

body.dark-mode .stat-number {
    color: #f0f0f0;
}

body.dark-mode .stat-label {
    color: #999;
}


/* Services Styles */
.services-container {
    width: 100%;
    max-width: 1200px;
    padding: 4rem 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Services Styles */
.services-container {
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

.services-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid #333;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #333;
}

body.dark-mode .services-badge {
    border-color: #aaa;
    color: #ddd;
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
}

body.dark-mode .services-header h2 {
    color: #fff;
}

.services-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

body.dark-mode .services-subtitle {
    color: #aaa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: linear-gradient(160deg, #FFF5D4 0%, #FFEEBB 50%, #FFF0CC 100%);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(218, 165, 32, 0.15);
    position: relative;
    overflow: hidden;
}

body.dark-mode .service-card {
    background: linear-gradient(160deg, #2a2518 0%, #1e1e1a 100%);
    border-color: #444;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
}

.service-emoji {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #000;
    font-weight: 800;
}

body.dark-mode .service-card h3 {
    color: #fff;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

body.dark-mode .service-card p {
    color: #aaa;
}

.service-link {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 2px solid #333;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

body.dark-mode .service-link {
    border-color: #aaa;
    color: #ddd;
}

.service-link:hover {
    background: linear-gradient(90deg, #25F4EE, #FE2C55);
    color: #fff;
    border-color: transparent;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 2rem;
    }
}

/* ===== CTA BANNER + MARQUEE ===== */
.cta-banner-section {
    padding: 5rem 2rem 3rem;
    overflow: hidden;
    position: relative;
}

.cta-banner {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, #25F4EE 0%, #00D4CC 50%, #25F4EE 100%);
    border-radius: 35px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(37, 244, 238, 0.3);
}

body.dark-mode .cta-banner {
    background: linear-gradient(135deg, #1a4d4a 0%, #0f3a38 50%, #1a4d4a 100%);
    box-shadow: 0 20px 60px rgba(37, 244, 238, 0.2);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-banner h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-banner p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Marquee */
.marquee-wrapper {
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
    margin: 0;
    width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #1a1a1a 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #1a1a1a 0%, transparent 100%);
}

body.dark-mode .marquee-wrapper::before {
    background: linear-gradient(90deg, #1a1a1a 0%, transparent 100%);
}

body.dark-mode .marquee-wrapper::after {
    background: linear-gradient(270deg, #1a1a1a 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 1.2rem;
    animation: marqueeScroll 50s linear infinite;
    width: max-content;
}

.marquee-reverse .marquee-track {
    animation: marqueeScrollReverse 55s linear infinite;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes marqueeScrollReverse {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}
        transform: translateX(0);
    }
}

/* MARQUEE ITEMS - FIXED */
.marquee-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: none !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 12px !important;
    -webkit-border-radius: 12px !important;
    -moz-border-radius: 12px !important;
    overflow: hidden !important;
    font-size: 0.9rem !important;
    color: #2a2a2a !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

.marquee-item:hover {
    transform: translateY(-1px) !important;
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important;
}

body.dark-mode .marquee-item {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    color: #2a2a2a !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

body.dark-mode .marquee-item:hover {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important;
}

.marquee-item svg {
    flex-shrink: 0;
    width: 18px !important;
    height: 18px !important;
}

.marquee-item span {
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
    padding: 5rem 2rem;
}

.hiw-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hiw-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid #333;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #333;
}

body.dark-mode .hiw-badge {
    border-color: #aaa;
    color: #ddd;
}

.hiw-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 3rem;
}

body.dark-mode .hiw-title {
    color: #fff;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hiw-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

body.dark-mode .hiw-card {
    background: #2a2a2a;
    border-color: #444;
}

.hiw-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hiw-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 244, 238, 0.3);
}

.hiw-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000;
}

body.dark-mode .hiw-card h3 {
    color: #fff;
}

.hiw-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

body.dark-mode .hiw-card p {
    color: #aaa;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 2rem;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

/* Help Card */
.faq-help-card {
    background: #1a1a2e;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
    position: sticky;
    top: 100px;
}

.faq-help-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.faq-help-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.faq-help-card p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.faq-help-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.faq-help-btn:hover {
    background: #fff;
    color: #1a1a2e;
}

/* FAQ List */
.faq-header {
    margin-bottom: 2rem;
}

.faq-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 2px solid #333;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: #333;
}

body.dark-mode .faq-badge {
    border-color: #aaa;
    color: #ddd;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
}

body.dark-mode .faq-header h2 {
    color: #fff;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.dark-mode .faq-item {
    border-color: #444;
}

.faq-item.active {
    border-color: #25F4EE;
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: #f9fafb;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    font-family: inherit;
}

body.dark-mode .faq-question {
    background: #2a2a2a;
    color: #ddd;
}

.faq-question::after {
    content: '⊕';
    font-size: 1.3rem;
    color: #999;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '⊖';
    color: #25F4EE;
}

.faq-item.active .faq-question {
    background: linear-gradient(90deg, #25F4EE, #FE2C55);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.2rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

body.dark-mode .faq-answer p {
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 2rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }

    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hiw-title {
        font-size: 2rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-help-card {
        position: static;
    }

    .faq-header h2 {
        font-size: 2rem;
    }
}

/* Plans Styles */
.plans-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.plans-container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #25F4EE 0%, #FE2C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.plan-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.dark-mode .plan-card {
    background: #2a2a2a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body.dark-mode .plan-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.plan-card.featured {
    border: 3px solid #25F4EE;
    transform: scale(1.05);
}

body.dark-mode .plan-card.featured {
    border-color: #25F4EE;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #25F4EE 0%, #00D4CC 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 244, 238, 0.4);
}

.gift-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

html[dir="rtl"] .badge {
    right: auto;
    left: 20px;
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 800;
}

body.dark-mode .plan-card h3 {
    color: #fff;
}

.price {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #25F4EE;
}

body.dark-mode .price {
    color: #25F4EE;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

body.dark-mode .price span {
    color: #aaa;
}

.price-alt {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

body.dark-mode .price-alt {
    color: #aaa;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

html[dir="rtl"] .plan-card ul {
    text-align: right;
}

.plan-card li {
    padding: 0.9rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
}

body.dark-mode .plan-card li {
    border-bottom-color: #3a3a3a;
    color: #ccc;
}

.plan-card li:before {
    content: "✓ ";
    color: #25F4EE;
    font-weight: bold;
    margin-right: 0.5rem;
}

html[dir="rtl"] .plan-card li:before {
    margin-right: 0;
    margin-left: 0.5rem;
}

.plan-card li.gift-item {
    color: #FF8C00;
    font-weight: 700;
    border-bottom: 2px solid #FFD700;
    font-size: 1rem;
}

body.dark-mode .plan-card li.gift-item {
    color: #FFD700;
}

.plan-card li.gift-item:before {
    content: "";
    margin-right: 0;
}

.plan-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25F4EE 0%, #00D4CC 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 244, 238, 0.3);
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 244, 238, 0.5);
    background: linear-gradient(135deg, #00D4CC 0%, #25F4EE 100%);
}

/* Contact Styles */
.contact-container {
    width: 100%;
    max-width: 1200px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
}

.contact-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #25F4EE 0%, #FE2C55 100%) 1;
    padding-left: 1.5rem;
}

.info-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.contact-form {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #25F4EE;
    box-shadow: 0 0 0 3px rgba(37, 244, 238, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(90deg, #25F4EE 0%, #FE2C55 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 244, 238, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-text h2 {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Footer */
.site-footer {
    position: relative;
    margin-top: 0;
    padding: 2rem;
    background: transparent;
}

body.dark-mode .site-footer {
    background: transparent;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px !important;
        height: 60px !important;
        bottom: 20px !important;
        right: 20px !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 9999 !important;
    }
    
    html[dir="rtl"] .whatsapp-float {
        right: auto !important;
        left: 20px !important;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

.footer-main {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 4rem 3rem 2rem;
    border-radius: 30px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body.dark-mode .footer-main {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
}

.footer-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* Brand Column */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #25F4EE;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #25F4EE 0%, #00D4CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: #b0b8c4;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Newsletter */
.footer-subscribe h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.subscribe-form {
    display: flex;
    background: rgba(37, 244, 238, 0.08);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(37, 244, 238, 0.2);
    transition: border-color 0.3s ease;
}

.subscribe-form:focus-within {
    border-color: #25F4EE;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    font-family: inherit;
}

.subscribe-form input::placeholder {
    color: #7a8394;
}

.subscribe-btn {
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #25F4EE 0%, #00D4CC 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #00D4CC 0%, #25F4EE 100%);
    transform: scale(1.05);
}

.subscribe-btn svg {
    width: 20px;
    height: 20px;
}

/* Link Columns */
.footer-links-col h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #25F4EE, #00D4CC);
    border-radius: 3px;
}

[dir="rtl"] .footer-links-col h4::after {
    left: auto;
    right: 0;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col li {
    margin-bottom: 0.75rem;
}

.footer-links-col a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links-col a:hover {
    color: #25F4EE;
    padding-left: 6px;
}

[dir="rtl"] .footer-links-col a:hover {
    padding-left: 0;
    padding-right: 6px;
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    padding: 1.5rem 3rem;
    border-radius: 30px;
    max-width: 1200px;
    margin: 1.5rem auto 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body.dark-mode .footer-bottom {
    background: linear-gradient(135deg, #050510 0%, #0f0f1e 100%);
}

.footer-bottom-inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #7a8394;
    font-size: 0.88rem;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(37, 244, 238, 0.1);
    border: 1px solid rgba(37, 244, 238, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25F4EE;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #25F4EE 0%, #00D4CC 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(37, 244, 238, 0.4);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Back to Top */
.back-to-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #25F4EE;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(37, 244, 238, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: rgba(37, 244, 238, 0.1);
    border-color: #25F4EE;
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-main {
        border-radius: 20px;
        padding: 3rem 2rem 1.5rem;
    }
    
    .footer-bottom {
        border-radius: 20px;
        padding: 1.5rem 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .site-footer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        border-radius: 16px;
        padding: 2.5rem 1.5rem 1rem;
    }
    
    .footer-bottom {
        border-radius: 16px;
        padding: 1.25rem 1.5rem;
    }
}

/* RTL Support */
[dir="rtl"] .language-switcher {
    right: auto;
    left: 20px;
}

[dir="rtl"] .header-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .sections-slider {
    flex-direction: row-reverse;
}

[dir="rtl"] .lang-toggle {
    flex-direction: row-reverse;
}

[dir="rtl"] .lang-slider {
    left: auto;
    right: 0.4rem;
}

[dir="rtl"] .lang-toggle button:last-child.active~.lang-slider {
    transform: translateX(-100%);
}

/* Responsive */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        gap: 5px;
        flex-direction: column;
    }

    .lang-toggle {
        padding: 0.3rem;
    }

    .lang-toggle button {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .theme-toggle {
        padding: 0.3rem 0.5rem;
    }

    .theme-toggle button {
        font-size: 1rem;
    }

    .header-content {
        padding: 0.5rem 0.8rem;
        gap: 0.8rem;
        max-width: 95%;
        flex-wrap: nowrap;
    }

    .logo-circle {
        width: 55px;
        height: 55px;
        border-width: 2px;
        padding: 6px;
    }

    .sections-slider {
        flex: 1;
        padding: 0.2rem;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .sections-slider::-webkit-scrollbar {
        display: none;
    }

    .section-item {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
        white-space: nowrap;
    }

    /* Home responsive */
    .home-hero {
        flex-direction: column;
        padding: 120px 1.5rem 2rem;
        gap: 2rem;
        text-align: center;
    }

    .home-hero-text {
        max-width: 100%;
    }

    .home-title {
        font-size: 2rem;
    }

    .home-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .home-hero-lottie {
        flex: 0 0 auto;
    }

    .hero-lottie-animation {
        width: 220px;
        height: 220px;
    }

    .home-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem 1.5rem 2rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .home-stats {
        gap: 2rem;
        padding: 1.5rem 1rem 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-item::after {
        right: -1rem;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 5px;
        right: 5px;
        gap: 5px;
    }

    .lang-toggle {
        padding: 0.25rem;
    }

    .lang-toggle button {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }

    .theme-toggle {
        padding: 0.25rem 0.4rem;
    }

    .theme-toggle button {
        font-size: 0.9rem;
    }

    .header-content {
        padding: 0.4rem 0.6rem;
        gap: 0.6rem;
    }

    .logo-circle {
        width: 48px;
        height: 48px;
        padding: 5px;
    }

    .section-item {
        font-size: 0.65rem;
        padding: 0.3rem 0.45rem;
    }

    .intro-content {
        flex-direction: column;
        gap: 1rem;
    }

    .letter {
        font-size: 2rem;
    }

    .loading-circle {
        width: 60px;
        height: 60px;
    }

    /* Home 480px */
    .home-hero {
        padding: 110px 1rem 1.5rem;
    }

    .home-title {
        font-size: 1.6rem;
    }

    .home-subtitle {
        font-size: 0.9rem;
    }

    .hero-lottie-animation {
        width: 180px;
        height: 180px;
    }

    .home-features {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .home-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}