:root {
    --primary: #8a2be2; /* Neon Purple */
    --secondary: #00d2ff; /* Electric Blue */
    --accent: #ff4500; /* Vibrant Orange */
    --accent-pink: #ff00ff; /* Pink */
    --bg-dark: #0a0a0c; /* Dark Premium Background */
    --bg-darker: #050507;
    --text-light: #f0f0f0;
    --text-dim: #a0a0a0;
    --glow-white: rgba(255, 255, 255, 0.8);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

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

/* --- REUSABLE UTILITIES --- */

.gradient-text {
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    color: white;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.5);
}

.btn-secondary {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-border);
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- ANIMATIONS --- */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- NAVBAR --- */

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

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
    font-size: 1.2rem;
}

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

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dim);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a i {
    font-size: 0.85rem;
    transition: var(--transition);
    color: var(--secondary);
    opacity: 0.7;
}

.nav-links a:hover i {
    transform: translateY(-2px);
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(0, 210, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
}

/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
}

.lang-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-dim);
    transition: var(--transition);
    cursor: pointer;
}

.lang-label.active {
    color: var(--secondary);
}

.lang-toggle-wrap {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.lang-toggle-wrap input {
    opacity: 0;
    width: 0;
    height: 0;
}

.lang-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--glass-border);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,0.05);
}

.lang-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

input:checked + .lang-slider {
    background-color: #4cd964;
}

input:checked + .lang-slider:before {
    transform: translateX(22px);
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* --- HERO SECTION --- */

.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(rgba(10, 10, 12, 0.7), rgba(10, 10, 12, 0.7)), url('images/bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    will-change: transform;
}

#heroParticles {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    will-change: transform, opacity;
}

.spotlight {
    position: absolute;
    top: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    animation: spotlightMove 20s infinite alternate ease-in-out;
}

.spotlight-1 { left: -10%; animation-delay: 0s; }
.spotlight-2 { right: -10%; background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%); animation-delay: -5s; }
.spotlight-3 { bottom: -20%; left: 30%; background: radial-gradient(circle, rgba(255, 69, 0, 0.05) 0%, transparent 70%); }

@keyframes spotlightMove {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20%, 10%) scale(1.2); }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.3;
    z-index: 0;
}

.glow-orb-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    background: var(--primary);
    animation: floatOrb 10s infinite alternate;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: 5%;
    background: var(--secondary);
    animation: floatOrb 15s infinite alternate-reverse;
}

/* --- HERO SOUNDWAVE --- */
.soundwave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    padding-bottom: 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 2;
}

.soundwave-line {
    width: 6px;
    height: 100px;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 10px;
    animation: soundwaveAnim 1s infinite alternate ease-in-out;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes soundwaveAnim {
    0% { height: 20px; opacity: 0.3; }
    100% { height: 150px; opacity: 1; }
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 30px) rotate(45deg); }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-badge {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 30px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 30px;
}

.hero-title-line {
    display: block;
}

.hero-title-gradient {
    color: transparent;
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 5s linear infinite;
}

.animated-word {
    display: inline-block;
    animation: gradientFlow 5s linear infinite;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.3));
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-dim);
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-subtitle .dot {
    color: var(--secondary);
    font-size: 1.8rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.8rem;
    z-index: 10;
}

.scroll-mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% { top: 8px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

.floating-note {
    position: absolute;
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.1;
    top: var(--y);
    left: var(--x);
    animation: floatNote 5s infinite ease-in-out alternate;
    animation-delay: var(--delay);
}

@keyframes floatNote {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px) rotate(20deg); }
}

/* --- SECTION HEADERS --- */

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(138, 43, 226, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 30px auto 0;
    border-radius: 10px;
}

/* --- ABOUT SECTION --- */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-text-block {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 30px;
    padding: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    transition: var(--transition);
}

.about-text-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: var(--secondary);
}

.about-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.about-text-block:hover .about-icon-box {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.4);
}

.about-text-block h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-light);
    letter-spacing: -0.01em;
    font-weight: 800;
}

.about-text-block p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
}

.about-visual {
    position: relative;
    padding: 40px;
}

.about-card-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.about-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
}

.about-feature-card span {
    font-weight: 700;
    font-size: 1.1rem;
}

.about-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    margin-top: 40px;
    justify-content: center;
}

.eq-bar {
    width: 12px;
    height: 100%;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 10px;
    animation: eqAnimation 1.5s infinite alternate ease-in-out;
    animation-delay: var(--delay);
}

@keyframes eqAnimation {
    0% { height: 20%; }
    100% { height: 100%; }
}

/* --- SERVICES SECTION --- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    filter: blur(100px);
    top: -50px;
    right: -50px;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-glow {
    opacity: 0.15;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

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

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 210, 255, 0.4));
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.service-tag {
    display: inline-block;
    padding: 6px 15px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    top: 30px;
    right: 30px;
}

.service-btn {
    margin-top: 10px;
    width: fit-content;
    padding: 14px 28px;
    font-size: 0.85rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border: none;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.service-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.5);
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
}

/* --- EXPERIENCE SECTION --- */

.process, .testimonials {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('images/475751432_626140803297350_2965212016522408310_n.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('images/bg4.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.experience {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('images/bg3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-visualizer {
    position: relative;
    height: 500px;
    background: var(--glass);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#audioVisualizer {
    width: 100%;
    height: 100%;
}

.visualizer-overlay {
    position: absolute;
    z-index: 5;
}

.vinyl-record {
    width: 250px;
    height: 250px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: rotateVinyl 10s linear infinite;
}

.vinyl-record::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vinyl-label {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

.vinyl-label::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--bg-darker);
    border-radius: 50%;
}

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

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.exp-feature {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    transition: var(--transition);
}

.exp-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: scale(1.02);
}

.exp-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.exp-feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.exp-feature-content p {
    color: var(--text-dim);
}

/* --- WHY US SECTION --- */

.why-us {
    position: relative;
    background: var(--bg-darker);
    overflow: hidden;
}

.why-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    perspective: 1000px;
}

.why-image-window {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 550px;
    border-radius: 40px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 
                inset 0 0 40px rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.why-image-window:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: var(--secondary);
    box-shadow: 0 60px 120px rgba(0, 210, 255, 0.15);
}

.why-image-window img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.window-glass {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 40%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30px;
    pointer-events: none;
    z-index: 2;
}

.window-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(150px);
    bottom: -150px;
    left: -150px;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 25px;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    background: rgba(0, 210, 255, 0.05);
    border-color: var(--secondary);
    transform: translateY(-10px);
}

.why-icon {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.why-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.3));
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-dim);
}

/* --- STATISTICS SECTION --- */

.stats {
    padding: 100px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.8;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* --- PROCESS SECTION --- */

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 45px;
    width: 4px;
    height: 100%;
    background: var(--glass);
    border-radius: 10px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    transition: height 0.5s ease;
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 60px;
}

.timeline-dot {
    position: absolute;
    left: 27px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border: 4px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.timeline-dot span {
    font-weight: 800;
    font-size: 1.1rem;
}

.timeline-item:hover .timeline-dot {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    transform: scale(1.2);
}

.timeline-content {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 25px;
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--glass-border);
}

.timeline-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-dim);
}

/* --- TESTIMONIALS --- */

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 60px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    text-align: center;
    position: relative;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.testimonial-author span {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.dot-btn.active {
    background: var(--secondary);
    width: 30px;
    border-radius: 10px;
}

/* --- FAQ --- */

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

.faq-item {
    margin-bottom: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 25px 35px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--secondary);
}

.faq-item:hover .faq-icon {
    background: var(--secondary);
    color: white;
}

.faq-answer {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    padding: 0 35px 30px;
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
}

/* --- CTA SECTION --- */

.cta {
    padding: 100px 0;
}

.cta-content {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 210, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 4rem;
    margin-bottom: 25px;
}

.cta-desc {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 50px;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

/* --- CONTACT SECTION --- */

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

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

.contact-info-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(10px);
    border-color: var(--secondary);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dim);
}

.contact-info-card a, .contact-info-card span {
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-social {
    margin-top: 20px;
}

.contact-social h3 {
    margin-bottom: 20px;
}

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

.social-links a {
    width: 55px;
    height: 55px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.contact-form {
    background: var(--glass);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 25px;
}

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

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
}

.textarea-wrapper i {
    top: 25px;
    transform: none;
}

.input-wrapper input, .input-wrapper select, .input-wrapper textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 16px 20px 16px 55px;
    border-radius: 15px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.input-wrapper select {
    appearance: none;
}

.input-wrapper input:focus, .input-wrapper select:focus, .input-wrapper textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

/* Specific style for Event Type select to have dark text */
#eventType {
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

#eventType option {
    color: #1a1a1a;
    background: #fff;
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- FOOTER --- */

.footer {
    padding: 100px 0 50px;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.footer-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand p {
    color: var(--text-dim);
    margin: 25px 0;
    max-width: 300px;
}

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

.footer-social a {
    width: 60px;
    height: 60px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-nav h4, .footer-contact h4 {
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-nav ul li {
    margin-bottom: 15px;
}

.footer-nav ul li a {
    color: var(--text-dim);
}

.footer-nav ul li a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-dim);
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-tagline i {
    color: var(--primary);
}

/* --- RESPONSIVE --- */

@media (max-width: 1200px) {
    .container { padding: 0 30px; }
    .hero-title { font-size: 4rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .nav-toggle { 
        display: flex; 
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 12, 0.95);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        z-index: 1000;
        padding: 40px;
        opacity: 0;
        visibility: hidden;
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--text-light);
        text-transform: uppercase;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links a:nth-child(5) { transition-delay: 0.5s; }
    .nav-links a:nth-child(6) { transition-delay: 0.6s; }
    .nav-links a:nth-child(7) { transition-delay: 0.7s; }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: var(--secondary);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: var(--secondary);
    }

    .about-grid, .experience-content, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; flex-wrap: wrap; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .form-row { grid-template-columns: 1fr; }
    .cta-title { font-size: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .nav-phone span { display: none; }
    .nav-phone { padding: 10px; width: 45px; height: 45px; justify-content: center; }
}

@media (max-width: 480px) {
    .nav-phone { display: none; }
    .section-title { font-size: 2.5rem; }
    .service-card, .contact-form { padding: 30px 20px; }
}

/* --- GALLERY SECTION --- */
.gallery {
    padding-bottom: 80px;
    background: var(--bg-dark);
}

.gallery-marquee {
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.gallery-marquee::before,
.gallery-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gallery-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.gallery-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollMarquee 50s linear infinite;
}

.gallery-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.gallery-card {
    width: 400px;
    height: 550px;
    flex-shrink: 0;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    background: var(--glass);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
    opacity: 0.6;
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.2);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 0.3;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-card {
        width: 300px;
        height: 400px;
    }
}

