/* ============================================
   EVIBE - Singer Portfolio Website
   Color Scheme Based on Logo:
   - Primary: Electric Blue (#3B82F6)
   - Secondary: Cyan (#06B6D4)
   - Background: Black (#000000)
   - Accent: White/Pale Blue (#E6F3FF)
   - Deep Blue: (#1E3A8A)
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors from Logo - Ocean/Sky Theme (Hero, About) */
    --primary: #3B82F6;
    --primary-dark: #1E3A8A;
    --primary-light: #60A5FA;
    --secondary: #06B6D4;
    --secondary-dark: #0891B2;
    --accent: #E6F3FF;

    /* Sand/Desert Theme Colors (Services, Portfolio) */
    --sand-primary: #D4A574;
    --sand-primary-dark: #8B7355;
    --sand-primary-light: #E6C9A8;
    --sand-secondary: #C9A227;
    --sand-secondary-dark: #A67B5B;
    --sand-accent: #F4D03F;
    --sand-bg: #1A150D;
    --sand-bg-light: #2A2015;
    --sand-card: #2E251A;
    --sand-card-hover: #403525;

    /* Lava/Inner Crust Theme Colors (Videos, Events, Contact, Newsletter) */
    --lava-primary: #EF4444;
    --lava-primary-dark: #991B1B;
    --lava-primary-light: #F87171;
    --lava-secondary: #F97316;
    --lava-secondary-dark: #C2410C;
    --lava-accent: #FCD34D;
    --lava-bg: #1A0A0A;
    --lava-bg-light: #2A0F0F;
    --lava-card: #2E1313;
    --lava-card-hover: #401A1A;

    /* Background Colors */
    --bg-dark: #000000;
    --bg-darker: #050505;
    --bg-light: #0A0A0F;
    --bg-card: #111118;
    --bg-card-hover: #1A1A24;

    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: #E6F3FF;
    --text-muted: #9CA3AF;
    --text-dark: #6B7280;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
    --gradient-sand: linear-gradient(135deg, var(--sand-primary) 0%, var(--sand-secondary) 100%);
    --gradient-lava: linear-gradient(135deg, var(--lava-primary) 0%, var(--lava-secondary) 100%);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Bebas Neue', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.3);
    --shadow-glow-cyan: 0 0 30px rgba(6, 182, 212, 0.3);
    --shadow-glow-sand: 0 0 30px rgba(212, 165, 116, 0.3);
    --shadow-glow-lava: 0 0 30px rgba(239, 68, 68, 0.3);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ============================================
   Preloader
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

#preloader::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%);
    animation: bgPulse 4s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Animated Rings */
.loader-ring {
    position: absolute;
    width: 320px;
    height: 320px;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-1 {
    width: 280px;
    height: 280px;
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    animation: ringRotate 2s linear infinite;
}

.ring-2 {
    width: 320px;
    height: 320px;
    border-bottom-color: var(--secondary);
    border-left-color: var(--secondary);
    animation: ringRotate 2.5s linear infinite reverse;
}

.ring-3 {
    width: 360px;
    height: 360px;
    border-top-color: rgba(59, 130, 246, 0.3);
    border-bottom-color: rgba(6, 182, 212, 0.3);
    animation: ringRotate 3s linear infinite;
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Logo Wrapper */
.loader-logo-wrapper {
    position: relative;
    width: 180px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.loader-logo {
    width: 100%;
    height: auto;
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(6, 182, 212, 0.8)) drop-shadow(0 0 60px rgba(59, 130, 246, 0.4)); }
}

.logo-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

/* Floating Music Notes */
.loader-notes {
    position: absolute;
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.loader-notes .note {
    position: absolute;
    font-size: 1.8rem;
    color: var(--primary);
    opacity: 0;
    animation: noteFloat 3s ease-in-out infinite;
}

.note-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s !important;
}

.note-2 {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s !important;
    color: var(--secondary) !important;
}

.note-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1s !important;
}

.note-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 1.5s !important;
    color: var(--secondary) !important;
}

@keyframes noteFloat {
    0% {
        opacity: 0;
        transform: translateY(20px) rotate(0deg) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translateY(0) rotate(-10deg) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(-30px) rotate(10deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px) rotate(20deg) scale(0.5);
    }
}

/* Loading Bar */
.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: barFill 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

@keyframes barFill {
    0% { width: 0%; margin-left: 0%; }
    50% { width: 100%; margin-left: 0%; }
    100% { width: 0%; margin-left: 100%; }
}

/* Loading Text */
.loader-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-top: 25px;
    text-transform: uppercase;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============================================
   Custom Cursor
   ============================================ */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 90px;
    width: auto;
    transition: var(--transition-normal);
}

.navbar.scrolled .logo-img {
    height: 70px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-light);
}

.nav-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-normal);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

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

.mobile-nav-menu {
    text-align: center;
}

.mobile-nav-menu li {
    margin: 20px 0;
}

.mobile-nav-link {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: var(--text-white);
    transition: var(--transition-normal);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-social {
    display: flex;
    gap: 20px;
}

@media (max-width: 992px) {
    .nav-menu, .nav-social {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-text {
    background: transparent;
    color: var(--text-muted);
    padding: 10px 0;
}

.btn-text:hover {
    color: var(--primary-light);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn .iconify {
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.btn:hover .iconify {
    transform: translateX(5px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 100px;
}

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

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-title {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    position: relative;
    padding: 0px;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
    animation: titleGlowPulse 3s ease-in-out infinite;
}

@keyframes titleGlowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.title-line {
    font-family: 'Permanent Marker', cursive;
    font-size: 7rem;
    line-height: 1;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    background: linear-gradient(180deg, #FFFFFF 0%, #E6F3FF 40%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(3px 3px 0px var(--primary))
            drop-shadow(5px 5px 0px var(--secondary))
            drop-shadow(0 0 30px rgba(59, 130, 246, 0.4));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.title-line::after {
    content: attr(data-letter);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.3) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translate(2px, 2px);
    z-index: -1;
    opacity: 0.5;
}

.title-line:hover {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(4px 4px 0px var(--primary))
            drop-shadow(8px 8px 0px var(--secondary))
            drop-shadow(0 0 50px rgba(59, 130, 246, 0.6))
            drop-shadow(0 0 80px rgba(6, 182, 212, 0.4));
}

/* First letter (E) - Emphasized */
.title-line:nth-child(1) {
    font-size: 8rem;
    animation-delay: 0.3s;
    background: linear-gradient(180deg, #60A5FA 0%, #3B82F6 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(3px 3px 0px #1E3A8A)
            drop-shadow(6px 6px 0px rgba(6, 182, 212, 0.8))
            drop-shadow(0 0 40px rgba(59, 130, 246, 0.5));
}

.title-line:nth-child(1):hover {
    filter: drop-shadow(4px 4px 0px #1E3A8A)
            drop-shadow(8px 8px 0px rgba(6, 182, 212, 0.9))
            drop-shadow(0 0 60px rgba(59, 130, 246, 0.7))
            drop-shadow(0 0 100px rgba(6, 182, 212, 0.5));
}

.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }
.title-line:nth-child(4) { animation-delay: 0.6s; }
.title-line:nth-child(5) { animation-delay: 0.7s; }

/* Staggered hover wave effect */
.hero-title:hover .title-line:nth-child(1) { transition-delay: 0s; }
.hero-title:hover .title-line:nth-child(2) { transition-delay: 0.05s; }
.hero-title:hover .title-line:nth-child(3) { transition-delay: 0.1s; }
.hero-title:hover .title-line:nth-child(4) { transition-delay: 0.15s; }
.hero-title:hover .title-line:nth-child(5) { transition-delay: 0.2s; }

.hero-roles {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    min-height: 50px;
}

.cursor-blink {
    animation: blink 1s infinite;
    color: var(--primary);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 35px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1s;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.hero-image-wrapper {
    position: relative;
    width: 510px;
    height: 500px;
}

.hero-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-xl);
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
}

.hero-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    z-index: -1;
}

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

.floating-note {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}

.note-1 { top: 10%; left: -30px; animation-delay: 0s; }
.note-2 { top: 50%; right: -40px; animation-delay: 1s; }
.note-3 { bottom: 20%; left: -20px; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 15;
}

.scroll-indicator {
    animation: scrollBounce 2s infinite;
}

.scroll-indicator .iconify {
    font-size: 1.5rem;
    color: var(--primary);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(59, 130, 246, 0.2);
    z-index: 15;
    opacity: 0;
    animation: statsReveal 0.8s ease forwards 1.2s;
}

@keyframes statsReveal {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    color: var(--primary);
}

.stat-suffix {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.section-header.light .section-subtitle,
.section-header.light .section-title {
    color: var(--text-white);
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.title-decoration {
    display: flex;
    justify-content: center;
}

.title-decoration .iconify {
    font-size: 2rem;
    color: var(--primary);
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.about-profile-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-xl);
}

.about-placeholder {
    width: 100%;
    height: 550px;
    border-radius: var(--radius-xl);
}

.about-image-frame {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    padding: 25px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.exp-number {
    display: block;
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--text-white);
}

.exp-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 25px;
}

.about-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition-normal);
}

.skill-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.skill-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.about-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.about-bg-decoration {
    position: absolute;
    bottom: 50px;
    right: 50px;
    opacity: 0.05;
    font-size: 300px;
    color: var(--primary);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--bg-dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

/* Center the last row with 2 items (for 5 services) */
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    justify-self: center;
}

@media (min-width: 993px) {
    .services-grid .service-card:nth-child(4) {
        grid-column: 1 / 2;
        justify-self: end;
    }

    .services-grid .service-card:nth-child(5) {
        grid-column: 3 / 4;
        justify-self: start;
    }
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon .iconify {
    font-size: 2.5rem;
    color: var(--text-white);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-features .iconify {
    color: var(--secondary);
}

.service-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 0 var(--radius-xl) 0 100%;
}

.services-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 0;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%233B82F6' fill-opacity='0.05' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    animation: wave 20s linear infinite;
}

.wave-2 {
    opacity: 0.5;
    animation-delay: -5s;
    animation-direction: reverse;
}

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

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio {
    background: var(--bg-light);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 10;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.portfolio-item.portfolio-hidden {
    display: none;
}

.portfolio-item.portfolio-visible {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

.portfolio-image {
    position: relative;
    aspect-ratio: 1;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.portfolio-info p {
    color: var(--secondary);
    font-size: 0.9rem;
}

.portfolio-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.action-btn {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.action-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.portfolio-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   Videos Section
   ============================================ */
.videos {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    position: relative;
}

.videos-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.featured-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder.small {
    aspect-ratio: 16/9;
    width: 120px;
}

.play-video-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition-normal);
}

.play-video-btn .iconify {
    font-size: 3rem;
}

.play-video-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.video-info {
    margin-top: 20px;
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
}

.video-info p {
    color: var(--text-muted);
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    opacity: 1;
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-item:hover {
    background: rgba(59, 130, 246, 0.1);
}

.video-thumb {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.video-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    opacity: 0;
    transition: var(--transition-normal);
}

.video-item:hover .video-thumb-overlay {
    opacity: 1;
}

.video-details h4 {
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.video-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.videos-cta {
    text-align: center;
    margin-top: 50px;
}

.videos-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* ============================================
   Events Section
   ============================================ */
.events {
    background: var(--bg-dark);
}

.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-card {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition-normal);
}

.event-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: var(--shadow-glow);
}

.event-date {
    flex-shrink: 0;
    width: 100px;
    text-align: center;
    padding: 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
}

.date-day {
    display: block;
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--text-white);
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.date-year {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.8;
}

.event-content {
    display: flex;
    gap: 25px;
    flex: 1;
}

.event-image {
    flex-shrink: 0;
}

.event-placeholder {
    width: 150px;
    height: 100px;
    border-radius: var(--radius-md);
}

.event-details {
    flex: 1;
}

.event-type {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.event-meta p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.event-meta .iconify {
    color: var(--primary);
}

.events-cta {
    text-align: center;
    margin-top: 50px;
}

/* Coming Soon */
.coming-soon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
    z-index: 10;
}

.coming-soon-content {
    text-align: center;
    padding: 60px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(59, 130, 246, 0.2);
    max-width: 500px;
}

.coming-soon-icon {
    margin-bottom: 25px;
}

.coming-soon-icon .iconify {
    font-size: 5rem;
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

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

.coming-soon-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-text {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--primary-dark) 100%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.5;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin: 20px 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
}

.author-info h4 {
    color: var(--text-white);
    font-size: 1rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.nav-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

.testimonials-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
}

.dot.active {
    background: var(--primary);
    width: 30px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--bg-light);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .iconify {
    font-size: 1.5rem;
    color: var(--text-white);
}

.contact-text h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-muted);
}

.contact-social h4 {
    color: var(--text-white);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.social-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-left: 50px;
    background: var(--bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-normal);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
}

.form-group select option {
    background: var(--bg-dark);
}

.form-icon {
    position: absolute;
    left: 18px;
    top: 48px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.btn-submit {
    grid-column: span 2;
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1rem;
}

.contact-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-full);
}

/* ============================================
   Newsletter Section
   ============================================ */
.newsletter {
    background: var(--gradient-primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-icon {
    font-size: 3rem;
    color: var(--text-white);
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
}

.newsletter-text p {
    color: var(--text-light);
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    padding: 15px 25px;
    width: 350px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--text-white);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--text-white);
}

.newsletter-form .btn {
    background: var(--text-white);
    color: var(--primary-dark);
}

.newsletter-form .btn:hover {
    background: var(--text-light);
    transform: translateY(-3px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-darker);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-muted);
    font-style: italic;
}

.footer-links h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-contact .iconify {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom .heart-icon {
    color: #ef4444;
}

.footer-credit-link {
    color: var(--primary-light);
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-credit-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 100;
    box-shadow: var(--shadow-glow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ============================================
   Image Placeholders
   ============================================ */
.image-placeholder {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-light) 100%);
    border: 2px dashed rgba(59, 130, 246, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0.3;
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

.placeholder-icon.large {
    font-size: 6rem;
}

.placeholder-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.video-placeholder.small .placeholder-icon {
    font-size: 2rem;
}

.video-placeholder.small .placeholder-text {
    display: none;
}

/* ============================================
   Epic Himachali Character Illustration
   ============================================ */
.himachali-character {
    background: linear-gradient(180deg, #030712 0%, #0F172A 30%, #1E293B 60%, #0F172A 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.himachali-character::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
    animation: bgShift 8s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.character-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stage Lighting */
.stage-lights {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.spotlight {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: spotlightPulse 4s ease-in-out infinite;
}

.spotlight-1 {
    width: 200px;
    height: 300px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.4) 0%, transparent 100%);
    top: -50px;
    left: 20%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.spotlight-2 {
    width: 180px;
    height: 280px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.3) 0%, transparent 100%);
    top: -40px;
    right: 15%;
    transform: rotate(15deg);
    animation-delay: 1s;
}

.spotlight-3 {
    width: 250px;
    height: 350px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.25) 0%, transparent 100%);
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

@keyframes spotlightPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Floating Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 25;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle-1 { width: 4px; height: 4px; background: #60A5FA; top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { width: 3px; height: 3px; background: #818CF8; top: 30%; right: 15%; animation-delay: 0.5s; }
.particle-3 { width: 5px; height: 5px; background: #06B6D4; top: 50%; left: 5%; animation-delay: 1s; }
.particle-4 { width: 3px; height: 3px; background: #F472B6; top: 15%; right: 25%; animation-delay: 1.5s; }
.particle-5 { width: 4px; height: 4px; background: #34D399; top: 60%; right: 8%; animation-delay: 2s; }
.particle-6 { width: 2px; height: 2px; background: #FBBF24; top: 40%; left: 15%; animation-delay: 2.5s; }
.particle-7 { width: 3px; height: 3px; background: #A78BFA; top: 70%; left: 20%; animation-delay: 3s; }
.particle-8 { width: 4px; height: 4px; background: #22D3EE; top: 25%; left: 25%; animation-delay: 3.5s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) translateX(-5px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-20px) translateX(-10px) scale(1.1);
        opacity: 0.9;
    }
}

/* Energy Aura Rings */
.energy-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 1;
}

.aura-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
    animation: auraRotate 10s linear infinite;
}

.aura-ring-1 {
    width: 280px;
    height: 280px;
    border-image: linear-gradient(45deg, #3B82F6, #8B5CF6, #06B6D4, #3B82F6) 1;
    border-style: solid;
    opacity: 0.3;
    animation-duration: 15s;
}

.aura-ring-2 {
    width: 320px;
    height: 320px;
    border-image: linear-gradient(-45deg, #06B6D4, #3B82F6, #8B5CF6, #06B6D4) 1;
    border-style: dashed;
    opacity: 0.2;
    animation-duration: 20s;
    animation-direction: reverse;
}

.aura-ring-3 {
    width: 360px;
    height: 360px;
    border-image: linear-gradient(90deg, #8B5CF6, #F472B6, #3B82F6, #8B5CF6) 1;
    border-style: dotted;
    opacity: 0.15;
    animation-duration: 25s;
}

@keyframes auraRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Character Body */
.character-body {
    position: relative;
    width: 260px;
    height: 400px;
    z-index: 10;
    animation: characterFloat 4s ease-in-out infinite;
}

@keyframes characterFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hair */
.character-hair {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 60px;
    z-index: 5;
}

.hair-strand {
    position: absolute;
    background: linear-gradient(180deg, #1A1A2E 0%, #0F0F1A 100%);
    border-radius: 50%;
}

.hair-strand-1 {
    width: 40px;
    height: 50px;
    left: 10px;
    top: 10px;
    transform: rotate(-20deg);
}

.hair-strand-2 {
    width: 50px;
    height: 55px;
    left: 30px;
    top: 5px;
}

.hair-strand-3 {
    width: 40px;
    height: 50px;
    right: 10px;
    top: 10px;
    transform: rotate(20deg);
}

/* Enhanced Himachali Cap */
.himachali-cap {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 75px;
    z-index: 15;
}

.cap-shadow {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    filter: blur(5px);
}

.cap-base {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 105px;
    height: 55px;
    background: linear-gradient(135deg, #5D3A1A 0%, #8B4513 30%, #A0522D 60%, #6B3A0D 100%);
    border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
    box-shadow:
        inset 5px 5px 15px rgba(255, 255, 255, 0.1),
        inset -5px -5px 15px rgba(0, 0, 0, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.5);
}

.cap-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 30px;
    background: linear-gradient(180deg, #A0522D 0%, #8B4513 100%);
    border-radius: 50% 50% 30% 30%;
}

.cap-flap {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 125px;
    height: 38px;
    background: linear-gradient(90deg,
        #1E7B34 0%,
        #228B22 15%,
        #FFD700 30%,
        #FF6B35 45%,
        #E63946 55%,
        #FFD700 70%,
        #228B22 85%,
        #1E7B34 100%
    );
    border-radius: 10px 10px 18px 18px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 2px 5px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.flap-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 8px,
        rgba(255, 255, 255, 0.1) 8px,
        rgba(255, 255, 255, 0.1) 10px
    );
}

.cap-border {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cap-flower {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    z-index: 20;
    animation: flowerSpin 8s linear infinite;
}

@keyframes flowerSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.flower-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.flower-petal {
    position: absolute;
    width: 10px;
    height: 14px;
    background: linear-gradient(180deg, #FF1493 0%, #FF69B4 50%, #FF1493 100%);
    border-radius: 50% 50% 50% 50%;
    top: 50%;
    left: 50%;
    transform-origin: center bottom;
    box-shadow: 0 0 5px rgba(255, 20, 147, 0.5);
}

.flower-petal:nth-child(2) { transform: translate(-50%, -100%) rotate(0deg); }
.flower-petal:nth-child(3) { transform: translate(-50%, -100%) rotate(72deg); }
.flower-petal:nth-child(4) { transform: translate(-50%, -100%) rotate(144deg); }
.flower-petal:nth-child(5) { transform: translate(-50%, -100%) rotate(216deg); }
.flower-petal:nth-child(6) { transform: translate(-50%, -100%) rotate(288deg); }

.cap-feather {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 8px;
    height: 35px;
    background: linear-gradient(180deg, #2DD4BF 0%, #14B8A6 50%, #0D9488 100%);
    border-radius: 50% 50% 20% 20%;
    transform: rotate(15deg);
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.5);
    animation: featherSway 3s ease-in-out infinite;
}

@keyframes featherSway {
    0%, 100% { transform: rotate(15deg); }
    50% { transform: rotate(20deg); }
}

.cap-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: capGlow 2s ease-in-out infinite;
}

@keyframes capGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Enhanced Face */
.character-face {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 125px;
}

.face-shadow {
    position: absolute;
    width: 95px;
    height: 120px;
    left: 50%;
    top: 5px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 45% 45% 42% 42% / 50% 50% 45% 45%;
    filter: blur(8px);
}

.face-shape {
    position: absolute;
    width: 90px;
    height: 115px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #E8C4A0 0%, #D4A574 30%, #C4956A 70%, #B8865A 100%);
    border-radius: 45% 45% 42% 42% / 50% 50% 45% 45%;
    box-shadow:
        inset 8px 0 20px rgba(255, 255, 255, 0.1),
        inset -8px 0 20px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.4);
}

.face-highlight {
    position: absolute;
    width: 25px;
    height: 40px;
    left: 25px;
    top: 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    border-radius: 50%;
}

.eyebrow {
    position: absolute;
    width: 24px;
    height: 5px;
    background: linear-gradient(90deg, #3D2914 0%, #2A1A0A 100%);
    border-radius: 3px;
    top: 32px;
}

.eyebrow-left {
    left: 15px;
    transform: rotate(-8deg);
}

.eyebrow-right {
    right: 15px;
    transform: rotate(8deg);
}

.eye {
    position: absolute;
    width: 22px;
    height: 22px;
    top: 42px;
    overflow: hidden;
}

.eye-left { left: 16px; }
.eye-right { right: 16px; }

.eye-white {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
    border-radius: 50%;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15);
}

.iris {
    position: absolute;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 30% 30%, #5D4E37 0%, #3D2914 50%, #1A0F05 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: eyeLook 5s ease-in-out infinite;
}

@keyframes eyeLook {
    0%, 100% { transform: translate(-50%, -50%); }
    20% { transform: translate(-30%, -50%); }
    40% { transform: translate(-50%, -40%); }
    60% { transform: translate(-70%, -50%); }
    80% { transform: translate(-50%, -60%); }
}

.pupil {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #000000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.eye-shine {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #FFFFFF;
    border-radius: 50%;
    top: 30%;
    left: 60%;
    animation: eyeShine 2s ease-in-out infinite;
}

@keyframes eyeShine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.nose {
    position: absolute;
    width: 14px;
    height: 25px;
    left: 50%;
    transform: translateX(-50%);
    top: 55px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.08) 30%,
        rgba(0, 0, 0, 0.05) 50%,
        transparent 100%
    );
    border-radius: 30% 30% 50% 50%;
}

.nose-highlight {
    position: absolute;
    width: 6px;
    height: 8px;
    left: 48%;
    top: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.mouth.singing {
    position: absolute;
    width: 30px;
    height: 20px;
    left: 50%;
    transform: translateX(-50%);
    top: 82px;
    background: linear-gradient(180deg, #8B4513 0%, #5D2E0C 100%);
    border-radius: 30% 30% 50% 50%;
    overflow: hidden;
    animation: mouthSing 0.5s ease-in-out infinite;
}

@keyframes mouthSing {
    0%, 100% { height: 20px; }
    50% { height: 25px; }
}

.teeth {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 6px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
    border-radius: 0 0 3px 3px;
}

.cheek {
    position: absolute;
    width: 18px;
    height: 12px;
    background: radial-gradient(ellipse, rgba(255, 150, 150, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    top: 70px;
}

.cheek-left { left: 8px; }
.cheek-right { right: 8px; }

.ear {
    position: absolute;
    width: 18px;
    height: 30px;
    background: linear-gradient(90deg, #C4956A 0%, #B8865A 50%, #A67650 100%);
    border-radius: 40% 40% 45% 45%;
    top: 48px;
    box-shadow: inset -2px 0 5px rgba(0, 0, 0, 0.2);
}

.ear-left {
    left: -8px;
    transform: rotate(-12deg);
}

.ear-right {
    right: -8px;
    transform: rotate(12deg);
}

.earring {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 12px;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    animation: earringSwing 2s ease-in-out infinite;
}

@keyframes earringSwing {
    0%, 100% { transform: translateX(-50%) rotate(-5deg); }
    50% { transform: translateX(-50%) rotate(5deg); }
}

.beard {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 25px;
    background: linear-gradient(180deg, rgba(26, 15, 5, 0.6) 0%, rgba(26, 15, 5, 0.3) 100%);
    border-radius: 0 0 50% 50%;
    filter: blur(1px);
}

/* Neck & Necklace */
.character-neck {
    position: absolute;
    top: 175px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 35px;
    z-index: 8;
}

.neck-base {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #B8865A 0%, #A67650 100%);
    border-radius: 30% 30% 50% 50%;
}

.necklace {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
}

.necklace-chain {
    position: absolute;
    width: 100%;
    height: 15px;
    border: 3px solid transparent;
    border-bottom-color: #FFD700;
    border-radius: 0 0 50% 50%;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.necklace-pendant {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 22px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.pendant-glow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: pendantGlow 1.5s ease-in-out infinite;
}

@keyframes pendantGlow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.3); }
}

/* Enhanced Kurta */
.character-kurta {
    position: absolute;
    top: 195px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 200px;
    z-index: 6;
}

.kurta-body {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 190px;
    background: linear-gradient(180deg,
        #F5E6D3 0%,
        #E8D5C0 20%,
        #DCC8B0 50%,
        #D0BC9F 80%,
        #C4AE8F 100%
    );
    border-radius: 15px 15px 30px 30px;
    box-shadow:
        inset 10px 0 30px rgba(255, 255, 255, 0.1),
        inset -10px 0 30px rgba(0, 0, 0, 0.1),
        0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.kurta-collar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: linear-gradient(180deg, #E8D5C0 0%, #DCC8B0 100%);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.kurta-fold {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    top: 30px;
}

.kurta-fold-1 { left: 40px; }
.kurta-fold-2 { right: 40px; }

.kurta-embroidery {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 140px;
}

.embroidery-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 120px;
    background: linear-gradient(180deg,
        #C9A227 0%,
        #FFD700 25%,
        #FFA500 50%,
        #FFD700 75%,
        #C9A227 100%
    );
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.embroidery-pattern {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 100px;
    background: repeating-linear-gradient(
        180deg,
        transparent 0px,
        transparent 15px,
        rgba(201, 162, 39, 0.3) 15px,
        rgba(201, 162, 39, 0.3) 20px
    );
}

.embroidery-gem {
    position: absolute;
    width: 10px;
    height: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #E63946 0%, #9B2226 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.6);
}

.embroidery-gem:nth-child(3) { top: 30px; }
.embroidery-gem:nth-child(4) { top: 70px; }
.embroidery-gem:nth-child(5) { top: 110px; }

.kurta-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg,
        #C9A227 0%,
        #FFD700 25%,
        #C9A227 50%,
        #FFD700 75%,
        #C9A227 100%
    );
    border-radius: 0 0 30px 30px;
}

.kurta-sleeve {
    position: absolute;
    width: 50px;
    height: 100px;
    background: linear-gradient(180deg, #F5E6D3 0%, #E8D5C0 50%, #DCC8B0 100%);
    top: 10px;
    border-radius: 15px 15px 20px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.kurta-sleeve-left {
    left: -20px;
    transform: rotate(25deg);
}

.kurta-sleeve-right {
    right: -20px;
    transform: rotate(-45deg) translateY(-30px);
}

.kurta-sleeve-right.raised {
    transform: rotate(-70deg) translateY(-60px) translateX(10px);
}

.sleeve-fold {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, #C9A227 0%, #FFD700 50%, #C9A227 100%);
    border-radius: 0 0 20px 20px;
}

/* Shawl */
.shawl {
    position: absolute;
    top: -10px;
    left: -30px;
    width: 60px;
    height: 180px;
    background: linear-gradient(180deg,
        #E63946 0%,
        #D62839 30%,
        #C81E2B 70%,
        #9B2226 100%
    );
    border-radius: 10px;
    transform: rotate(15deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 7;
}

.shawl-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 20px,
        rgba(255, 215, 0, 0.3) 20px,
        rgba(255, 215, 0, 0.3) 25px
    );
}

.shawl-fringe {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        #FFD700 0px,
        #FFD700 3px,
        transparent 3px,
        transparent 8px
    );
}

/* Arms */
.character-arm {
    position: absolute;
    width: 25px;
    height: 80px;
    background: linear-gradient(90deg, #C4956A 0%, #B8865A 50%, #A67650 100%);
    border-radius: 15px;
    top: 215px;
    z-index: 5;
}

.arm-left {
    left: 25px;
    transform: rotate(20deg);
}

.arm-right {
    right: 10px;
    transform: rotate(-60deg) translateY(-50px);
}

.arm-right.raised {
    transform: rotate(-75deg) translateY(-70px) translateX(20px);
}

/* Hand with Microphone */
.mic-hand {
    position: absolute;
    top: 90px;
    right: -15px;
    width: 35px;
    height: 40px;
    z-index: 16;
    transform: rotate(-20deg);
}

.hand-shape {
    position: absolute;
    width: 28px;
    height: 32px;
    background: linear-gradient(135deg, #D4A574 0%, #C4956A 50%, #B8865A 100%);
    border-radius: 8px 8px 12px 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.finger {
    position: absolute;
    background: linear-gradient(180deg, #D4A574 0%, #C4956A 100%);
    border-radius: 5px;
    top: -15px;
}

.finger-1 { width: 8px; height: 20px; left: 3px; transform: rotate(-10deg); }
.finger-2 { width: 8px; height: 22px; left: 10px; }
.finger-3 { width: 8px; height: 20px; left: 17px; transform: rotate(10deg); }

.thumb {
    position: absolute;
    width: 10px;
    height: 18px;
    background: linear-gradient(90deg, #D4A574 0%, #C4956A 100%);
    border-radius: 5px;
    left: -8px;
    top: 5px;
    transform: rotate(-30deg);
}

/* Epic Microphone */
.character-mic {
    position: absolute;
    top: 50px;
    right: -35px;
    width: 40px;
    height: 120px;
    z-index: 15;
    transform: rotate(-15deg);
    animation: micPulse 0.8s ease-in-out infinite;
}

@keyframes micPulse {
    0%, 100% { transform: rotate(-15deg) scale(1); }
    50% { transform: rotate(-15deg) scale(1.02); }
}

.mic-cable {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 50px;
    background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
    border-radius: 3px;
}

.mic-body {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 60px;
    background: linear-gradient(90deg, #5A5A5A 0%, #3A3A3A 30%, #2A2A2A 70%, #3A3A3A 100%);
    border-radius: 7px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.mic-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 55px;
    background: linear-gradient(135deg, #5A5A5A 0%, #3A3A3A 30%, #1A1A1A 70%, #2A2A2A 100%);
    border-radius: 50% 50% 45% 45%;
    box-shadow:
        inset 5px 5px 15px rgba(255, 255, 255, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.mic-grill {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 42px;
    background:
        repeating-linear-gradient(
            0deg,
            #4A4A4A 0px,
            #4A4A4A 2px,
            #2A2A2A 2px,
            #2A2A2A 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 3px,
            rgba(0, 0, 0, 0.3) 3px,
            rgba(0, 0, 0, 0.3) 4px
        );
    border-radius: 50% 50% 45% 45%;
}

.mic-reflection {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 8px;
    height: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    border-radius: 50%;
}

.mic-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 65px;
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 50% 50% 45% 45%;
    animation: micGlowRing 1.5s ease-in-out infinite;
}

@keyframes micGlowRing {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
    }
}

/* Musical Notes with Trails */
.character-notes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}

.note-trail {
    position: absolute;
    animation: noteTrailFloat 4s ease-out infinite;
}

.note-trail .char-note {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px currentColor);
}

.note-trail-1 {
    top: 15%;
    left: 8%;
    color: #60A5FA;
    animation-delay: 0s;
}

.note-trail-2 {
    top: 25%;
    right: 5%;
    color: #A78BFA;
    animation-delay: 0.8s;
}

.note-trail-3 {
    top: 40%;
    left: 3%;
    color: #34D399;
    animation-delay: 1.6s;
}

.note-trail-4 {
    top: 10%;
    right: 15%;
    color: #F472B6;
    animation-delay: 2.4s;
}

.note-trail-5 {
    top: 50%;
    right: 10%;
    color: #FBBF24;
    animation-delay: 3.2s;
}

@keyframes noteTrailFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translateY(-20px) translateX(10px) rotate(10deg) scale(1);
    }
    80% {
        opacity: 0.8;
        transform: translateY(-80px) translateX(-10px) rotate(-10deg) scale(1.2);
    }
    100% {
        transform: translateY(-120px) translateX(0) rotate(15deg) scale(0.8);
        opacity: 0;
    }
}

/* Voice Waves */
.voice-waves {
    position: absolute;
    top: 30%;
    left: 15%;
    width: 80px;
    height: 60px;
    z-index: 12;
    transform: rotate(-10deg);
}

.voice-wave {
    position: absolute;
    left: 0;
    top: 50%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transform-origin: left center;
    animation: voiceWaveAnim 0.6s ease-in-out infinite;
}

.vw-1 { width: 20px; animation-delay: 0s; }
.vw-2 { width: 35px; top: 40%; animation-delay: 0.1s; }
.vw-3 { width: 50px; animation-delay: 0.2s; }
.vw-4 { width: 35px; top: 60%; animation-delay: 0.3s; }
.vw-5 { width: 20px; top: 70%; animation-delay: 0.4s; }

@keyframes voiceWaveAnim {
    0%, 100% {
        transform: scaleX(0.5);
        opacity: 0.5;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Equalizer */
.equalizer {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 40px;
    z-index: 5;
}

.eq-bar {
    width: 6px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 3px;
    animation: eqBounce 0.8s ease-in-out infinite;
}

.eq-bar-1 { height: 15px; animation-delay: 0s; }
.eq-bar-2 { height: 25px; animation-delay: 0.1s; }
.eq-bar-3 { height: 35px; animation-delay: 0.2s; }
.eq-bar-4 { height: 40px; animation-delay: 0.3s; }
.eq-bar-5 { height: 35px; animation-delay: 0.4s; }
.eq-bar-6 { height: 25px; animation-delay: 0.5s; }
.eq-bar-7 { height: 15px; animation-delay: 0.6s; }

@keyframes eqBounce {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

/* Ground Reflection */
.ground-reflection {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    background: linear-gradient(180deg,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(59, 130, 246, 0.1) 30%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(10px);
    animation: reflectionPulse 3s ease-in-out infinite;
}

@keyframes reflectionPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scaleX(1.1); }
}

/* Character Label - Enhanced */
.character-label {
    position: absolute;
    bottom: 15px;
    font-family: var(--font-accent);
    font-size: 1.4rem;
    letter-spacing: 6px;
    color: var(--text-light);
    text-shadow:
        0 0 20px rgba(59, 130, 246, 0.8),
        0 0 40px rgba(59, 130, 246, 0.4),
        0 0 60px rgba(139, 92, 246, 0.3);
    animation: labelGlow 2s ease-in-out infinite;
    z-index: 30;
}

@keyframes labelGlow {
    0%, 100% {
        text-shadow:
            0 0 20px rgba(59, 130, 246, 0.8),
            0 0 40px rgba(59, 130, 246, 0.4);
    }
    50% {
        text-shadow:
            0 0 30px rgba(59, 130, 246, 1),
            0 0 60px rgba(139, 92, 246, 0.6),
            0 0 80px rgba(6, 182, 212, 0.4);
    }
}

/* Responsive adjustments for epic character */
@media (max-width: 992px) {
    .character-body {
        transform: scale(0.8);
    }

    .spotlight {
        display: none;
    }

    .aura-ring {
        display: none;
    }

    .particle {
        width: 3px !important;
        height: 3px !important;
    }
}

@media (max-width: 576px) {
    .character-body {
        transform: scale(0.65);
    }

    .character-label {
        font-size: 1.1rem;
        letter-spacing: 4px;
        bottom: 10px;
    }

    .equalizer {
        bottom: 40px;
    }

    .eq-bar {
        width: 4px;
    }

    .voice-waves,
    .particles-container {
        display: none;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }

    .title-line {
        font-size: 5.5rem;
    }

    .title-line:nth-child(1) {
        font-size: 6rem;
    }

    .hero-stats {
        gap: 30px;
        padding: 18px 30px;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-title {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        order: 1;
    }

    .hero-image-wrapper {
        width: 300px;
        height: 380px;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 15px 25px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        max-width: none;
        justify-self: stretch;
    }

    /* Center the 5th item */
    .services-grid .service-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 500px;
        justify-self: center;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .videos-showcase {
        grid-template-columns: 1fr;
    }

    .video-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-text {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .title-line {
        font-size: 3.5rem;
        filter: drop-shadow(2px 2px 0px var(--primary))
                drop-shadow(4px 4px 0px var(--secondary))
                drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
    }

    .title-line:nth-child(1) {
        font-size: 4rem;
    }

    .hero-roles {
        font-size: 1.3rem;
    }

    .hero-stats {
        bottom: 30px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card:nth-child(5) {
        max-width: none;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 15px;
    }

    .date-day, .date-month, .date-year {
        display: inline;
    }

    .event-content {
        flex-direction: column;
    }

    .event-image {
        display: none;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .btn-submit {
        grid-column: span 1;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    img.footer-logo {
        margin: 0 auto;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .video-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title-line {
        font-size: 2.5rem;
        filter: drop-shadow(2px 2px 0px var(--primary))
                drop-shadow(3px 3px 0px var(--secondary))
                drop-shadow(0 0 15px rgba(59, 130, 246, 0.3));
    }

    .title-line:nth-child(1) {
        font-size: 3rem;
    }

    .hero-title {
        gap: 3px;
    }

    .hero-image-wrapper {
        width: 250px;
        height: 320px;
    }

    .hero-stats {
        bottom: 15px;
        flex-direction: row;
        gap: 12px;
        padding: 12px 15px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .portfolio-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .about-skills {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden {
    display: none !important;
}

.visible {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Animation Classes for GSAP */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
}

/* ============================================
   THEME SECTIONS
   ============================================ */

/* ============================================
   Sand/Desert Theme (Services, Portfolio)
   ============================================ */
.services,
.portfolio {
    background: var(--sand-bg);
    position: relative;
}

.services::before,
.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(201, 162, 39, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.services .section-subtitle,
.portfolio .section-subtitle {
    color: var(--sand-secondary);
}

.services .section-title,
.portfolio .section-title {
    color: var(--text-white);
}

.services .title-decoration .iconify,
.portfolio .title-decoration .iconify {
    color: var(--sand-primary);
}

/* Sand Theme - Service Cards */
.services .service-card {
    background: var(--sand-card);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.services .service-card:hover {
    background: var(--sand-card-hover);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: var(--shadow-glow-sand);
}

.services .service-icon {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(201, 162, 39, 0.2) 100%);
    color: var(--sand-primary);
}

.services .service-card:hover .service-icon {
    background: var(--gradient-sand);
    color: var(--text-white);
}

.services .service-title {
    color: var(--text-white);
}

.services .service-description {
    color: var(--text-muted);
}

/* Sand Theme - Portfolio */
.portfolio .filter-btn {
    background: var(--sand-card);
    border: 1px solid rgba(212, 165, 116, 0.2);
    color: var(--text-muted);
}

.portfolio .filter-btn:hover,
.portfolio .filter-btn.active {
    background: var(--gradient-sand);
    border-color: transparent;
    color: var(--text-white);
}

.portfolio .portfolio-item {
    background: var(--sand-card);
}

.portfolio .portfolio-overlay {
    background: linear-gradient(to top, rgba(26, 21, 13, 0.95) 0%, rgba(26, 21, 13, 0.7) 50%, transparent 100%);
}

.portfolio .portfolio-category {
    color: var(--sand-secondary);
}

.portfolio .portfolio-link {
    background: var(--gradient-sand);
}

/* ============================================
   Lava/Inner Crust Theme (Videos, Events, Contact, Newsletter)
   ============================================ */
.videos,
.events,
.contact,
.newsletter {
    background: var(--lava-bg);
    position: relative;
}

.videos::before,
.events::before,
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.videos .section-subtitle,
.events .section-subtitle,
.contact .section-subtitle {
    color: var(--lava-secondary);
}

.videos .section-title,
.events .section-title,
.contact .section-title {
    color: var(--text-white);
}

.videos .title-decoration .iconify,
.events .title-decoration .iconify,
.contact .title-decoration .iconify {
    color: var(--lava-primary);
}

/* Lava Theme - Video Section */
.videos .video-main {
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.videos .video-main:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: var(--shadow-glow-lava);
}

.videos .play-btn {
    background: var(--gradient-lava);
}

.videos .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.5);
}

.videos .video-item {
    background: var(--lava-card);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.videos .video-item:hover {
    background: var(--lava-card-hover);
    border-color: rgba(239, 68, 68, 0.3);
}

.videos .video-item-title {
    color: var(--text-white);
}

.videos .video-item-meta {
    color: var(--lava-secondary);
}

/* Lava Theme - Events Section */
.events .coming-soon-content {
    background: var(--lava-card);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.events .coming-soon-icon {
    color: var(--lava-primary);
}

.events .coming-soon-icon .iconify {
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.5));
}

.events .coming-soon-title {
    background: var(--gradient-lava);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Lava Theme - Contact Section */
.contact .contact-info-card {
    background: var(--lava-card);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.contact .contact-info-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: var(--shadow-glow-lava);
}

.contact .info-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    color: var(--lava-primary);
}

.contact .contact-form-wrapper {
    background: var(--lava-card);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.contact .form-group input,
.contact .form-group textarea,
.contact .form-group select {
    background: var(--lava-bg);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--text-white);
}

.contact .form-group select option {
    background: var(--lava-card);
    color: var(--text-white);
}

.contact .form-group input:focus,
.contact .form-group textarea:focus,
.contact .form-group select:focus {
    border-color: var(--lava-primary);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact .contact-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    color: var(--lava-primary);
}

.contact .social-btn {
    background: var(--lava-card);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.contact .social-btn:hover {
    background: var(--gradient-lava);
    border-color: transparent;
}

.contact .btn-submit {
    background: var(--gradient-lava);
}

.contact .btn-submit:hover {
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

/* Lava Theme - Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--lava-bg) 0%, var(--lava-bg-light) 100%);
    border-top: 1px solid rgba(239, 68, 68, 0.1);
    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

.newsletter .newsletter-icon {
    color: var(--lava-primary);
}

.newsletter .newsletter-form input {
    background: var(--lava-card);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.newsletter .newsletter-form input:focus {
    border-color: var(--lava-primary);
}

.newsletter .newsletter-form button {
    background: var(--gradient-lava);
}

/* Lava Theme - Footer */
.footer {
    background: linear-gradient(180deg, var(--lava-bg-light) 0%, #0D0505 100%);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lava-primary), var(--lava-secondary), transparent);
}

.footer .footer-tagline {
    color: var(--lava-secondary);
}

.footer .footer-links h4,
.footer .footer-contact h4 {
    color: var(--text-white);
}

.footer .footer-links h4::after,
.footer .footer-contact h4::after {
    background: var(--gradient-lava);
}

.footer .footer-links a:hover,
.footer .footer-contact a:hover {
    color: var(--lava-primary);
}

.footer .footer-social a {
    background: var(--lava-card);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.footer .footer-social a:hover {
    background: var(--gradient-lava);
    border-color: transparent;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(239, 68, 68, 0.1);
}

.footer .footer-credit-link {
    color: var(--lava-primary);
}

.footer .footer-credit-link:hover {
    color: var(--lava-secondary);
}

/* Back to Top Button - Lava Theme */
.back-to-top {
    background: var(--gradient-lava);
}

.back-to-top:hover {
    box-shadow: var(--shadow-glow-lava);
}

/* Theme Transition Gradients */
.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--sand-bg));
    pointer-events: none;
}

.portfolio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--lava-bg));
    pointer-events: none;
}

/* Lava Theme Buttons in Lava Sections */
.videos .btn-primary,
.events .btn-primary,
.contact .btn-primary {
    background: var(--gradient-lava);
}

.videos .btn-primary:hover,
.events .btn-primary:hover,
.contact .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.videos .btn-outline,
.events .btn-outline,
.contact .btn-outline {
    border-color: var(--lava-primary);
    color: var(--lava-primary);
}

.videos .btn-outline:hover,
.events .btn-outline:hover,
.contact .btn-outline:hover {
    background: var(--lava-primary);
    color: var(--text-white);
}

/* Sand Theme Buttons */
.services .btn-primary,
.portfolio .btn-primary {
    background: var(--gradient-sand);
}

.services .btn-primary:hover,
.portfolio .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.services .btn-outline,
.portfolio .btn-outline {
    border-color: var(--sand-primary);
    color: var(--sand-primary);
}

.services .btn-outline:hover,
.portfolio .btn-outline:hover {
    background: var(--sand-primary);
    color: var(--text-white);
}

/* ============================================
   THEME GRAPHICS & DECORATIONS
   ============================================ */

/* ============================================
   Ocean/Sky Theme Graphics (Hero & About)
   ============================================ */

/* Floating Bubbles for Hero */
.hero .bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.4), rgba(6, 182, 212, 0.1));
    animation: floatBubble 8s ease-in-out infinite;
    pointer-events: none;
}

.hero .bubble-1 {
    width: 20px;
    height: 20px;
    left: 5%;
    bottom: 20%;
    animation-delay: 0s;
}

.hero .bubble-2 {
    width: 35px;
    height: 35px;
    left: 15%;
    bottom: 40%;
    animation-delay: 1s;
}

.hero .bubble-3 {
    width: 15px;
    height: 15px;
    right: 10%;
    bottom: 30%;
    animation-delay: 2s;
}

.hero .bubble-4 {
    width: 25px;
    height: 25px;
    right: 20%;
    bottom: 50%;
    animation-delay: 3s;
}

.hero .bubble-5 {
    width: 18px;
    height: 18px;
    left: 25%;
    bottom: 60%;
    animation-delay: 4s;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.9;
    }
}

/* ============================================
   3D Mountain Graphics (Hero & About)
   ============================================ */

/* Mountain Container */
.hero .mountains,
.about .mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: visible;
    pointer-events: none;
    perspective: 1500px;
    transform-style: preserve-3d;
}

/* Base Mountain Layer Styles */
.hero .mountain,
.about .mountain {
    position: absolute;
    bottom: 0;
    width: 100%;
    transform-style: preserve-3d;
}

/* Mountain Layer 1 - Far Background (lightest, most atmospheric) */
.hero .mountain-layer-1,
.about .mountain-layer-1 {
    height: 450px;
    background: linear-gradient(180deg,
        rgba(30, 58, 138, 0.25) 0%,
        rgba(30, 58, 138, 0.4) 50%,
        rgba(30, 58, 138, 0.5) 100%
    );
    clip-path: polygon(
        0% 100%,
        0% 50%,
        5% 42%,
        10% 32%,
        15% 38%,
        20% 22%,
        25% 28%,
        30% 15%,
        35% 20%,
        40% 10%,
        45% 18%,
        50% 5%,
        55% 12%,
        60% 20%,
        65% 8%,
        70% 15%,
        75% 25%,
        80% 18%,
        85% 30%,
        90% 22%,
        95% 35%,
        100% 28%,
        100% 100%
    );
    transform: translateZ(-150px) scale(1.15);
    opacity: 0.5;
    z-index: 1;
}

/* Mountain Layer 2 - Mid Background */
.hero .mountain-layer-2,
.about .mountain-layer-2 {
    height: 500px;
    background: linear-gradient(180deg,
        rgba(30, 58, 138, 0.4) 0%,
        rgba(59, 130, 246, 0.35) 40%,
        rgba(30, 58, 138, 0.55) 100%
    );
    clip-path: polygon(
        0% 100%,
        0% 55%,
        8% 40%,
        12% 45%,
        18% 28%,
        22% 35%,
        28% 18%,
        35% 25%,
        42% 12%,
        48% 22%,
        55% 15%,
        62% 22%,
        68% 8%,
        75% 18%,
        82% 30%,
        88% 22%,
        94% 38%,
        100% 32%,
        100% 100%
    );
    transform: translateZ(-100px) scale(1.1);
    opacity: 0.55;
    z-index: 2;
}

/* Mountain Layer 3 - Mid Foreground */
.hero .mountain-layer-3,
.about .mountain-layer-3 {
    height: 550px;
    background: linear-gradient(180deg,
        rgba(6, 182, 212, 0.25) 0%,
        rgba(30, 58, 138, 0.5) 30%,
        rgba(10, 10, 15, 0.75) 100%
    );
    clip-path: polygon(
        0% 100%,
        0% 45%,
        6% 35%,
        12% 42%,
        18% 25%,
        24% 32%,
        32% 15%,
        38% 22%,
        45% 8%,
        52% 18%,
        58% 12%,
        65% 25%,
        72% 15%,
        78% 28%,
        85% 20%,
        92% 32%,
        100% 25%,
        100% 100%
    );
    transform: translateZ(-50px) scale(1.05);
    opacity: 0.7;
    z-index: 3;
}

/* Mountain Layer 4 - Foreground (darkest, most detail) */
.hero .mountain-layer-4,
.about .mountain-layer-4 {
    height: 600px;
    background: linear-gradient(180deg,
        rgba(6, 182, 212, 0.15) 0%,
        rgba(10, 10, 15, 0.8) 25%,
        rgba(5, 5, 5, 0.95) 100%
    );
    clip-path: polygon(
        0% 100%,
        0% 50%,
        4% 42%,
        10% 48%,
        16% 32%,
        22% 40%,
        28% 25%,
        36% 35%,
        44% 18%,
        50% 28%,
        56% 20%,
        64% 32%,
        72% 22%,
        80% 35%,
        86% 28%,
        94% 42%,
        100% 38%,
        100% 100%
    );
    transform: translateZ(0px);
    opacity: 0.9;
    z-index: 4;
}

/* Snow Caps on Mountains */
.hero .mountain-snow,
.about .mountain-snow {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 580px;
    background: transparent;
    clip-path: polygon(
        28% 18%,
        30% 12%,
        32% 18%,
        42% 10%,
        45% 6%,
        48% 10%,
        65% 8%,
        68% 4%,
        71% 8%,
        30% 18%,
        31% 15%,
        50% 8%,
        51% 5%
    );
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(230, 243, 255, 0.7) 40%,
        transparent 100%
    );
    transform: translateZ(-45px) scale(1.045);
    z-index: 5;
    opacity: 0.8;
}

/* Mountain Glow Effect */
.hero .mountain-glow,
.about .mountain-glow {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 400px;
    background: radial-gradient(ellipse at center bottom,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(6, 182, 212, 0.15) 30%,
        transparent 70%
    );
    filter: blur(50px);
    z-index: 0;
    animation: mountainGlow 8s ease-in-out infinite;
}

@keyframes mountainGlow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.1); }
}

/* Mist/Fog Effect at Mountain Base */
.hero .mountain-mist,
.about .mountain-mist {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(10, 10, 15, 0.4) 30%,
        rgba(10, 10, 15, 0.8) 70%,
        rgba(10, 10, 15, 0.95) 100%
    );
    z-index: 6;
}

/* Animated Stars above mountains (for hero) */
.hero .mountain-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.hero .star-1 { top: 10%; left: 10%; animation-delay: 0s; }
.hero .star-2 { top: 15%; left: 25%; animation-delay: 0.5s; width: 3px; height: 3px; }
.hero .star-3 { top: 8%; left: 40%; animation-delay: 1s; }
.hero .star-4 { top: 20%; left: 55%; animation-delay: 1.5s; }
.hero .star-5 { top: 12%; left: 70%; animation-delay: 2s; width: 3px; height: 3px; }
.hero .star-6 { top: 18%; left: 85%; animation-delay: 2.5s; }
.hero .star-7 { top: 25%; left: 15%; animation-delay: 0.3s; }
.hero .star-8 { top: 22%; left: 35%; animation-delay: 0.8s; }
.hero .star-9 { top: 28%; left: 60%; animation-delay: 1.3s; width: 3px; height: 3px; }
.hero .star-10 { top: 30%; left: 80%; animation-delay: 1.8s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Moon for Hero Section */
.hero .moon {
    position: absolute;
    top: 10%;
    right: 12%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%,
        #FFFFFF 0%,
        #E6F3FF 50%,
        rgba(59, 130, 246, 0.3) 100%
    );
    border-radius: 50%;
    box-shadow:
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 80px rgba(59, 130, 246, 0.4),
        0 0 120px rgba(6, 182, 212, 0.3);
    z-index: 2;
    animation: moonGlow 6s ease-in-out infinite;
}

.hero .moon::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 18px;
    height: 18px;
    background: rgba(200, 200, 220, 0.3);
    border-radius: 50%;
}

.hero .moon::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 55%;
    width: 25px;
    height: 25px;
    background: rgba(200, 200, 220, 0.2);
    border-radius: 50%;
}

@keyframes moonGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(59, 130, 246, 0.3), 0 0 100px rgba(6, 182, 212, 0.2); }
    50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.7), 0 0 80px rgba(59, 130, 246, 0.4), 0 0 120px rgba(6, 182, 212, 0.3); }
}

/* Aurora Effect for About Section */
.about .aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(6, 182, 212, 0.05) 20%,
        rgba(59, 130, 246, 0.08) 40%,
        rgba(6, 182, 212, 0.05) 60%,
        transparent 100%
    );
    filter: blur(40px);
    animation: auroraMove 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes auroraMove {
    0%, 100% { transform: translateX(-5%) skewX(-5deg); opacity: 0.5; }
    50% { transform: translateX(5%) skewX(5deg); opacity: 0.8; }
}

/* Wave decoration for About section */
.about .ocean-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 1;
}

.about .ocean-wave::before,
.about .ocean-wave::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center bottom, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    transform: translateX(-50%);
}

.about .ocean-wave::after {
    animation: waveMove 6s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(-50%) scaleX(1); }
    50% { transform: translateX(-50%) scaleX(1.1); }
}

/* Water ripple effect */
.about .water-ripple {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.2);
    animation: rippleExpand 4s ease-out infinite;
    pointer-events: none;
}

.about .water-ripple::before,
.about .water-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.about .water-ripple::before {
    width: 100px;
    height: 100px;
    animation: rippleExpand 4s ease-out infinite 0.5s;
}

.about .water-ripple::after {
    width: 50px;
    height: 50px;
    animation: rippleExpand 4s ease-out infinite 1s;
}

@keyframes rippleExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* ============================================
   Sand/Desert Theme Graphics (Services & Portfolio)
   ============================================ */

/* Sand Particles */
.services .sand-particle,
.portfolio .sand-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--sand-primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: sandDrift 8s ease-in-out infinite;
    pointer-events: none;
}

.services .sand-particle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.services .sand-particle-2 { top: 35%; left: 25%; animation-delay: 1s; width: 3px; height: 3px; }
.services .sand-particle-3 { top: 25%; right: 15%; animation-delay: 2s; }
.services .sand-particle-4 { top: 50%; right: 25%; animation-delay: 3s; width: 5px; height: 5px; }
.services .sand-particle-5 { bottom: 30%; left: 20%; animation-delay: 4s; width: 3px; height: 3px; }
.services .sand-particle-6 { bottom: 40%; right: 10%; animation-delay: 5s; }

.portfolio .sand-particle-1 { top: 20%; right: 12%; animation-delay: 0.5s; }
.portfolio .sand-particle-2 { top: 40%; left: 8%; animation-delay: 1.5s; width: 3px; height: 3px; }
.portfolio .sand-particle-3 { top: 55%; right: 20%; animation-delay: 2.5s; }
.portfolio .sand-particle-4 { bottom: 35%; left: 15%; animation-delay: 3.5s; width: 5px; height: 5px; }
.portfolio .sand-particle-5 { bottom: 25%; right: 8%; animation-delay: 4.5s; width: 3px; height: 3px; }
.portfolio .sand-particle-6 { top: 30%; left: 30%; animation-delay: 5.5s; }

@keyframes sandDrift {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateX(30px) translateY(-10px);
        opacity: 0.6;
    }
    100% {
        transform: translateX(60px) translateY(0);
        opacity: 0;
    }
}

/* Sand Dune Decoration */
.services .sand-dune {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background:
        radial-gradient(ellipse 80% 50% at 20% 100%, rgba(212, 165, 116, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 70% 100%, rgba(201, 162, 39, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 45% 100%, rgba(212, 165, 116, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio .sand-dune {
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 100%;
    height: 100px;
    background:
        radial-gradient(ellipse 70% 45% at 30% 100%, rgba(212, 165, 116, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse 55% 35% at 80% 100%, rgba(201, 162, 39, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

/* Desert Wind Effect */
.services .desert-wind,
.portfolio .desert-wind {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), rgba(201, 162, 39, 0.2), transparent);
    animation: windSweep 6s ease-in-out infinite;
    pointer-events: none;
}

.services .desert-wind-1 {
    top: 20%;
    left: -100px;
    animation-delay: 0s;
}

.services .desert-wind-2 {
    top: 45%;
    left: -100px;
    width: 150px;
    animation-delay: 2s;
}

.services .desert-wind-3 {
    top: 70%;
    left: -100px;
    width: 180px;
    animation-delay: 4s;
}

.portfolio .desert-wind-1 {
    top: 25%;
    left: -100px;
    animation-delay: 1s;
}

.portfolio .desert-wind-2 {
    top: 55%;
    left: -100px;
    width: 160px;
    animation-delay: 3s;
}

@keyframes windSweep {
    0% {
        transform: translateX(0) scaleX(0.5);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(calc(100vw + 200px)) scaleX(1.5);
        opacity: 0;
    }
}

/* Sand Glow */
.services .sand-glow,
.portfolio .sand-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: sandGlow 6s ease-in-out infinite;
}

.services .sand-glow-1 {
    width: 300px;
    height: 300px;
    background: rgba(212, 165, 116, 0.12);
    top: 10%;
    right: -100px;
}

.services .sand-glow-2 {
    width: 250px;
    height: 250px;
    background: rgba(201, 162, 39, 0.1);
    bottom: 20%;
    left: -80px;
    animation-delay: 3s;
}

.portfolio .sand-glow-1 {
    width: 280px;
    height: 280px;
    background: rgba(212, 165, 116, 0.1);
    top: 15%;
    left: -100px;
}

.portfolio .sand-glow-2 {
    width: 220px;
    height: 220px;
    background: rgba(201, 162, 39, 0.08);
    bottom: 25%;
    right: -70px;
    animation-delay: 3s;
}

@keyframes sandGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

/* Dust Motes */
.services .dust-mote,
.portfolio .dust-mote {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--sand-accent);
    border-radius: 50%;
    animation: dustFloat 10s linear infinite;
    pointer-events: none;
}

.services .dust-mote-1 { top: 30%; left: 40%; animation-delay: 0s; }
.services .dust-mote-2 { top: 60%; left: 60%; animation-delay: 2s; }
.services .dust-mote-3 { top: 45%; right: 30%; animation-delay: 4s; }
.portfolio .dust-mote-1 { top: 35%; right: 40%; animation-delay: 1s; }
.portfolio .dust-mote-2 { top: 65%; left: 50%; animation-delay: 3s; }
.portfolio .dust-mote-3 { top: 50%; left: 35%; animation-delay: 5s; }

@keyframes dustFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* 3D Sand Dunes Container */
.services .sand-dunes-3d,
.portfolio .sand-dunes-3d {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
    pointer-events: none;
    perspective: 1000px;
}

/* Layered Sand Dunes */
.services .dune,
.portfolio .dune {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.services .dune-layer-1,
.portfolio .dune-layer-1 {
    height: 200px;
    background: linear-gradient(180deg,
        rgba(212, 165, 116, 0.15) 0%,
        rgba(212, 165, 116, 0.25) 100%
    );
    clip-path: polygon(
        0% 100%,
        0% 70%,
        10% 60%,
        20% 65%,
        35% 50%,
        50% 55%,
        65% 45%,
        80% 55%,
        90% 48%,
        100% 55%,
        100% 100%
    );
    transform: translateZ(-80px) scale(1.08);
    opacity: 0.4;
    z-index: 1;
}

.services .dune-layer-2,
.portfolio .dune-layer-2 {
    height: 250px;
    background: linear-gradient(180deg,
        rgba(201, 162, 39, 0.2) 0%,
        rgba(212, 165, 116, 0.35) 100%
    );
    clip-path: polygon(
        0% 100%,
        0% 60%,
        15% 50%,
        30% 58%,
        45% 42%,
        55% 48%,
        70% 38%,
        85% 50%,
        100% 45%,
        100% 100%
    );
    transform: translateZ(-40px) scale(1.04);
    opacity: 0.5;
    z-index: 2;
}

.services .dune-layer-3,
.portfolio .dune-layer-3 {
    height: 300px;
    background: linear-gradient(180deg,
        rgba(139, 115, 85, 0.3) 0%,
        rgba(26, 21, 13, 0.9) 100%
    );
    clip-path: polygon(
        0% 100%,
        0% 55%,
        12% 48%,
        25% 55%,
        40% 40%,
        52% 50%,
        68% 42%,
        82% 52%,
        95% 45%,
        100% 50%,
        100% 100%
    );
    transform: translateZ(0px);
    opacity: 0.8;
    z-index: 3;
}

/* Desert Sun */
.services .desert-sun,
.portfolio .desert-sun {
    position: absolute;
    top: 8%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at center,
        rgba(244, 208, 63, 0.9) 0%,
        rgba(212, 165, 116, 0.6) 40%,
        rgba(201, 162, 39, 0.3) 60%,
        transparent 70%
    );
    border-radius: 50%;
    box-shadow:
        0 0 60px rgba(244, 208, 63, 0.5),
        0 0 120px rgba(212, 165, 116, 0.3),
        0 0 200px rgba(201, 162, 39, 0.2);
    z-index: 1;
    animation: desertSunPulse 8s ease-in-out infinite;
}

.services .desert-sun::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 220, 100, 1) 0%, rgba(244, 208, 63, 0.8) 100%);
    border-radius: 50%;
}

@keyframes desertSunPulse {
    0%, 100% {
        box-shadow: 0 0 60px rgba(244, 208, 63, 0.5), 0 0 120px rgba(212, 165, 116, 0.3), 0 0 200px rgba(201, 162, 39, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 80px rgba(244, 208, 63, 0.6), 0 0 150px rgba(212, 165, 116, 0.4), 0 0 250px rgba(201, 162, 39, 0.3);
        transform: scale(1.05);
    }
}

/* Sun Rays */
.services .sun-rays,
.portfolio .sun-rays {
    position: absolute;
    top: 8%;
    right: 10%;
    width: 120px;
    height: 120px;
    z-index: 0;
}

.services .sun-ray,
.portfolio .sun-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, rgba(244, 208, 63, 0.6), transparent);
    transform-origin: left center;
    animation: rayRotate 20s linear infinite;
}

.sun-ray:nth-child(1) { transform: rotate(0deg); }
.sun-ray:nth-child(2) { transform: rotate(45deg); }
.sun-ray:nth-child(3) { transform: rotate(90deg); }
.sun-ray:nth-child(4) { transform: rotate(135deg); }
.sun-ray:nth-child(5) { transform: rotate(180deg); }
.sun-ray:nth-child(6) { transform: rotate(225deg); }
.sun-ray:nth-child(7) { transform: rotate(270deg); }
.sun-ray:nth-child(8) { transform: rotate(315deg); }

@keyframes rayRotate {
    from { opacity: 0.3; }
    50% { opacity: 0.6; }
    to { opacity: 0.3; }
}

/* Cactus Silhouettes */
.services .cactus,
.portfolio .cactus {
    position: absolute;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.services .cactus-1 {
    left: 5%;
    width: 40px;
    height: 120px;
    background: linear-gradient(180deg, rgba(26, 21, 13, 0.7) 0%, rgba(26, 21, 13, 0.9) 100%);
    clip-path: polygon(
        40% 100%,
        40% 60%,
        20% 60%,
        20% 40%,
        40% 40%,
        40% 20%,
        35% 20%,
        35% 0%,
        65% 0%,
        65% 20%,
        60% 20%,
        60% 50%,
        80% 50%,
        80% 70%,
        60% 70%,
        60% 100%
    );
}

.services .cactus-2 {
    right: 8%;
    width: 30px;
    height: 80px;
    background: rgba(26, 21, 13, 0.8);
    clip-path: polygon(
        35% 100%,
        35% 30%,
        30% 30%,
        30% 0%,
        70% 0%,
        70% 30%,
        65% 30%,
        65% 100%
    );
}

.portfolio .cactus-1 {
    left: 3%;
    width: 35px;
    height: 100px;
    background: rgba(26, 21, 13, 0.75);
    clip-path: polygon(
        40% 100%,
        40% 50%,
        15% 50%,
        15% 30%,
        40% 30%,
        40% 15%,
        35% 15%,
        35% 0%,
        65% 0%,
        65% 15%,
        60% 15%,
        60% 100%
    );
}

/* Heat Shimmer Effect */
.services .heat-shimmer,
.portfolio .heat-shimmer {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(212, 165, 116, 0.03) 50%,
        transparent 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 4;
}

@keyframes shimmer {
    0%, 100% {
        transform: scaleY(1) translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: scaleY(1.1) translateY(-10px);
        opacity: 0.8;
    }
}

/* Sand Swirl/Tornado */
.services .sand-swirl,
.portfolio .sand-swirl {
    position: absolute;
    bottom: 20%;
    width: 60px;
    height: 150px;
    pointer-events: none;
    z-index: 6;
}

.services .sand-swirl {
    left: 15%;
}

.portfolio .sand-swirl {
    right: 15%;
}

.sand-swirl-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--sand-primary);
    border-radius: 50%;
    animation: swirlUp 4s ease-out infinite;
}

.sand-swirl-particle:nth-child(1) { left: 50%; animation-delay: 0s; }
.sand-swirl-particle:nth-child(2) { left: 30%; animation-delay: 0.3s; }
.sand-swirl-particle:nth-child(3) { left: 70%; animation-delay: 0.6s; }
.sand-swirl-particle:nth-child(4) { left: 40%; animation-delay: 0.9s; }
.sand-swirl-particle:nth-child(5) { left: 60%; animation-delay: 1.2s; }

@keyframes swirlUp {
    0% {
        bottom: 0;
        transform: translateX(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(20px) scale(0.8);
    }
    100% {
        bottom: 100%;
        transform: translateX(-20px) scale(0.3);
        opacity: 0;
    }
}

/* ============================================
   Lava/Inner Crust Theme Graphics
   ============================================ */

/* Lava Glow Effects */
.videos .lava-glow,
.events .lava-glow,
.contact .lava-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: lavaGlow 5s ease-in-out infinite;
}

.videos .lava-glow-1 {
    width: 300px;
    height: 300px;
    background: rgba(239, 68, 68, 0.15);
    top: 10%;
    left: -100px;
}

.videos .lava-glow-2 {
    width: 250px;
    height: 250px;
    background: rgba(249, 115, 22, 0.12);
    bottom: 20%;
    right: -80px;
    animation-delay: 2s;
}

.events .lava-glow-1 {
    width: 200px;
    height: 200px;
    background: rgba(239, 68, 68, 0.12);
    top: 20%;
    right: 10%;
}

.contact .lava-glow-1 {
    width: 350px;
    height: 350px;
    background: rgba(239, 68, 68, 0.1);
    bottom: -100px;
    left: -100px;
}

.contact .lava-glow-2 {
    width: 280px;
    height: 280px;
    background: rgba(249, 115, 22, 0.1);
    top: 10%;
    right: -80px;
    animation-delay: 2.5s;
}

@keyframes lavaGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* Ember Particles */
.videos .ember,
.events .ember,
.contact .ember {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--lava-accent);
    border-radius: 50%;
    animation: emberRise 4s ease-out infinite;
    pointer-events: none;
}

.videos .ember-1 { left: 10%; bottom: 10%; animation-delay: 0s; }
.videos .ember-2 { left: 30%; bottom: 5%; animation-delay: 0.5s; }
.videos .ember-3 { right: 20%; bottom: 15%; animation-delay: 1s; }
.videos .ember-4 { right: 35%; bottom: 8%; animation-delay: 1.5s; }
.videos .ember-5 { left: 50%; bottom: 12%; animation-delay: 2s; }

.events .ember-1 { left: 15%; bottom: 20%; animation-delay: 0.3s; }
.events .ember-2 { right: 25%; bottom: 15%; animation-delay: 0.8s; }
.events .ember-3 { left: 40%; bottom: 10%; animation-delay: 1.3s; }

.contact .ember-1 { left: 5%; bottom: 30%; animation-delay: 0s; }
.contact .ember-2 { left: 20%; bottom: 20%; animation-delay: 0.7s; }
.contact .ember-3 { right: 15%; bottom: 25%; animation-delay: 1.4s; }
.contact .ember-4 { right: 30%; bottom: 15%; animation-delay: 2.1s; }

@keyframes emberRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-150px) scale(0);
        opacity: 0;
    }
}

/* Crack Lines */
.videos .crack-line,
.contact .crack-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lava-primary), var(--lava-secondary), transparent);
    opacity: 0.3;
    pointer-events: none;
}

.videos .crack-line-1 {
    width: 150px;
    bottom: 30%;
    left: 5%;
    transform: rotate(-15deg);
}

.videos .crack-line-2 {
    width: 100px;
    top: 40%;
    right: 10%;
    transform: rotate(20deg);
}

.contact .crack-line-1 {
    width: 200px;
    bottom: 40%;
    right: 5%;
    transform: rotate(-10deg);
}

.contact .crack-line-2 {
    width: 120px;
    top: 30%;
    left: 8%;
    transform: rotate(15deg);
}

/* Magma Pool Effect */
.footer .magma-pool {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--lava-primary) 20%,
        var(--lava-secondary) 40%,
        var(--lava-accent) 50%,
        var(--lava-secondary) 60%,
        var(--lava-primary) 80%,
        transparent 100%
    );
    filter: blur(2px);
    animation: magmaPulse 3s ease-in-out infinite;
}

@keyframes magmaPulse {
    0%, 100% { opacity: 0.6; filter: blur(2px); }
    50% { opacity: 1; filter: blur(4px); }
}

/* Heat Distortion Lines */
.videos .heat-wave,
.events .heat-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top,
        rgba(239, 68, 68, 0.05) 0%,
        transparent 100%
    );
    pointer-events: none;
}

/* Volcanic Rock Texture Overlay */
.newsletter .volcanic-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 30%, rgba(249, 115, 22, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(252, 211, 77, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

/* Volcanic Mountain Silhouette */
.videos .volcano,
.contact .volcano {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60vh;
    min-height: 350px;
    overflow: hidden;
    pointer-events: none;
    perspective: 1000px;
}

.volcano-layer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.videos .volcano-layer-1,
.contact .volcano-layer-1 {
    height: 300px;
    background: linear-gradient(180deg,
        rgba(153, 27, 27, 0.3) 0%,
        rgba(26, 10, 10, 0.6) 100%
    );
    clip-path: polygon(
        0% 100%,
        0% 70%,
        10% 55%,
        20% 60%,
        30% 40%,
        40% 45%,
        45% 25%,
        50% 20%,
        55% 25%,
        60% 45%,
        70% 40%,
        80% 55%,
        90% 50%,
        100% 60%,
        100% 100%
    );
    transform: translateZ(-60px) scale(1.06);
    opacity: 0.5;
    z-index: 1;
}

.videos .volcano-layer-2,
.contact .volcano-layer-2 {
    height: 380px;
    background: linear-gradient(180deg,
        rgba(239, 68, 68, 0.2) 0%,
        rgba(26, 10, 10, 0.85) 60%,
        rgba(13, 5, 5, 0.95) 100%
    );
    clip-path: polygon(
        0% 100%,
        0% 65%,
        8% 55%,
        18% 58%,
        28% 42%,
        38% 48%,
        44% 28%,
        48% 18%,
        52% 18%,
        56% 28%,
        62% 48%,
        72% 42%,
        82% 55%,
        92% 50%,
        100% 58%,
        100% 100%
    );
    transform: translateZ(0px);
    opacity: 0.85;
    z-index: 2;
}

/* Lava Flow from Volcano */
.videos .lava-flow,
.contact .lava-flow {
    position: absolute;
    bottom: 0;
    left: 48%;
    width: 4%;
    height: 300px;
    background: linear-gradient(180deg,
        rgba(252, 211, 77, 0.9) 0%,
        rgba(249, 115, 22, 0.8) 30%,
        rgba(239, 68, 68, 0.6) 60%,
        rgba(153, 27, 27, 0.4) 100%
    );
    clip-path: polygon(
        30% 0%,
        70% 0%,
        80% 20%,
        60% 35%,
        75% 50%,
        55% 65%,
        70% 80%,
        100% 100%,
        0% 100%,
        30% 80%,
        45% 65%,
        25% 50%,
        40% 35%,
        20% 20%
    );
    animation: lavaFlowPulse 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes lavaFlowPulse {
    0%, 100% {
        opacity: 0.8;
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        filter: brightness(1.3);
    }
}

/* Volcanic Smoke */
.videos .volcanic-smoke,
.contact .volcanic-smoke {
    position: absolute;
    top: 15%;
    left: 48%;
    width: 100px;
    height: 200px;
    pointer-events: none;
    z-index: 4;
}

.smoke-particle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(100, 100, 100, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: smokeRise 5s ease-out infinite;
}

.smoke-particle:nth-child(1) { animation-delay: 0s; }
.smoke-particle:nth-child(2) { animation-delay: 1s; left: 30%; }
.smoke-particle:nth-child(3) { animation-delay: 2s; left: 70%; }
.smoke-particle:nth-child(4) { animation-delay: 3s; }
.smoke-particle:nth-child(5) { animation-delay: 4s; left: 40%; }

@keyframes smokeRise {
    0% {
        transform: translateY(0) translateX(0) scale(0.5);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-100px) translateX(30px) scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-200px) translateX(-20px) scale(2.5);
        opacity: 0;
    }
}

/* Molten Lava Pools */
.videos .lava-pool,
.events .lava-pool,
.contact .lava-pool {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(252, 211, 77, 0.8) 0%,
        rgba(249, 115, 22, 0.6) 40%,
        rgba(239, 68, 68, 0.4) 70%,
        transparent 100%
    );
    animation: lavaPoolBubble 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.videos .lava-pool-1 {
    width: 80px;
    height: 40px;
    bottom: 5%;
    left: 10%;
}

.videos .lava-pool-2 {
    width: 60px;
    height: 30px;
    bottom: 8%;
    right: 15%;
    animation-delay: 1.5s;
}

.events .lava-pool-1 {
    width: 70px;
    height: 35px;
    bottom: 10%;
    left: 20%;
}

.contact .lava-pool-1 {
    width: 90px;
    height: 45px;
    bottom: 5%;
    left: 5%;
}

.contact .lava-pool-2 {
    width: 50px;
    height: 25px;
    bottom: 12%;
    right: 10%;
    animation-delay: 2s;
}

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

/* Fire Sparks */
.videos .fire-spark,
.events .fire-spark,
.contact .fire-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--lava-accent);
    border-radius: 50%;
    animation: sparkFly 2s ease-out infinite;
    pointer-events: none;
    z-index: 5;
}

.videos .fire-spark-1 { bottom: 10%; left: 48%; animation-delay: 0s; }
.videos .fire-spark-2 { bottom: 15%; left: 50%; animation-delay: 0.4s; }
.videos .fire-spark-3 { bottom: 12%; left: 52%; animation-delay: 0.8s; }
.videos .fire-spark-4 { bottom: 8%; left: 49%; animation-delay: 1.2s; }
.videos .fire-spark-5 { bottom: 18%; left: 51%; animation-delay: 1.6s; }

.events .fire-spark-1 { bottom: 15%; left: 20%; animation-delay: 0.2s; }
.events .fire-spark-2 { bottom: 20%; right: 25%; animation-delay: 0.7s; }
.events .fire-spark-3 { bottom: 18%; left: 40%; animation-delay: 1.1s; }

.contact .fire-spark-1 { bottom: 8%; left: 6%; animation-delay: 0.1s; }
.contact .fire-spark-2 { bottom: 15%; right: 12%; animation-delay: 0.5s; }
.contact .fire-spark-3 { bottom: 10%; left: 48%; animation-delay: 0.9s; }
.contact .fire-spark-4 { bottom: 12%; left: 50%; animation-delay: 1.3s; }

@keyframes sparkFly {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-80px) translateX(var(--spark-x, 20px)) scale(0);
        opacity: 0;
    }
}

.fire-spark-1 { --spark-x: -15px; }
.fire-spark-2 { --spark-x: 25px; }
.fire-spark-3 { --spark-x: -30px; }
.fire-spark-4 { --spark-x: 10px; }
.fire-spark-5 { --spark-x: -20px; }

/* Volcanic Rocks */
.videos .volcanic-rock,
.contact .volcanic-rock {
    position: absolute;
    background: linear-gradient(135deg, #2E1313 0%, #1A0A0A 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    pointer-events: none;
    z-index: 1;
}

.videos .volcanic-rock-1 {
    width: 60px;
    height: 40px;
    bottom: 2%;
    left: 5%;
    transform: rotate(-15deg);
}

.videos .volcanic-rock-2 {
    width: 45px;
    height: 30px;
    bottom: 3%;
    right: 8%;
    transform: rotate(20deg);
    border-radius: 50% 50% 40% 60% / 40% 60% 40% 60%;
}

.contact .volcanic-rock-1 {
    width: 70px;
    height: 45px;
    bottom: 1%;
    left: 15%;
    transform: rotate(-10deg);
}

.contact .volcanic-rock-2 {
    width: 50px;
    height: 35px;
    bottom: 2%;
    right: 20%;
    transform: rotate(25deg);
}

/* Lava Cracks Glow */
.videos .lava-crack,
.events .lava-crack,
.contact .lava-crack {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        rgba(252, 211, 77, 0.8),
        rgba(249, 115, 22, 0.9),
        rgba(252, 211, 77, 0.8),
        transparent
    );
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5), 0 0 20px rgba(239, 68, 68, 0.3);
    animation: crackGlow 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.videos .lava-crack-1 {
    width: 100px;
    bottom: 15%;
    left: 8%;
    transform: rotate(-5deg);
}

.videos .lava-crack-2 {
    width: 80px;
    bottom: 20%;
    right: 12%;
    transform: rotate(8deg);
    animation-delay: 1s;
}

.events .lava-crack-1 {
    width: 120px;
    bottom: 25%;
    left: 15%;
    transform: rotate(-8deg);
}

.contact .lava-crack-1 {
    width: 150px;
    bottom: 18%;
    left: 25%;
    transform: rotate(3deg);
}

.contact .lava-crack-2 {
    width: 90px;
    bottom: 22%;
    right: 18%;
    transform: rotate(-12deg);
    animation-delay: 0.7s;
}

@keyframes crackGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 10px rgba(249, 115, 22, 0.5), 0 0 20px rgba(239, 68, 68, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.8), 0 0 40px rgba(239, 68, 68, 0.5);
    }
}
