/* Purple Theme*/
:root {
    --landing-primary: #6366f1;           /* indigo/purple primary */
    --landing-secondary: #a855f7;         /* magenta/purple secondary */
    --landing-primary-light: rgba(99, 102, 241, 0.12);   /* light purple tint */
    --landing-secondary-light: rgba(168, 85, 247, 0.12); /* light magenta tint */
    --landing-primary-shadow: rgba(99, 102, 241, 0.08);  /* purple shadow */
    --landing-primary-medium: rgba(99, 102, 241, 0.2);   /* medium purple */
    --landing-primary-hover: rgba(99, 102, 241, 0.3);    /* hover shadow */
    --landing-primary-hover-strong: rgba(99, 102, 241, 0.4); /* strong hover */
    --landing-gradient-bg: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%);
    --landing-gradient-text: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --landing-gradient-border: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.4) 30%, rgba(168, 85, 247, 0.5) 70%, transparent 100%);
    --landing-gradient-divider: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.4) 50%, transparent 100%);
    --landing-stats-bg: linear-gradient(135deg, #f8f9ff 0%, #f0f1ff 100%);
    --landing-section-decoration: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
}


/* Green Theme */
/*
:root {
    --landing-primary: #065F46;
    --landing-secondary: #022C22;
    --landing-primary-light: rgba(6, 95, 70, 0.12);
    --landing-secondary-light: rgba(2, 44, 34, 0.12);
    --landing-primary-shadow: rgba(6, 95, 70, 0.08);
    --landing-primary-medium: rgba(6, 95, 70, 0.2);
    --landing-primary-hover: rgba(6, 95, 70, 0.3);
    --landing-primary-hover-strong: rgba(6, 95, 70, 0.4);
    --landing-gradient-bg: linear-gradient(135deg, rgba(6, 95, 70, 0.12) 0%, rgba(0, 51, 33, 0.12) 100%);
    --landing-gradient-text: linear-gradient(135deg, #065F46 0%, #003321 100%);
    --landing-gradient-border: linear-gradient(90deg, transparent 0%, rgba(6, 95, 70, 0.4) 30%, rgba(0, 51, 33, 0.5) 70%, transparent 100%);
    --landing-gradient-divider: linear-gradient(90deg, transparent 0%, rgba(6, 95, 70, 0.2) 50%, transparent 100%);
    --landing-stats-bg: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    --landing-section-decoration: radial-gradient(circle, rgba(6, 95, 70, 0.08) 0%, transparent 70%);
}
*/

.landing-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    position: absolute;
    height: 100%; 
    overflow: hidden auto;
    padding: 0em 4em;
}

.landing-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem 8rem;
    padding: 1rem 2rem;
    min-height: 60vh;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.landing-section.landing-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Layout direction modifiers */
.landing-section.landing-rtl {
    flex-direction: row-reverse;
}

.landing-media {
    flex: 1;
    max-width: 55%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    transition: transform 0.6s ease-out, box-shadow 0.6s ease-out;
}

.landing-section.landing-visible .landing-media {
    transform: scale(1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.landing-media video,
.landing-media img {
    width: 100% !important;
    height: auto !important;
//    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.landing-content {
    flex: 1;
    max-width: 40%;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.landing-section.landing-rtl .landing-content {
    transform: translateX(40px);
}

.landing-section.landing-visible .landing-content {
    opacity: 1;
    transform: translateX(0);
}

.landing-tag {
    display: block;
    text-align: center;
    background: var(--landing-gradient-bg);
    color: var(--landing-primary);
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.2rem 0.6rem 1.2rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    position: relative;
    box-shadow: 0 2px 8px var(--landing-primary-shadow);
}

.landing-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--landing-gradient-border);
    border-radius: 2px;
}

.landing-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #1a1a2e 0%, #4a4a6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-text {
    font-size: 0.95em;
    color: #555;
    margin: 0 0 1.5rem 0;
    line-height: 1.8;
}

.landing-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--landing-gradient-text);
    color: white;
    font-size: 0.95em;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px var(--landing-primary-hover);
}
.landing-cta-next {
    margin-left: 5em;
}


.landing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--landing-primary-hover-strong);
}

.landing-cta-arrow {
    transition: transform 0.3s ease;
}

.landing-cta:hover .landing-cta-arrow {
    transform: translateX(4px);
}

/* Hero Section - First section gets special treatment */
.landing-section.landing-hero {
    min-height: 60vh;
    padding-top: 2rem;
}

/* Parallax background decorations */
.landing-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--landing-section-decoration);
    pointer-events: none;
    z-index: -1;
}

.landing-section.landing-ltr::after {
    right: -100px;
    top: 20%;
}

.landing-section.landing-rtl::after {
    left: -100px;
    bottom: 20%;
}

/* Divider between sections */
.landing-divider {
    height: 0.25rem;
    background: var(--landing-gradient-divider);
    margin: 0 10%;
}

/* Stats/Features highlight row */
.landing-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2vh 0vw;
    background: var(--landing-stats-bg);
    border-radius: 16px;
    margin: 2rem 5%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.landing-stats.landing-visible {
    opacity: 1;
    transform: translateY(0);
}

.landing-stat {
    text-align: center;
}

.landing-stat-number {
    font-size: 5vh;
    font-weight: 700;
    background: var(--landing-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.landing-stat-label {
    font-size: 2vh;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Final CTA Section */
.landing-final-cta {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    border-radius: 20px;
    margin: 3rem 5%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.landing-final-cta.landing-visible {
    opacity: 1;
    transform: translateY(0);
}

.landing-final-cta .landing-title {
    color: white;
    -webkit-text-fill-color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.landing-final-cta .landing-text {
    color: rgba(255, 255, 255, 0.8);
    max-width: 40vw;
    margin: 0 auto 2rem auto;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .landing-section {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .landing-media,
    .landing-content {
        max-width: 100%;
    }
    
    .landing-content {
        transform: translateY(30px) !important;
    }
    
    .landing-title {
        font-size: 1.8rem;
    }
    
    .landing-stats {
        flex-direction: column;
        gap: 2rem;
    }
}
