/* Import modern, clean Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

/* CSS Custom Properties / Design Tokens */
:root {
    --bg-main: #ffffff;              /* Pure brilliant white background */
    --bg-darker: #f9f8fc;            /* Extremely light clean violet wash for contrast sections */
    --bg-card: #ffffff;              /* Pure white opaque cards for clean, bright blocks */
    --bg-card-hover: #ffffff;
    --border-color: rgba(123, 44, 191, 0.08); /* Minimalist clean violet border */
    
    /* Neon Accents adapted for light mode */
    --accent-primary: #7b2cbf;       /* Vibrant violet, dark enough for readability */
    --accent-primary-glow: rgba(123, 44, 191, 0.15);
    
    --accent-secondary: #0096c7;     /* Clean sky blue/cyan */
    --accent-secondary-glow: rgba(0, 150, 199, 0.15);
    
    --accent-highlight: #d90429;     /* Deep coral/hot pink for contrast */
    --accent-highlight-glow: rgba(217, 4, 41, 0.15);
    
    --text-main: #1f1a30;            /* Dark slate purple for main text readability */
    --text-muted: #6e6488;           /* Medium slate purple for secondary text */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

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

/* Background Gradients & Glows (Visual Wow Factor) */
.ambient-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.18) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.ambient-glow-2 {
    position: absolute;
    top: 30%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 150, 199, 0.12) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title span {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px var(--accent-primary-glow);
}

/* Navigation Menu */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-main);
    text-shadow: 0 0 10px var(--accent-primary-glow);
}

.logo span {
    color: var(--accent-secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    color: var(--text-muted);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: var(--transition-smooth);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-highlight) 100%);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--accent-primary-glow);
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-primary-glow), 0 0 10px var(--accent-highlight-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 0%, var(--bg-main) 90%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulseGlow 2s infinite;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px var(--accent-primary-glow));
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-highlight) 100%);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-primary-glow), 0 8px 25px rgba(123, 44, 191, 0.1);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-primary-glow), 0 15px 35px rgba(123, 44, 191, 0.2), 0 0 15px var(--accent-highlight-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-secondary);
    color: var(--accent-secondary);
}

.btn-outline:hover {
    background: var(--accent-secondary);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-secondary-glow);
    transform: translateY(-2px);
}

/* Glass Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(123, 44, 191, 0.02), 0 20px 40px rgba(123, 44, 191, 0.04), 0 30px 60px rgba(123, 44, 191, 0.06);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 0 15px 30px rgba(123, 44, 191, 0.06), 0 30px 60px rgba(123, 44, 191, 0.1), 0 45px 90px rgba(123, 44, 191, 0.14), 0 0 20px var(--accent-primary-glow);
}

/* Feature/Service specific style */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
}

.icon-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    opacity: 0.2;
    z-index: -1;
}

.icon-purple {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #7b2cbf 100%);
    box-shadow: 0 0 15px var(--accent-primary-glow);
}
.icon-purple::after { background: var(--accent-primary); }

.icon-cyan {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, #00bbf9 100%);
    box-shadow: 0 0 15px var(--accent-secondary-glow);
}
.icon-cyan::after { background: var(--accent-secondary); }

.icon-pink {
    background: linear-gradient(135deg, var(--accent-highlight) 0%, #ff0055 100%);
    box-shadow: 0 0 15px var(--accent-highlight-glow);
}
.icon-pink::after { background: var(--accent-highlight); }

/* Showcase / Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 350px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.gallery-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-media {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(3, 2, 6, 0.95) 0%, rgba(3, 2, 6, 0.4) 60%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.gallery-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-secondary);
    margin-bottom: 8px;
}

.gallery-title {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: #ffffff;
}

.gallery-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--accent-secondary);
    background: rgba(0, 245, 212, 0.1);
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 212, 0.2);
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-text p, .info-text a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-text a:hover {
    color: var(--accent-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: var(--border-radius);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-primary-glow);
    background: #ffffff;
}

textarea.form-control {
    resize: none;
    height: 150px;
}

/* Footer & Legal (Crucial for Meta Verification) */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-btn:hover {
    color: #fff;
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-primary-glow);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--accent-secondary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

/* Legal Pages Styling (Privacy Policy, Terms of Service) */
.legal-content {
    max-width: 800px;
    margin: 120px auto 80px;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.legal-text h2 {
    font-size: 1.6rem;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.legal-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-text ul {
    list-style-type: none;
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text li {
    position: relative;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 15px;
}

.legal-text li::before {
    content: "•";
    color: var(--accent-secondary);
    position: absolute;
    left: 0;
}

/* Animations */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(157, 78, 221, 0.2);
    }
    50% {
        box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(157, 78, 221, 0.2);
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-darker);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
    
    .nav-cta {
        display: none; /* Can move inside navigation menu if needed */
    }
    
    .hero {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Floating Equalizer Widget styling */
.equalizer-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 35px rgba(123, 44, 191, 0.12), 0 0 15px rgba(255, 255, 255, 0.5);
    z-index: 1000;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.equalizer-widget::before {
    content: 'LIVE FX SPECTRA';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--accent-primary);
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: 0.8;
}

.eq-bar {
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, var(--accent-primary), var(--accent-secondary));
    border-radius: 3px;
    transform-origin: bottom;
    animation: equalize 1.2s ease-in-out infinite alternate;
}

/* Parallax background/footer equalizer soundwave */
.parallax-soundwave {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    margin-top: 50px;
    margin-bottom: -10px;
    opacity: 0.22;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wave-bar {
    width: 5px;
    background: linear-gradient(to top, var(--accent-primary), var(--accent-secondary));
    border-radius: 5px 5px 0 0;
    transform-origin: bottom;
    animation: wave-bounce 1.6s ease-in-out infinite alternate;
}

/* Equalizer Keyframe Animations */
@keyframes equalize {
    0% { transform: scaleY(0.15); }
    100% { transform: scaleY(1.0); }
}

@keyframes wave-bounce {
    0% { transform: scaleY(0.25); }
    100% { transform: scaleY(1.15); }
}
