/*
    VY SYSTEMS LTD - Neon Travel App Solutions
    Unique design with split-screen hero, morphing blobs, and geometric typography
    2026
*/

:root {
    --green-primary: #22c55e;
    --green-secondary: #16a34a;
    --green-dark: #15803d;
    --green-light: #4ade80;
    --green-accent: #10b981;
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --light-bg: #ffffff;
    --light-surface: #ffffff;
    --text-light: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #94a3b8;
    --text-muted-light: #64748b;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-green: 0 0 20px rgba(34, 197, 94, 0.5), 0 0 40px rgba(34, 197, 94, 0.3);
    --glow-green-light: 0 0 20px rgba(74, 222, 128, 0.4), 0 0 40px rgba(74, 222, 128, 0.2);
    --glow-green-dark: 0 0 20px rgba(16, 185, 129, 0.5), 0 0 40px rgba(16, 185, 129, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Fullscreen Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--green-primary);
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--green-primary);
    border-radius: 50%;
    transition: all var(--transition);
}

.menu-close:hover {
    box-shadow: var(--glow-green);
    transform: rotate(90deg);
}

.fullscreen-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.nav-link-large {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.menu-overlay.active .nav-link-large {
    animation: fadeInUp 0.6s forwards;
}

.menu-overlay.active .nav-link-large:nth-child(1) { animation-delay: 0.1s; }
.menu-overlay.active .nav-link-large:nth-child(2) { animation-delay: 0.2s; }
.menu-overlay.active .nav-link-large:nth-child(3) { animation-delay: 0.3s; }
.menu-overlay.active .nav-link-large:nth-child(4) { animation-delay: 0.4s; }
.menu-overlay.active .nav-link-large:nth-child(5) { animation-delay: 0.5s; }
.menu-overlay.active .nav-link-large:nth-child(6) { animation-delay: 0.6s; }
.menu-overlay.active .nav-link-large:nth-child(7) { animation-delay: 0.7s; }

.nav-link-large::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: var(--green-primary);
    transition: width var(--transition);
}

.nav-link-large:hover {
    color: var(--green-primary);
    text-shadow: var(--glow-green);
    transform: translateX(20px);
}

.nav-link-large:hover::before {
    width: 15px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 900;
    color: var(--green-primary);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all var(--transition);
    text-shadow: var(--glow-green);
}

.logo:hover {
    color: var(--green-light);
    text-shadow: var(--glow-green-light);
    transform: scale(1.05);
}

.menu-trigger {
    width: 50px;
    height: 50px;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    background: transparent;
    border: 2px solid var(--green-primary);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all var(--transition);
}

.menu-trigger:hover {
    box-shadow: var(--glow-green);
    transform: scale(1.1);
}

.menu-trigger span {
    width: 100%;
    height: 3px;
    background: var(--green-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-trigger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Split Screen */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: morph 20s infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--green-primary);
    top: -200px;
    left: -200px;
    animation-duration: 25s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: var(--green-light);
    bottom: -300px;
    right: -200px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--green-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
        transform: translate(30px, 50px) scale(1.05);
    }
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-left,
.hero-right {
    transition: all var(--transition);
}

.hero-left:hover {
    transform: scale(1.02);
}

.hero-right:hover {
    transform: scale(1.05);
}

.hero-parts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.part {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: assemblePart 0.8s forwards;
}

.part-1 { animation-delay: 0.1s; }
.part-2 { animation-delay: 0.3s; }
.part-3 { animation-delay: 0.5s; }
.part-4 { animation-delay: 0.7s; }

@keyframes assemblePart {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title .word {
    display: inline-block;
    margin-right: 0.5rem;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light), var(--green-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: wordGlow 3s infinite;
}

.hero-title .word:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-title .word:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes wordGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.5);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--green-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid;
    border-radius: 0;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--green-primary);
    color: var(--light-bg);
    border-color: var(--green-primary);
    box-shadow: var(--glow-green);
}

.cta-primary:hover {
    background: transparent;
    color: var(--green-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--green-light);
    border-color: var(--green-light);
}

.cta-secondary:hover {
    background: var(--green-light);
    color: var(--dark-bg);
    box-shadow: var(--glow-green-light);
    transform: translateY(-3px);
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 100%;
}

.visual-card {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 0;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card:hover {
    border-color: var(--green-primary);
    box-shadow: var(--glow-green);
    transform: translateY(-10px) scale(1.05);
}

.card-1 {
    grid-column: 1 / -1;
    min-height: 300px;
    padding: 0;
    overflow: hidden;
}

.card-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.card-1:hover img {
    transform: scale(1.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--green-primary);
    text-shadow: var(--glow-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

/* Light Section Styles */
section.light-section {
    background: var(--light-bg);
    color: var(--text-dark);
}

section.light-section .section-title {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section.light-section .section-subtitle {
    color: var(--text-muted-light);
}

section.light-section .feature-content h3,
section.light-section .feature-small h3,
section.light-section .service-card h3,
section.light-section .timeline-content h3,
section.light-section .contact-info-card h3 {
    color: var(--green-dark);
}

section.light-section .feature-content p,
section.light-section .feature-small p,
section.light-section .service-card p,
section.light-section .timeline-content p,
section.light-section .contact-info-card p,
section.light-section .review-text {
    color: var(--text-muted-light);
}

section.light-section .feature-large,
section.light-section .feature-small,
section.light-section .service-card,
section.light-section .timeline-content,
section.light-section .review-card,
section.light-section .contact-info-card {
    background: var(--light-surface);
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

section.light-section .form-group input,
section.light-section .form-group textarea {
    background: var(--light-surface);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--text-dark);
}

section.light-section .form-group label {
    color: var(--green-dark);
}

section.light-section .review-info h4 {
    color: var(--text-dark);
}

section.light-section .review-expanded p {
    color: var(--text-dark);
}

section.light-section .feature-link {
    color: var(--green-dark);
}

section.light-section .feature-link:hover {
    color: var(--green-primary);
}

section.light-section .contact-info-card a {
    color: var(--green-dark);
}

section.light-section .contact-info-card a:hover {
    color: var(--green-primary);
}

section.light-section .submit-btn {
    background: var(--green-dark);
    color: var(--light-surface);
    border-color: var(--green-dark);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

section.light-section .submit-btn:hover {
    background: transparent;
    color: var(--green-dark);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
}

section.light-section .cta-primary {
    background: var(--green-dark);
    color: var(--light-surface);
    border-color: var(--green-dark);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

section.light-section .cta-primary:hover {
    background: transparent;
    color: var(--green-dark);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
}

section.light-section .cta-secondary {
    background: transparent;
    color: var(--green-dark);
    border-color: var(--green-dark);
}

section.light-section .cta-secondary:hover {
    background: var(--green-dark);
    color: var(--light-surface);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

section.light-section .feature-large:hover,
section.light-section .feature-small:hover,
section.light-section .service-card:hover,
section.light-section .timeline-content:hover,
section.light-section .review-card:hover,
section.light-section .review-card.active,
section.light-section .contact-info-card:hover {
    border-color: var(--green-primary);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.2);
}

section.light-section .form-group input:focus,
section.light-section .form-group textarea:focus {
    border-color: var(--green-primary);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

/* Policy and Thanks Pages Styles */
.policy,
.thanks {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem clamp(1rem, 4vw, 3rem) 6rem;
    min-height: calc(100vh - 200px);
}

.policy.light-section,
.thanks.light-section {
    background: var(--light-bg);
    color: var(--text-dark);
}

.policy h1,
.thanks h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light), var(--green-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.policy.light-section h1,
.thanks.light-section h1 {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--green-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
}

.policy.light-section h2 {
    color: var(--green-dark);
    border-bottom-color: rgba(34, 197, 94, 0.3);
}

.policy p,
.thanks p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.policy.light-section p,
.thanks.light-section p {
    color: var(--text-muted-light);
}

.policy ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style: none;
}

.policy ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.policy.light-section ul li {
    color: var(--text-muted-light);
}

.policy ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-size: 1.2rem;
}

.policy.light-section ul li::before {
    color: var(--green-dark);
}

.policy a,
.thanks a {
    color: var(--green-primary);
    text-decoration: none;
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.policy.light-section a,
.thanks.light-section a {
    color: var(--green-dark);
}

.policy a:hover,
.thanks a:hover {
    color: var(--green-light);
    border-bottom-color: var(--green-light);
    text-shadow: var(--glow-green);
}

.policy.light-section a:hover,
.thanks.light-section a:hover {
    color: var(--green-primary);
    border-bottom-color: var(--green-primary);
}

.thanks {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thanks p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.thanks .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--green-primary);
    color: var(--green-primary);
    background: transparent;
    transition: all var(--transition);
    margin-top: 1rem;
}

.thanks .btn:hover {
    background: var(--green-primary);
    color: var(--light-bg);
    box-shadow: var(--glow-green);
    transform: translateY(-3px);
}

.thanks.light-section .btn {
    border-color: var(--green-dark);
    color: var(--green-dark);
}

.thanks.light-section .btn:hover {
    background: var(--green-dark);
    color: var(--light-surface);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

/* Navigation for Policy Pages */
#main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

#main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-primary);
    transition: width var(--transition);
}

#main-nav a:hover {
    color: var(--green-primary);
    text-shadow: var(--glow-green);
}

#main-nav a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: transparent;
    border: 2px solid var(--green-primary);
    border-radius: 8px;
    padding: 10px;
    transition: all var(--transition);
}

.burger:hover {
    box-shadow: var(--glow-green);
    transform: scale(1.1);
}

.burger span {
    width: 100%;
    height: 3px;
    background: var(--green-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1024px) {
    #main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 999;
        border-bottom: 2px solid rgba(34, 197, 94, 0.2);
    }

    #main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    #main-nav a {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
        border: 1px solid rgba(34, 197, 94, 0.2);
        transition: all var(--transition);
    }

    #main-nav a:hover {
        border-color: var(--green-primary);
        box-shadow: var(--glow-green);
    }

    .burger {
        display: flex;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Features - Asymmetric */
.features-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.feature-large {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.3);
    padding: 0;
    overflow: hidden;
    transition: all var(--transition);
    opacity: 0;
    transform: translateX(-50px);
}

.feature-large.visible {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.8s forwards;
}

.feature-large:hover {
    border-color: var(--green-primary);
    box-shadow: var(--glow-green);
    transform: translateY(-10px);
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.feature-large:hover .feature-image-wrapper img {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-link {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    display: inline-block;
}

.feature-link:hover {
    color: var(--green-light);
    transform: translateX(10px);
}

.features-small {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-small {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.3);
    padding: 2rem;
    transition: all var(--transition);
    opacity: 0;
    transform: translateX(50px);
}

.feature-small.visible {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.8s forwards;
}

.feature-small:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-small:hover {
    border-color: var(--green-primary);
    box-shadow: var(--glow-green);
    transform: translateY(-10px) scale(1.02);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-small h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-small p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-img-small {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-top: 1rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About - Timeline */
.timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--green-primary), var(--green-light), var(--green-accent));
    transform: translateX(-50%);
    box-shadow: var(--glow-green);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green-primary);
    border: 4px solid var(--dark-bg);
    box-shadow: var(--glow-green);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 2rem;
}

.timeline-item:nth-child(2) .timeline-marker {
    background: var(--green-light);
    box-shadow: var(--glow-green-light);
}

.timeline-item:nth-child(3) .timeline-marker {
    background: var(--green-accent);
    box-shadow: var(--glow-green-dark);
}

.timeline-content {
    flex: 1;
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.3);
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.timeline-item:hover .timeline-content {
    border-color: var(--green-primary);
    box-shadow: var(--glow-green);
    transform: scale(1.05);
}

.timeline-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Services Grid */
.services {
    /* Background handled by light-section class */
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.3);
    padding: 2.5rem;
    transition: all var(--transition);
    opacity: 0;
    transform: scale(0.9);
}

.service-card.visible {
    opacity: 1;
    transform: scale(1);
    animation: scaleIn 0.6s forwards;
}

.service-card:hover {
    border-color: var(--green-primary);
    box-shadow: var(--glow-green);
    transform: translateY(-10px) scale(1.02);
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reviews - Interactive Cards */
.reviews-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.3);
    padding: 2rem;
    transition: all var(--transition);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s forwards;
}

.review-card:hover,
.review-card.active {
    border-color: var(--green-primary);
    box-shadow: var(--glow-green);
    transform: translateY(-15px) scale(1.03);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--light-bg);
    flex-shrink: 0;
}

.review-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.review-rating {
    color: var(--green-primary);
    font-size: 1rem;
}

.review-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.review-card.active .review-expanded {
    max-height: 200px;
    margin-top: 1rem;
}

.review-expanded p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact - Split */
.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.contact-form-wrapper.visible,
.contact-info-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid rgba(34, 197, 94, 0.3);
    padding: 1rem;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all var(--transition);
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: var(--glow-green);
}

.submit-btn {
    padding: 1rem 2.5rem;
    background: var(--green-primary);
    color: var(--light-bg);
    border: 2px solid var(--green-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--glow-green);
}

.submit-btn:hover {
    background: transparent;
    color: var(--green-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.contact-info-card {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.3);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all var(--transition);
}

.contact-info-card:hover {
    border-color: var(--green-primary);
    box-shadow: var(--glow-green);
    transform: translateY(-5px);
}

.contact-info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-info-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--green-primary);
    text-decoration: none;
    transition: all var(--transition);
}

.contact-info-card a:hover {
    color: var(--green-light);
    text-shadow: var(--glow-green);
}

/* Footer */
footer {
    background: var(--dark-surface);
    border-top: 2px solid rgba(34, 197, 94, 0.2);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h4,
.footer-contact h4,
.footer-nav h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-about p,
.footer-contact p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
}

.footer-nav ul li a:hover {
    color: var(--green-primary);
    padding-left: 10px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem clamp(1rem, 4vw, 3rem) 0;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 41, 59, 0.95);
    border: 2px solid var(--green-primary);
    padding: 1.5rem 2rem;
    display: none;
    align-items: center;
    gap: 2rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
    box-shadow: var(--glow-green);
    max-width: 90%;
}

.cookie-popup.active {
    display: flex;
}

.cookie-popup span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-popup a {
    color: var(--green-primary);
    text-decoration: none;
}

.cookie-popup button {
    background: var(--green-primary);
    color: var(--light-bg);
    border: 2px solid var(--green-primary);
    padding: 0.7rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-popup button:hover {
    background: transparent;
    color: var(--green-primary);
    box-shadow: var(--glow-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .menu-trigger {
        display: flex;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

    .card-1 {
        grid-column: 1;
    }

    .features-asymmetric {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }

    .timeline-marker {
        position: absolute;
        left: 20px;
        margin: 0;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .blob {
        filter: blur(60px);
    }

    .blob-1,
    .blob-2,
    .blob-3 {
        width: 300px;
        height: 300px;
    }

    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .nav-link-large {
        font-size: 2rem;
    }

    .menu-close {
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }

    .header-inner {
        padding: 0 1rem;
    }

    .hero-split,
    .features-asymmetric,
    .contact-split {
        padding: 0 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .timeline-item {
        padding-left: 3rem;
    }

    .timeline-marker {
        left: 10px;
        width: 15px;
        height: 15px;
    }

    .cookie-popup {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .policy,
    .thanks {
        padding: 6rem 1rem 4rem;
    }

    .policy h1,
    .thanks h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }

    .policy p,
    .thanks p {
        font-size: 0.95rem;
    }

    .thanks .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 1920px) {
    html {
        font-size: 18px;
    }

    .hero-split,
    .features-asymmetric,
    .contact-split {
        max-width: 1600px;
    }
}

@media (min-width: 2560px) {
    html {
        font-size: 20px;
    }

    .hero-split,
    .features-asymmetric,
    .contact-split {
        max-width: 2000px;
    }
}
