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

:root {
    /* Journalism Color Scheme - Professional & Warm */
    --primary-color: #c41e3a;
    --primary-dark: #8b1529;
    --primary-light: #e63946;
    --accent-gold: #d4af37;
    --accent-blue: #1e3a5f;
    --accent-blue-light: #2a4d7a;
    --dark-bg: #0f1419;
    --dark-secondary: #1a2332;
    --dark-tertiary: #252f3f;
    --text-light: #ffffff;
    --text-muted: #c0c8d4;
    
    /* Typography - Large Headlines */
    --font-size-hero: clamp(3rem, 8vw, 8rem);
    --font-size-h1: clamp(2.5rem, 6vw, 5rem);
    --font-size-h2: clamp(2rem, 5vw, 3.5rem);
    --font-size-h3: clamp(1.5rem, 4vw, 2.5rem);
    --font-size-body: clamp(1rem, 2vw, 1.25rem);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    font-size: var(--font-size-body);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 30px var(--neon-cyan);
}

.fullscreen-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.fullscreen-link {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fullscreen-link::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    transition: width 0.3s ease;
}

.fullscreen-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.fullscreen-link:hover::before {
    width: 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(196, 30, 58, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--neon-cyan);
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 30px var(--neon-cyan), 0 0 60px var(--neon-cyan);
}

.menu-toggle {
    background: none;
    border: 2px solid var(--accent-blue);
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10001;
}

.menu-toggle:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

.menu-line {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--neon-cyan);
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section - Layered with Parallax */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-layer {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.hero-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.4) 0%, rgba(30, 58, 95, 0.3) 100%);
    z-index: 2;
}

.hero-gradient-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--dark-bg) 70%);
    z-index: 3;
}

.hero-content-layer {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 50px var(--primary-color);
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-blue), transparent);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
    box-shadow: 0 0 50px var(--accent-blue);
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-gold), transparent);
    top: 50%;
    right: 10%;
    animation-delay: 4s;
    box-shadow: 0 0 50px var(--accent-gold);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-30px) translateX(20px);
    }
    66% {
        transform: translateY(30px) translateX(-20px);
    }
}

.hero-text-container {
    position: relative;
    z-index: 2;
}

.hero-title-large {
    font-size: var(--font-size-hero);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--text-light);
    position: relative;
    z-index: 3;
    visibility: visible;
    opacity: 1;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    visibility: visible;
}

.title-line:not(.highlight) {
    color: var(--text-light) !important;
    -webkit-text-fill-color: var(--text-light) !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.title-line:nth-child(1).fade-in-complete {
    opacity: 1 !important;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.title-line:nth-child(2).fade-in-complete {
    opacity: 1 !important;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.title-line:nth-child(3).fade-in-complete {
    opacity: 1 !important;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(196, 30, 58, 0.5);
}

.title-line.highlight.fade-in-complete {
    opacity: 1 !important;
    visibility: visible !important;
}

.title-line.gradient-text-animated {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out, gradientShift 3s linear infinite;
    animation-fill-mode: forwards;
}

.title-line.gradient-text-animated:not(.highlight) {
    color: var(--text-light);
    -webkit-text-fill-color: var(--text-light);
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
}

.title-line.highlight.gradient-text-animated {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 1s, gradientShift 3s linear infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure title lines are visible after animation */
.title-line {
    will-change: opacity, transform;
}

.title-line.fade-in-complete,
.title-line[style*="opacity: 1"] {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-subtitle-large {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.btn-neon {
    padding: 1rem 2.5rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    border: 2px solid;
}

.btn-primary-neon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
}

.btn-primary-neon:hover {
    box-shadow: 0 0 40px rgba(196, 30, 58, 0.8), 0 0 80px rgba(30, 58, 95, 0.5);
    transform: translateY(-2px);
}

.btn-secondary-neon {
    background: transparent;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(30, 58, 95, 0.3);
}

.btn-secondary-neon:hover {
    background: var(--accent-blue);
    color: var(--text-light);
    box-shadow: 0 0 40px rgba(30, 58, 95, 0.8);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    box-shadow: 0 0 10px var(--primary-color);
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

/* Section Headers */
.section-header-neon {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title-neon {
    font-size: var(--font-size-h2);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-subtitle-neon {
    font-size: var(--font-size-body);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Services Section - Horizontal Slider */
.services-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-secondary);
    position: relative;
}

.services-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    flex: 1;
}

.services-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
    width: 100%;
}

.service-slide {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .service-slide {
        min-width: calc(50% - 1rem);
        width: calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .service-slide {
        min-width: calc(33.333% - 1.33rem);
        width: calc(33.333% - 1.33rem);
    }
}

.service-card-neon {
    background: var(--dark-tertiary);
    border: 2px solid rgba(196, 30, 58, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(30, 58, 95, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-neon:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.3);
    transform: translateY(-10px);
}

.service-card-neon:hover::before {
    opacity: 1;
}

.service-icon-neon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid var(--accent-blue);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
}

.service-icon-neon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title-neon {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-description-neon {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.slider-btn {
    position: relative;
    background: rgba(0, 240, 255, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 0 30px var(--neon-cyan);
    transform: scale(1.1);
}

.slider-prev {
    order: 1;
}

.slider-next {
    order: 3;
}

/* About Section - Icon Cards */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card-neon {
    background: var(--dark-secondary);
    border: 2px solid rgba(30, 58, 95, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card-neon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card-neon:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 40px rgba(30, 58, 95, 0.4);
    transform: translateY(-5px);
}

.about-card-neon:hover::after {
    opacity: 1;
}

.card-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-icon-neon {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px var(--accent-blue));
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.card-title-neon {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.card-text-neon {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

/* Features Section */
.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-secondary);
}

.features-grid-neon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item-neon {
    text-align: center;
    padding: 2rem;
}

.feature-number-neon {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.feature-title-neon {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-text-neon {
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.95;
}

/* Process Section - Timeline */
.process-section-neon {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.process-timeline-neon {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline-neon::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-blue));
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
}

.process-step-neon {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number-neon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-h2);
    font-weight: 900;
    color: var(--dark-bg);
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    position: relative;
    z-index: 2;
}

.step-content-neon {
    flex: 1;
    padding-top: 1rem;
}

.step-title-neon {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-description-neon {
    color: var(--text-light);
    line-height: 1.8;
    font-size: var(--font-size-body);
}

.step-connector-neon {
    display: none;
}

/* Statistics Section */
.statistics-section-neon {
    padding: var(--spacing-xl) 0;
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.statistics-section-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.1), transparent);
    pointer-events: none;
}

.stats-grid-neon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card-neon {
    background: var(--dark-tertiary);
    border: 2px solid rgba(30, 58, 95, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-neon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card-neon:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    transform: translateY(-10px);
}

.stat-card-neon:hover::before {
    opacity: 1;
}

.stat-number-neon {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label-neon {
    font-size: var(--font-size-body);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Partners Section */
.partners-section-neon {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.partners-grid-neon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo-neon {
    background: var(--dark-secondary);
    border: 2px solid rgba(0, 240, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.partner-logo-neon:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.3);
    transform: scale(1.05);
}

.partner-logo-neon:hover::before {
    left: 100%;
}

.partner-placeholder-neon {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* FAQ Section */
.faq-section-neon {
    padding: var(--spacing-xl) 0;
    background: var(--dark-secondary);
}

.faq-container-neon {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-neon {
    background: var(--dark-tertiary);
    border: 2px solid rgba(196, 30, 58, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-neon:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.2);
}

.faq-item-neon.active {
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px rgba(30, 58, 95, 0.3);
}

.faq-question-neon {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: var(--font-size-body);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question-neon:hover {
    color: var(--primary-color);
}

.faq-item-neon.active .faq-question-neon {
    color: var(--accent-blue);
}

.faq-icon-neon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item-neon.active .faq-icon-neon {
    transform: rotate(45deg);
    border-color: var(--neon-purple);
    color: var(--accent-blue);
}

.faq-answer-neon {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item-neon.active .faq-answer-neon {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer-neon p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta-section-neon {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(30, 58, 95, 0.1));
    position: relative;
    overflow: hidden;
}

.cta-section-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 240, 255, 0.2), transparent),
                radial-gradient(circle at 70% 50%, rgba(176, 38, 255, 0.2), transparent);
    pointer-events: none;
}

.cta-content-neon {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title-neon {
    font-size: var(--font-size-h1);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-text-neon {
    font-size: var(--font-size-body);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

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

/* Testimonials Section - Carousel */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-carousel {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.testimonial-card-neon {
    background: var(--dark-tertiary);
    border: 2px solid rgba(196, 30, 58, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.testimonial-content-neon {
    margin-bottom: 2rem;
}

.testimonial-text-neon {
    font-size: var(--font-size-body);
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    position: relative;
}

.testimonial-text-neon::before,
.testimonial-text-neon::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent-blue);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text-neon::before {
    top: -1rem;
    left: -1rem;
}

.testimonial-text-neon::after {
    bottom: -2rem;
    right: -1rem;
}

.testimonial-author-neon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar-neon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.author-avatar-neon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name-neon {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-role-neon {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot-neon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.3);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-neon.active {
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: scale(1.2);
}

/* Contact Section - Map + Form */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-secondary);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.contact-map-side {
    background: var(--dark-tertiary);
    border-right: 2px solid rgba(0, 240, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.map-placeholder-neon {
    width: 100%;
    height: 100%;
    background: var(--dark-secondary);
    border: 2px dashed rgba(30, 58, 95, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-content {
    text-align: center;
    z-index: 1;
}

.map-title-neon {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-info-neon {
    text-align: left;
}

.contact-info-item {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-info-item strong {
    color: var(--accent-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-item a:hover {
    text-shadow: 0 0 10px var(--neon-cyan);
}

.contact-form-side {
    background: var(--dark-bg);
    padding: 3rem;
    display: flex;
    align-items: center;
}

.contact-form-container {
    width: 100%;
    padding: 3rem 0;
}

.form-container-neon {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.form-title-neon {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-subtitle-neon {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form-neon {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-neon input,
.form-group-neon textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-tertiary);
    border: 2px solid rgba(196, 30, 58, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: var(--font-size-body);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group-neon input:focus,
.form-group-neon textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
}

.form-group-neon input::placeholder,
.form-group-neon textarea::placeholder {
    color: var(--text-muted);
}

.form-group-neon textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-neon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border: none;
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    font-size: var(--font-size-body);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.btn-submit-neon:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
    transform: translateY(-2px);
}

/* Footer */
.footer-neon {
    background: var(--dark-bg);
    border-top: 2px solid rgba(196, 30, 58, 0.2);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content-neon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-text-neon {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-text-neon a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-text-neon a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-links-neon {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-neon a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-neon a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-bottom-neon {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 30, 58, 0.1);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-tertiary);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(196, 30, 58, 0.3);
    z-index: 2000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    color: var(--text-light);
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-content a:hover {
    text-shadow: 0 0 10px var(--neon-cyan);
}

.cookie-btn {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-btn:hover {
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.8);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .contact-map-side {
        border-right: none;
        border-bottom: 2px solid rgba(0, 240, 255, 0.2);
    }
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-neon {
        width: 100%;
        text-align: center;
    }
    
    .services-slider-wrapper {
        padding: 1rem 0;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .services-slider-container {
        gap: 0.5rem;
    }
    
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-neon {
        grid-template-columns: 1fr;
    }
    
    .process-timeline-neon::before {
        left: 40px;
    }
    
    .step-number-neon {
        width: 80px;
        height: 80px;
        font-size: var(--font-size-h3);
    }
    
    .process-step-neon {
        gap: 1rem;
    }
    
    .stats-grid-neon {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid-neon {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons-neon {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-floating-elements {
        display: none;
    }
    
    .service-card-neon,
    .about-card-neon,
    .testimonial-card-neon {
        padding: 1.5rem;
    }
    
    .contact-map-side,
    .contact-form-side {
        padding: 2rem 1.5rem;
    }
    
    .process-timeline-neon::before {
        display: none;
    }
    
    .process-step-neon {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number-neon {
        margin: 0 auto;
    }
    
    .stats-grid-neon {
        grid-template-columns: 1fr;
    }
    
    .partners-grid-neon {
        grid-template-columns: 1fr;
    }
    
    .faq-question-neon {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .faq-answer-neon {
        padding: 0 1.5rem;
    }
    
    .faq-item-neon.active .faq-answer-neon {
        padding: 0 1.5rem 1rem 1.5rem;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 8rem 0 5rem;
    background: var(--dark-bg);
    min-height: 100vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.policy-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(196, 30, 58, 0.2);
}

.policy-title {
    font-size: var(--font-size-h1);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.policy-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.policy-content {
    line-height: 1.8;
    color: var(--text-light);
}

.policy-content h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.policy-content h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-blue);
}

.policy-content p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.policy-content ul,
.policy-content ol {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-content a:hover {
    text-shadow: 0 0 10px var(--neon-cyan);
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    text-shadow: 0 0 10px var(--neon-cyan);
    padding-left: 0.5rem;
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: var(--dark-bg);
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: 0 0 30px var(--neon-cyan);
}

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

.thanks-text {
    font-size: var(--font-size-body);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ============================================
   CREATIVE SECTIONS & TRANSITIONS
   ============================================ */

/* Section Transitions - Wave */
.section-transition-wave {
    position: relative;
    height: 100px;
    overflow: hidden;
    margin: -1px 0;
}

.section-transition-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: var(--dark-secondary);
}

/* Section Transitions - Diagonal */
.section-transition-diagonal {
    position: relative;
    height: 120px;
    overflow: hidden;
    margin: -1px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg) 50%, var(--dark-secondary) 50%, var(--dark-secondary) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

/* Section Transitions - Curved */
.section-transition-curved {
    position: relative;
    height: 100px;
    overflow: hidden;
    margin: -1px 0;
}

.section-transition-curved::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-secondary);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

/* Decorative Text Section */
.decorative-text-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.decorative-text-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

.decorative-text-bg span {
    font-size: clamp(8rem, 20vw, 20rem);
    font-weight: 900;
    color: var(--primary-color);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: textScroll 30s linear infinite;
}

@keyframes textScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.decorative-text-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.decorative-text-title {
    font-size: var(--font-size-h1);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.decorative-text-subtitle {
    font-size: var(--font-size-body);
    color: var(--text-light);
    line-height: 1.8;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

/* Interactive Cards Section */
.interactive-cards-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-secondary);
    position: relative;
}

.interactive-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.interactive-card {
    position: relative;
    background: var(--dark-tertiary);
    border: 2px solid rgba(196, 30, 58, 0.2);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.interactive-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.interactive-card:hover {
    transform: translateY(-15px) rotate(2deg);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.4);
}

.interactive-card:hover::before {
    opacity: 1;
}

.interactive-card:nth-child(even):hover {
    transform: translateY(-15px) rotate(-2deg);
}

.interactive-card-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 900;
    color: rgba(196, 30, 58, 0.1);
    line-height: 1;
    z-index: 0;
}

.interactive-card-content {
    position: relative;
    z-index: 1;
}

.interactive-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.5s ease;
}

.interactive-card:hover .interactive-card-icon {
    transform: scale(1.2) rotate(10deg);
}

.interactive-card-title {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.interactive-card-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Split Text Section */
.split-text-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.split-text-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.split-text-left {
    position: relative;
    z-index: 2;
}

.split-text-right {
    position: relative;
    z-index: 2;
}

.split-text-large {
    font-size: clamp(4rem, 10vw, 12rem);
    font-weight: 900;
    line-height: 0.9;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.split-text-title {
    font-size: var(--font-size-h1);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.split-text-content {
    font-size: var(--font-size-body);
    color: var(--text-light);
    line-height: 1.8;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

/* Floating Elements Section */
.floating-elements-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.floating-text {
    position: absolute;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    color: rgba(196, 30, 58, 0.05);
    text-transform: uppercase;
    white-space: nowrap;
    animation: floatText 20s linear infinite;
    pointer-events: none;
}

.floating-text:nth-child(1) {
    top: 10%;
    animation-delay: 0s;
}

.floating-text:nth-child(2) {
    top: 40%;
    animation-delay: -5s;
    animation-direction: reverse;
}

.floating-text:nth-child(3) {
    top: 70%;
    animation-delay: -10s;
}

@keyframes floatText {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100vw);
    }
}

.floating-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.floating-content-title {
    font-size: var(--font-size-h1);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.floating-content-text {
    font-size: var(--font-size-body);
    color: var(--text-light);
    line-height: 1.8;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .split-text-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .split-text-large {
        display: none;
    }
    
    .interactive-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .decorative-text-bg span {
        font-size: clamp(4rem, 15vw, 10rem);
    }
    
    .interactive-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-text {
        font-size: clamp(2rem, 10vw, 5rem);
    }
}

/* Additional Creative Effects */

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
    position: relative;
}

.text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    animation: textReveal 1s ease-out forwards;
}

@keyframes textReveal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Glitch Effect for Text */
.glitch-text {
    position: relative;
    animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-blue);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }
    20% {
        clip: rect(54px, 9999px, 77px, 0);
    }
    40% {
        clip: rect(28px, 9999px, 87px, 0);
    }
    60% {
        clip: rect(45px, 9999px, 73px, 0);
    }
    80% {
        clip: rect(38px, 9999px, 95px, 0);
    }
    100% {
        clip: rect(62px, 9999px, 68px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }
    20% {
        clip: rect(14px, 9999px, 33px, 0);
    }
    40% {
        clip: rect(78px, 9999px, 95px, 0);
    }
    60% {
        clip: rect(43px, 9999px, 68px, 0);
    }
    80% {
        clip: rect(19px, 9999px, 83px, 0);
    }
    100% {
        clip: rect(56px, 9999px, 91px, 0);
    }
}

/* Typography as Decoration */
.typography-decoration {
    font-size: clamp(6rem, 15vw, 15rem);
    font-weight: 900;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 2px rgba(196, 30, 58, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: absolute;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Gradient Text Animation */
.gradient-text-animated {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Morphing Background */
.morphing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.1), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(30, 58, 95, 0.1), transparent 50%);
    animation: morph 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* Scroll Reveal Effect */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Text */
.parallax-text {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Liquid Transition */
.liquid-transition {
    position: relative;
    height: 150px;
    overflow: hidden;
    margin: -1px 0;
}

.liquid-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: var(--dark-secondary);
    border-radius: 50%;
    animation: liquidWave 8s ease-in-out infinite;
}

@keyframes liquidWave {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        border-radius: 50% 50% 50% 50% / 40% 60% 40% 60%;
    }
    50% {
        transform: translateY(0) rotate(0deg);
        border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
        border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    }
}
