﻿/* ================================================================
   STYLE.CSS — iamteshan.com
   Premium Dark Theme — Music Producer Portfolio
   ================================================================ */

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--color-text);
}

p {
    color: var(--color-text-secondary);
    line-height: var(--line-height-base);
}

a {
    color: var(--color-primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

::selection {
    background-color: var(--color-primary);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

/* ================================================================
   UTILITY CLASSES
   ================================================================ */

/* ── Text Gradient ── */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Fluid Headings ── */
.fluid-heading-xl {
    font-size: var(--fluid-heading-xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
}

.fluid-heading-lg {
    font-size: var(--fluid-heading-lg);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
}

.fluid-heading-md {
    font-size: var(--fluid-heading-md);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
}

/* ── Glassmorphism ── */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow);
}

/* ── Card Hover ── */
.card-hover {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    contain: layout style;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* ── Background Gradients ── */
.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

/* ================================================================
   SECTION SYSTEM
   ================================================================ */

.section-padding {
    padding: var(--space-24) 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--space-16) 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    background: var(--color-primary-subtle);
    color: var(--color-primary-light);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-5);
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
    border: 1px solid hsla(var(--color-primary-h), 60%, 50%, 0.15);
}

.section-title {
    font-size: var(--fluid-heading-lg);
    margin-bottom: var(--space-4);
    font-family: var(--font-heading);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--line-height-base);
}

/* ================================================================
   NAVBAR — Glassmorphism Fixed
   ================================================================ */

#mainNav {
    background: transparent;
    transition: background var(--duration-slow) ease,
        box-shadow var(--duration-slow) ease,
        backdrop-filter var(--duration-slow) ease;
    padding: var(--space-4) 0;
    z-index: var(--z-fixed);
}

#mainNav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 1px 0 var(--glass-border), var(--shadow-lg);
    padding: var(--space-3) 0;
}

#mainNav .navbar-brand img {
    height: 52px;
    transition: opacity var(--transition-base);
}

#mainNav .navbar-brand:hover img {
    opacity: 0.85;
}

#mainNav .nav-link {
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    padding: var(--space-2) var(--space-4) !important;
    transition: color var(--transition-fast);
    position: relative;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--color-text);
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile menu */
#mainNav .navbar-toggler {
    border: 1px solid var(--glass-border);
    padding: var(--space-2);
    border-radius: var(--radius-md);
}

#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    #mainNav .navbar-collapse {
        background: var(--glass-bg);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border-radius: var(--radius-lg);
        margin-top: var(--space-3);
        padding: var(--space-4);
        border: 1px solid var(--glass-border);
    }
}

/* ================================================================
   HERO SECTION
   ================================================================ */

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: var(--z-base);
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    background: var(--color-primary-subtle);
    border: 1px solid hsla(var(--color-primary-h), 60%, 50%, 0.2);
    color: var(--color-primary-light);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: var(--space-6);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--fluid-heading-xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: var(--space-6);
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 540px;
    line-height: var(--line-height-base);
    margin-bottom: var(--space-8);
}

.hero-cta-group {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

.hero-stats {
    display: flex;
    gap: var(--space-10);
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-text);
    line-height: 1;
}

.hero-stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-top: var(--space-2);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    position: relative;
    z-index: var(--z-base);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, hsla(var(--color-primary-h), 80%, 50%, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

/* ── Floating Decorative Elements ── */
.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-4) var(--space-5);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--color-primary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2);
}

.floating-card-text {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
}

.floating-card-sub {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

/* ================================================================
   BUTTONS — Premium Overrides
   ================================================================ */

.btn {
    font-family: var(--font-body);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.02em;
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-6);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px hsla(var(--color-primary-h), 80%, 50%, 0.5);
    background: var(--gradient-primary);
    color: white;
}

.btn-outline-light {
    border: 1px solid var(--glass-border-hover);
    color: var(--color-text-secondary);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--glass-bg-light);
    border-color: var(--color-primary);
    color: var(--color-text);
    transform: translateY(-2px);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
    border-radius: var(--radius-xl);
}

/* Shimmer effect on primary buttons */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.btn-shine:hover::before {
    left: 100%;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */

#about {
    position: relative;
    overflow: hidden;
}

.about-image {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    width: 100%;
    object-fit: cover;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, hsla(var(--color-primary-h), 80%, 50%, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.stat-card {
    text-align: center;
    padding: var(--space-5) var(--space-3);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: border-color var(--transition-base), transform var(--transition-base);
    overflow: hidden;
}

.stat-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
    line-height: 1;
    margin-bottom: var(--space-2);
    white-space: nowrap;
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

.role-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.role-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-3px);
}

.role-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-primary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-size: var(--font-size-xl);
}

.role-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-1);
}

.role-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ================================================================
   DISCOGRAPHY SECTION
   ================================================================ */

#discography {
    position: relative;
    background: var(--color-bg-alt);
}

/* Tab filters */
.disco-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

.disco-tab {
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-body);
    letter-spacing: var(--letter-spacing-wide);
}

.disco-tab:hover,
.disco-tab.active {
    background: var(--color-primary-subtle);
    border-color: var(--color-primary);
    color: var(--color-primary-light);
}

/* Track cards */
.track-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.track-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.track-card:hover img {
    transform: scale(1.08);
}

.track-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-5);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.track-card:hover .track-overlay {
    opacity: 1;
}

.track-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: white;
    margin-bottom: var(--space-1);
}

.track-category {
    font-size: var(--font-size-xs);
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: var(--space-3);
}

.track-links {
    display: flex;
    gap: var(--space-2);
}

.track-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-base);
    transition: background var(--transition-fast), transform var(--transition-fast);
    text-decoration: none;
}

.track-link:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.track-card-video-badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    z-index: 3;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    background: hsla(280, 60%, 50%, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-wide);
    display: flex;
    align-items: center;
    gap: var(--space-1);
    pointer-events: none;
}

/* ================================================================
   REVIEWS / TESTIMONIALS SECTION
   ================================================================ */

#reviews {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: var(--space-6);
    animation: marquee 40s linear infinite;
    width: max-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    flex-shrink: 0;
    width: 380px;
    padding: var(--space-8);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    position: relative;
}

.review-quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.4;
    margin-bottom: var(--space-3);
    font-family: Georgia, serif;
}

.review-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--glass-border);
}

.review-name {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
}

.review-role {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

/* ================================================================
   PRESS / ARTICLES SECTION
   ================================================================ */

#press {
    background: var(--color-bg-alt);
}

.article-card {
    background: var(--color-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: border-color var(--transition-base), transform var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
}

.article-featured {
    background: var(--gradient-surface);
    border-color: hsla(var(--color-primary-h), 60%, 50%, 0.2);
}

.article-source {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    color: var(--color-primary-light);
    margin-bottom: var(--space-3);
}

.article-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.article-excerpt {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    flex-grow: 1;
    margin-bottom: var(--space-5);
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary-light);
    transition: gap var(--transition-base);
}

.article-link:hover {
    gap: var(--space-3);
    color: var(--color-primary);
}

/* ================================================================
   MOPHYNE SECTION
   ================================================================ */

#mophyne {
    position: relative;
    overflow: hidden;
}

.mophyne-gradient {
    background: linear-gradient(135deg, hsl(210, 50%, 8%), hsl(280, 40%, 8%));
}

.mophyne-social-links {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon-btn {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: var(--font-size-xl);
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-icon-btn:hover {
    background: var(--color-primary-subtle);
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* ================================================================
   SERVICES / BOOK ME SECTION
   ================================================================ */

#services {
    background: var(--color-bg-alt);
}

.services-card {
    background: var(--gradient-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
}

.services-logo {
    max-height: 50px;
    margin-bottom: var(--space-6);
    opacity: 0.9;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */

#contact {
    position: relative;
}

.contact-card {
    background: var(--color-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    transition: border-color var(--transition-base), transform var(--transition-base);
    height: 100%;
}

.contact-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-3px);
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: var(--color-primary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-size: var(--font-size-xl);
}

.contact-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: var(--space-1);
}

.contact-value {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    text-decoration: none;
}

.contact-value:hover {
    color: var(--color-primary-light);
}

/* ================================================================
   FOOTER
   ================================================================ */

#site-footer {
    background: var(--color-bg);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-brand {
    margin-bottom: var(--space-4);
}

.footer-brand img {
    height: 32px;
}

.footer-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    max-width: 300px;
    line-height: var(--line-height-base);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    margin-bottom: var(--space-5);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-surface);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--color-primary-subtle);
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: var(--space-6);
    margin-top: var(--space-10);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-copyright {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out),
        transform var(--duration-slow) var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered entrance for grids */
.stagger-fade .fade-up:nth-child(1) {
    transition-delay: 0ms;
}

.stagger-fade .fade-up:nth-child(2) {
    transition-delay: 100ms;
}

.stagger-fade .fade-up:nth-child(3) {
    transition-delay: 200ms;
}

.stagger-fade .fade-up:nth-child(4) {
    transition-delay: 300ms;
}

.stagger-fade .fade-up:nth-child(5) {
    transition-delay: 400ms;
}

.stagger-fade .fade-up:nth-child(6) {
    transition-delay: 500ms;
}

.stagger-fade .fade-up:nth-child(7) {
    transition-delay: 600ms;
}

.stagger-fade .fade-up:nth-child(8) {
    transition-delay: 700ms;
}

/* ================================================================
   WAVE / SECTION DIVIDERS
   ================================================================ */

.section-divider {
    position: relative;
    height: 60px;
    overflow: hidden;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ================================================================
   AURORA / DECORATIVE BACKGROUNDS
   ================================================================ */

.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blob-float 20s ease-in-out infinite;
}

.aurora-blob:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -100px;
    left: -100px;
}

.aurora-blob:nth-child(2) {
    width: 350px;
    height: 350px;
    background: var(--color-secondary);
    top: 50%;
    right: -100px;
    animation-delay: -7s;
}

.aurora-blob:nth-child(3) {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    bottom: -50px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes blob-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ================================================================
   PAGE LOADER — MIXING CONSOLE FADERS
   ================================================================ */

.page-loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, hsl(220 12% 10%) 0%, hsl(220 15% 4%) 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
}

.console-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.console-channels {
    display: flex;
    gap: 24px;
}

/* Individual channel strip */
.channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(16px);
    animation: ch-appear 0.5s ease forwards;
    animation-delay: var(--delay);
}

@keyframes ch-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LED Meter — 5 segments */
.ch-meter {
    display: flex;
    flex-direction: column-reverse;
    gap: 3px;
    height: 40px;
}

.ch-meter span {
    width: 20px;
    height: 4px;
    border-radius: 1px;
    background: hsla(0, 0%, 100%, 0.06);
    animation: led-flash 1.6s ease-in-out infinite;
}

/* LED colors: green/teal theme gradient */
.ch-meter span:nth-child(1) {
    --led-color: hsl(158, 40%, 30%);
    animation-delay: calc(var(--delay) + 0.0s);
}

.ch-meter span:nth-child(2) {
    --led-color: hsl(158, 55%, 40%);
    animation-delay: calc(var(--delay) + 0.1s);
}

.ch-meter span:nth-child(3) {
    --led-color: hsl(155, 65%, 45%);
    animation-delay: calc(var(--delay) + 0.2s);
}

.ch-meter span:nth-child(4) {
    --led-color: hsl(150, 70%, 50%);
    animation-delay: calc(var(--delay) + 0.3s);
}

.ch-meter span:nth-child(5) {
    --led-color: hsl(145, 80%, 55%);
    animation-delay: calc(var(--delay) + 0.4s);
}

@keyframes led-flash {

    0%,
    100% {
        background: hsla(0, 0%, 100%, 0.06);
        box-shadow: none;
    }

    40%,
    70% {
        background: var(--led-color);
        box-shadow: 0 0 6px var(--led-color);
    }
}

/* Fader track */
.ch-fader {
    width: 8px;
    height: 80px;
    background: hsl(220, 10%, 14%);
    border-radius: 4px;
    position: relative;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.5),
        0 0 0 1px hsla(0, 0%, 100%, 0.04);
}

/* Fader knob */
.ch-knob {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 18px;
    height: 10px;
    border-radius: 2px;
    background: linear-gradient(to bottom, hsl(220, 8%, 55%), hsl(220, 8%, 35%));
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 hsla(0, 0%, 100%, 0.15);
    animation: fader-slide 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--delay) + 0.3s);
}

/* Center groove line on knob */
.ch-knob::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 3px;
    right: 3px;
    height: 1px;
    background: hsla(0, 0%, 0%, 0.4);
    transform: translateY(-50%);
}

@keyframes fader-slide {
    0% {
        bottom: 8px;
    }

    60% {
        bottom: 56px;
    }

    80% {
        bottom: 48px;
    }

    100% {
        bottom: 52px;
    }
}

/* Channel label */
.ch-label {
    font-family: 'Courier New', monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: hsla(0, 0%, 100%, 0.35);
    text-transform: uppercase;
    font-weight: 700;
}

/* Logo */
.loader-logo {
    height: 240px;
    opacity: 0;
    animation: logo-fade-in 0.8s ease forwards;
    animation-delay: 1.2s;
    filter: drop-shadow(0 0 20px hsla(158, 60%, 55%, 0.25));
}

@keyframes logo-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================================================
   SCROLL PROGRESS BAR
   ================================================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: calc(var(--z-fixed) + 1);
    transition: width 0.1s linear;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
}

/* ================================================================
   BACK TO TOP BUTTON
   ================================================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    cursor: pointer;
    z-index: var(--z-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-primary);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px hsla(var(--color-primary-h), 80%, 50%, 0.5);
}

/* ================================================================
   CUSTOM CURSOR
   ================================================================ */

@media (pointer: fine) {
    .custom-cursor {
        position: fixed;
        width: 20px;
        height: 20px;
        border: 2px solid var(--color-primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transition: transform 0.15s ease, opacity 0.2s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
        transform: translate(-50%, -50%);
        mix-blend-mode: difference;
    }

    .custom-cursor.cursor-hover {
        width: 44px;
        height: 44px;
        border-color: var(--color-accent);
        background: hsla(var(--color-primary-h), 80%, 50%, 0.08);
    }

    .custom-cursor.cursor-click {
        transform: translate(-50%, -50%) scale(0.8);
    }

    body.custom-cursor-enabled {
        cursor: none;
    }

    body.custom-cursor-enabled a,
    body.custom-cursor-enabled button,
    body.custom-cursor-enabled .track-card,
    body.custom-cursor-enabled .btn {
        cursor: none;
    }
}

/* ================================================================
   DARK / LIGHT MODE TOGGLE
   ================================================================ */

.theme-toggle {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--color-surface);
    border: 1px solid var(--glass-border);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    cursor: pointer;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
}

.theme-toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Light mode overrides */
body.light-mode {
    --color-bg: hsl(0, 0%, 98%);
    --color-bg-alt: hsl(0, 0%, 94%);
    --color-surface: hsl(0, 0%, 100%);
    --color-text: hsl(230, 20%, 15%);
    --color-text-secondary: hsl(230, 10%, 40%);
    --color-text-muted: hsl(230, 10%, 55%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-border-hover: rgba(0, 0, 0, 0.15);
    --color-border: hsl(230, 10%, 88%);
    --gradient-hero: linear-gradient(135deg, hsl(240, 5%, 96%) 0%, hsl(260, 20%, 93%) 50%, hsl(240, 5%, 96%) 100%);
    --gradient-surface: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(260, 15%, 96%));
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 30px 60px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 25px hsla(158, 81%, 54%, 0.25);
    --shadow-glow: 0 0 20px hsla(158, 81%, 54%, 0.2);
}

body.light-mode .mophyne-gradient {
    background: linear-gradient(135deg, hsl(210, 20%, 95%), hsl(280, 20%, 94%));
}

body.light-mode #mainNav.scrolled {
    background: rgba(255, 255, 255, 0.85);
}

body.light-mode .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.6%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.light-mode #mainNav .navbar-brand img,
body.light-mode .footer-brand img,
body.light-mode .loader-logo {
    filter: invert(1) brightness(0.2);
}

/* ================================================================
   WAVEFORM SECTION DIVIDERS
   ================================================================ */

.wave-divider {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-divider.flip {
    transform: rotate(180deg);
}

/* ================================================================
   DISCOGRAPHY LIGHTBOX
   ================================================================ */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: var(--space-6);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 540px;
    width: 100%;
}

.lightbox-content {
    background: linear-gradient(145deg, hsl(240 10% 12%), hsl(240 10% 8%));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    width: 100%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px hsla(var(--color-primary-h), 60%, 50%, 0.06);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    z-index: 3;
}

.lightbox-close:hover {
    background: rgba(255, 60, 60, 0.7);
    color: white;
    transform: scale(1.1);
}

.lightbox-art {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.lightbox-details {
    padding: 24px 28px 28px;
}

.lightbox-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary-light);
    font-weight: 600;
    margin-bottom: 6px;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.lightbox-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lightbox-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: hsla(var(--color-primary-h), 50%, 50%, 0.12);
    border: 1px solid hsla(var(--color-primary-h), 60%, 50%, 0.2);
    color: var(--color-primary-light);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    text-decoration: none;
}

.lightbox-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(var(--color-primary-h), 60%, 50%, 0.3);
}

.lightbox-counter {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    margin-top: 14px;
}

/* Prev / Next Navigation Arrows */
.lightbox-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.25s ease;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Lightbox slide transition animations */
@keyframes lb-slide-out-left {
    to {
        opacity: 0;
        transform: translateX(-40px) scale(0.96);
        filter: blur(2px);
    }
}

@keyframes lb-slide-out-right {
    to {
        opacity: 0;
        transform: translateX(40px) scale(0.96);
        filter: blur(2px);
    }
}

@keyframes lb-slide-in-left {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.96);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes lb-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(-40px) scale(0.96);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

.lightbox-content.slide-out-left {
    animation: lb-slide-out-left 0.2s ease forwards;
}

.lightbox-content.slide-out-right {
    animation: lb-slide-out-right 0.2s ease forwards;
}

.lightbox-content.slide-in-left {
    animation: lb-slide-in-left 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.lightbox-content.slide-in-right {
    animation: lb-slide-in-right 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Mobile */
@media (max-width: 640px) {
    .lightbox-inner {
        max-width: 340px;
        gap: 0;
        flex-direction: column;
    }

    .lightbox-nav {
        display: none;
    }

    .lightbox-details {
        padding: 18px 22px 22px;
    }

    .lightbox-title {
        font-size: 19px;
    }
}




/* ================================================================
   STUDIO GALLERY LIGHTBOX
   ================================================================ */

.gallery-grid img {
    cursor: pointer;
    transition: transform var(--transition-base), filter var(--transition-base);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: var(--space-6);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-xl);
    object-fit: contain;
    box-shadow: var(--shadow-2xl);
    transform: scale(0.9);
    transition: transform 0.3s var(--ease-out);
}

.gallery-lightbox.active img {
    transform: scale(1);
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--font-size-xl);
    transition: all var(--transition-fast);
}

.gallery-lightbox-close:hover {
    background: rgba(255, 60, 60, 0.3);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--font-size-xl);
    transition: all var(--transition-fast);
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

/* ================================================================
   CONTACT FORM
   ================================================================ */

.contact-form {
    margin-top: var(--space-12);
}

.contact-form .form-control,
.contact-form .form-select {
    background: var(--color-surface);
    border: 1px solid var(--glass-border);
    color: var(--color-text);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px hsla(var(--color-primary-h), 80%, 50%, 0.15);
    background: var(--color-surface);
    color: var(--color-text);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--color-text-muted);
}

.contact-form label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-status {
    display: none;
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-top: var(--space-4);
}

.form-status.success {
    display: block;
    background: hsla(145, 70%, 40%, 0.15);
    border: 1px solid hsla(145, 70%, 40%, 0.3);
    color: hsl(145, 60%, 55%);
}

.form-status.error {
    display: block;
    background: hsla(0, 70%, 50%, 0.15);
    border: 1px solid hsla(0, 70%, 50%, 0.3);
    color: hsl(0, 60%, 60%);
}

/* ================================================================
   HERO NAME ANIMATION
   ================================================================ */

@keyframes heroNameFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* ================================================================
   BOOKING FORM (Services section)
   ================================================================ */

#bookingForm .form-control,
#bookingForm .form-select,
#bookingForm select.form-control {
    background: var(--color-surface);
    border: 1px solid var(--glass-border);
    color: var(--color-text);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: auto;
}

#bookingForm .form-control:focus,
#bookingForm select.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px hsla(var(--color-primary-h), 80%, 50%, 0.15);
    background: var(--color-surface);
    color: var(--color-text);
    outline: none;
}

#bookingForm .form-control::placeholder {
    color: var(--color-text-muted);
}

#bookingForm label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
    display: block;
}

#bookingForm textarea {
    min-height: 140px;
    resize: vertical;
}

#bookingForm select option {
    background: var(--color-surface);
    color: var(--color-text);
}

/* ================================================================
   SOUND TOGGLE
   ================================================================ */

.sound-toggle {
    position: fixed;
    bottom: 145px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--color-surface);
    border: 1px solid var(--glass-border);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    cursor: pointer;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
}

.sound-toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    transform: translateY(-3px);
}

.sound-toggle.active {
    color: var(--color-primary-light);
    border-color: var(--color-primary);
}

/* ================================================================
   RESPONSIVE ADJUSTMENTS
   ================================================================ */

@media (max-width: 768px) {
    .hero-stats {
        gap: var(--space-6);
    }

    .hero-image-wrapper {
        margin-top: var(--space-10);
    }

    .floating-card {
        display: none;
    }

    .review-card {
        width: 300px;
    }

    .disco-tabs {
        gap: var(--space-1);
    }

    .disco-tab {
        font-size: var(--font-size-xs);
        padding: var(--space-2) var(--space-4);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
    }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reviews-track {
        animation: none !important;
    }

    .aurora-blob {
        animation: none !important;
    }
}