/* ============================================
   LUMIÈRE 360 - SERVICES THEME (BLACK & RED)
   ============================================ */

/* Page Hero Overrides */
.page-hero {
    /* Hide default page hero if we use the split hero */
    display: none;
}

/* ============================================
   SPLIT HERO SECTION (Cinematic)
   ============================================ */

.service-hero-split {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Upper Section - Video/Image Background */
.hero-upper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    z-index: 1;
    overflow: hidden;
    background: #000;
}

.hero-bg-media {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    /* Dim slightly for text readability */
}

/* Video Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

/* Lower Section - Gradient Background */
.hero-lower {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark Red Gradient */
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 30%, #450a0a 60%, #0a0a0a 100%);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* Diagonal Divider Line */
.diagonal-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 141.42%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(220, 38, 38, 0.8) 20%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(220, 38, 38, 0.8) 80%,
            transparent 100%);
    transform-origin: top left;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
    animation: lineGlow 4s ease-in-out infinite;
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: 0.6;
        filter: brightness(1);
    }

    50% {
        opacity: 1;
        filter: brightness(1.5);
    }
}

/* Particle Canvas */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

/* Sparkle Animation */
@keyframes sparkleFloat {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Hero Content */
.service-hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    text-align: center;
    color: white;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.service-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.service-hero-content h1 .text-highlight {
    color: var(--primary-red);
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.service-hero-content p {
    font-size: 1.4rem;
    color: #e2e8f0;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }

    .service-hero-content p {
        font-size: 1.1rem;
    }

    .diagonal-line {
        display: none;
    }

    /* Hide complex graphic on mobile if needed, or adjust */
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-title {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.hero-title .text-gradient {
    /* Red Gradient for emphasis */
    background: linear-gradient(135deg, white 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    position: relative;
    z-index: 1;
    color: var(--medium-gray);
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Service Detail Sections */
.service-detail-section {
    padding: 100px 0;
    background-color: var(--primary-black);
    /* Strict Black Background */
    position: relative;
}

/* Add subtle red glow separators between sections if multiple */
.service-detail-section:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-detail-grid:last-child {
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Reverse order for mobile image/text if needed, currently generic */
}

/* Typography & Content */
.service-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    display: inline-block;
}

/* Red underline accent for titles */
.service-info h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    margin-top: 10px;
    border-radius: 2px;
}

.service-info p {
    color: #cccccc;
    /* Lighter gray for readability on black */
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Image Wrappers with Premium Glow */
.service-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-img-wrapper::after {
    /* Subtle red glow border effect */
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 20px rgba(220, 38, 38, 0.1);
    pointer-events: none;
    z-index: 1;
}

.service-img-wrapper:hover {
    transform: scale(1.02);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 30px 60px rgba(220, 38, 38, 0.15);
}

.service-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.service-img-wrapper:hover img {
    transform: scale(1.08);
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.feature-list li {
    color: #e5e5e5;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: 900;
    font-size: 1.1rem;
    margin-top: 1px;
}

/* ============================================
   CINEMATIC "WOW" UTILITIES
   ============================================ */

/* Spotlight Backgrounds */
.spotlight-bg {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(50px);
}

.spotlight-left {
    left: 0;
}

.spotlight-right {
    left: 100%;
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    /* Above spotlight */
    overflow: hidden;
}

/* Subtle Gradient Stroke for Glass Panel */
.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    /* Stroke width */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 50%, rgba(220, 38, 38, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Red Glow Accent for Titles */
.glow-accent {
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

/* Image Wrappers - Neon Edition */
.service-img-wrapper-neon {
    border-radius: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-img-wrapper-neon img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

/* Animated Neon Border on Hover */
.service-img-wrapper-neon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-red), transparent, var(--primary-red), transparent);
    z-index: -1;
    background-size: 400%;
    animation: neonFlow 10s linear infinite;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.5s ease;
    border-radius: 22px;
    /* Slightly larger than container */
}

.service-img-wrapper-neon:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3), 0 50px 80px rgba(0, 0, 0, 0.6);
}

.service-img-wrapper-neon:hover::after {
    opacity: 0.6;
}

.service-img-wrapper-neon:hover img {
    transform: scale(1.05);
    /* Gentle zoom */
}

@keyframes neonFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Feature Grid - Cinematic Icons */
.feature-item-cinematic {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.feature-item-cinematic:hover {
    background: rgba(220, 38, 38, 0.08);
    /* Red tint on hover */
    border-color: rgba(220, 38, 38, 0.2);
}

.feature-icon-cinematic {
    font-size: 1.25rem;
    color: var(--primary-red);
    filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.5));
}

/* ============================================
   PREMIUM LAYOUT UTILITIES
   ============================================ */
.service-section-premium {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.service-section-premium:nth-child(even) {
    background-color: var(--dark-bg-light);
    /* Alternating backgrounds */
}

/* Zig-Zag Layout */
.service-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 0;
    /* Removing margin as sections will handle spacing */
}

.service-row.reversed {
    flex-direction: row-reverse;
}

@media (max-width: 968px) {

    .service-row,
    .service-row.reversed {
        flex-direction: column;
        gap: 50px;
    }
}

.service-content-col {
    flex: 1;
}

.service-image-col {
    flex: 1;
}

/* Enhanced Typography */
.service-title-large {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.service-description-large {
    font-size: 1.2rem;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Feature List Grid for more density */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item-premium {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon-premium {
    color: var(--primary-red);
    font-size: 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    padding: 10px;
    border-radius: 12px;
    line-height: 1;
}

.feature-text-premium h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-text-premium p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   PRICING PACKAGES (Adpated from servicii.html)
   ============================================ */

/* ... existing pricing styles ... */

/* 360 Specific - Vertical Gallery (Reels Style) */
.gallery-grid-reels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item-reel {
    aspect-ratio: 9/16;
    /* Portrait for Reels/TikTok */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.gallery-item-reel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item-reel::after {
    /* Play Button Overlay */
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    background: rgba(220, 38, 38, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    border: 2px solid white;
    backdrop-filter: blur(4px);
}

.gallery-item-reel:hover {
    transform: translateY(-10px);
}

.gallery-item-reel:hover img {
    transform: scale(1.1);
}

.gallery-item-reel:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-red);
    opacity: 1;
}

/* Timeline Styles (if not present, ensure fallback) */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Vertical line for timeline */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    /* Adjust based on circular marker size */
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-red), transparent);
    z-index: 0;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    border: 4px solid #1a1a1a;
    /* Dark border to separate from line */
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

.step-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.step-content p {
    color: #a3a3a3;
    line-height: 1.6;
}

.pricing-section {
    padding: 60px 0 100px;
    background: var(--dark-bg);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .pricing-packages {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    border-color: var(--primary-red);
    background: rgba(220, 38, 38, 0.05);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .package-card.featured {
        transform: scale(1);
    }
}

.package-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 1rem;
    right: -2.7rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.25rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--medium-gray);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.package-features li {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--medium-gray);
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.125rem;
}

.package-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.package-cta:hover {
    background: var(--primary-red);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

.package-card.featured .package-cta {
    background: var(--primary-red);
}


/* ============================================
   SPECIAL EFFECTS - BENTO GRID REDESIGN
   ============================================ */

.effects-bento-section {
    padding: 6rem 0;
    width: 100%;
    background-color: #000000;
}

.effects-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    /* Two rows */
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.effects-bento-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.effects-bento-card:hover {
    transform: translateY(-10px);
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Card 1: Fum Greu (Hero - Top Left - Spans 8 cols) */
.card-fum-greu {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 500px;
}

/* Card 2: Audio Guestbook (Top Right - Spans 4 cols) */
.card-audio {
    grid-column: span 5;
    min-height: 240px;
}

/* Card 3: Artificii Tort (Bottom Right - Spans 4 cols) */
.card-tort {
    grid-column: span 5;
    min-height: 240px;
}

@media (max-width: 968px) {
    .effects-bento-grid {
        display: flex;
        flex-direction: column;
    }

    .card-fum-greu,
    .card-audio,
    .card-tort {
        grid-column: span 12;
        min-height: 300px;
    }
}

/* Content Styling */
.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.6s ease;
}

.effects-bento-card:hover .bento-img {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.bento-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    margin-top: auto;
    /* Push content to bottom */
    width: 100%;
}

.bento-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 900;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 1);
}

.bento-desc {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 95%;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.bento-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.bento-badge {
    background: #DC2626;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-bento {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: black;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* New Hero Section for Special Effects */
.special-effects-hero {
    position: relative;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #1a0505 0%, #000000 100%);
    /* Deep dark red to black */
    text-align: center;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    overflow: hidden;
}

.special-effects-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 60%);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.special-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.special-hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #ffcccc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.special-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* ============================================
   MOBILE TIMELINE NAVIGATION
   ============================================ */

.mobile-timeline-container {
    display: none;
    padding: 3rem 1rem;
    background: #000;
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (max-width: 968px) {

    /* Hide Desktop Sidebar */
    .effects-sidebar {
        display: none !important;
    }

    /* Show Mobile Timeline */
    .mobile-timeline-container {
        display: block;
        padding: 4rem 1rem;
    }

    .mobile-timeline {
        display: flex;
        flex-direction: column;
        position: relative;
        max-width: 320px;
        margin: 0 auto;
        padding-left: 20px;
        /* Slight offset */
    }

    /* Vertical Line */
    .mobile-timeline-line {
        position: absolute;
        top: 25px;
        bottom: 25px;
        left: 45px;
        /* Center of marker (25+20) */
        width: 2px;
        background: rgba(255, 255, 255, 0.15);
        z-index: 0;
    }

    .mobile-timeline-item {
        display: flex;
        align-items: center;
        gap: 2rem;
        padding: 1.5rem 0;
        position: relative;
        z-index: 1;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #0a0a0a;
        /* Dark background to cover line */
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 1.2rem;
        flex-shrink: 0;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        z-index: 2;
    }

    .timeline-label {
        font-family: var(--font-heading);
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 500;
        transition: all 0.3s ease;
    }

    /* Active State */
    .mobile-timeline-item.active .timeline-marker {
        background: var(--primary-red);
        border-color: var(--primary-red);
        color: white;
        box-shadow: 0 0 25px rgba(220, 38, 38, 0.5);
        transform: scale(1.15);
    }

    .mobile-timeline-item.active .timeline-label {
        color: white;
        font-weight: 700;
        font-size: 1.3rem;
        transform: translateX(5px);
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    /* Hover Effects */
    .mobile-timeline-item:hover .timeline-marker {
        border-color: var(--primary-red);
        color: white;
    }

    .mobile-timeline-item:hover .timeline-label {
        color: rgba(255, 255, 255, 0.8);
    }
}