/* ==========================================================================
   THEMELOFY — VASHU | OFFICIAL ARTIST WEBSITE MASTER DESIGN SYSTEM (V6)
   ========================================================================== */

:root {
    --navy: #050B24;
    --navy-deep: #02040f;
    --navy-card: rgba(10, 16, 44, 0.75);
    --gold: #D4AF37;
    --gold-soft: #f0d98a;
    --gold-dim: #8a712a;
    --white: #f7f5ef;
    --text-soft: rgba(247, 245, 239, 0.78);
    --glass: rgba(212, 175, 55, 0.06);
    --glass-border: rgba(212, 175, 55, 0.22);
    --maxw: 1320px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy-deep);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

::selection {
    background: var(--gold);
    color: var(--navy-deep);
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- Top Scroll Progress Bar ---------- */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft), #ffffff);
    z-index: 2000;
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--gold);
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--navy-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ---------- Utility Classes ---------- */
.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    font-family: 'Poppins', sans-serif;
    letter-spacing: .32em;
    text-transform: uppercase;
    font-size: .75rem;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

h1, h2, h3, .display {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: .02em;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 18px;
    color: var(--white);
}

.section-title em {
    font-style: normal;
    background: linear-gradient(120deg, var(--gold-soft), var(--gold) 55%, var(--gold-dim));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-sub {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 660px;
    font-weight: 300;
}

section {
    position: relative;
    padding: 110px 0;
}

/* Inner Page Header */
.page-header {
    padding-top: 140px;
    padding-bottom: 70px;
    text-align: center;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, .15), transparent 75%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 60%, var(--gold-dim) 100%);
    color: var(--navy-deep) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.55);
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-soft) 100%);
}

.btn-outline {
    background: rgba(212, 175, 55, 0.06);
    color: var(--white) !important;
    border: 1px solid rgba(212, 175, 55, 0.35);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--gold);
    color: var(--gold-soft) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

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

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    background: rgba(3, 5, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
    display: flex;
    align-items: center;
}

header.scrolled {
    height: 68px;
    background: rgba(2, 4, 15, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.85), 0 1px 0 rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

nav.wrap {
    width: 100%;
    max-width: var(--maxw);
    padding: 0 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.logo-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 32px;
    height: 100%;
    position: relative;
    z-index: 1005;
}

.logo-img {
    width: 45px;
    height: 45px;
    max-height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    border-radius: 50%;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}

header.scrolled .logo-img {
    width: 40px;
    height: 40px;
    max-height: 40px;
}

.logo-brand:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.9));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none;
}

.nav-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(247, 245, 239, 0.85);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-soft), var(--gold));
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--gold-soft);
}

.nav-links a.active {
    color: var(--gold);
}

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

.nav-links a.active::after {
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

/* ---- Hamburger Menu Button ---- */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    width: 32px;
    height: 32px;
    padding: 2px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.burger:hover {
    background: rgba(212, 175, 55, 0.1);
}

.burger span {
    width: 100%;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.burger span:nth-child(1) {
    width: 100%;
}

.burger span:nth-child(2) {
    width: 75%;
    margin-left: auto;
}

.burger span:nth-child(3) {
    width: 100%;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 100%;
}

.burger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15) 0%, rgba(5, 11, 36, 0.98) 70%, #02040f 100%);
}

.hero-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    pointer-events: none;
    opacity: 0.35;
    z-index: 1;
}

.hero-bars span {
    width: 4px;
    height: var(--h, 30%);
    background: linear-gradient(180deg, var(--gold), transparent);
    border-radius: 4px 4px 0 0;
    animation: heroEqualizer 3s ease-in-out infinite alternate;
}

@keyframes heroEqualizer {
    0% { height: 10%; opacity: 0.3; }
    100% { height: var(--h, 80%); opacity: 0.9; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-kicker {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    opacity: 1;
}

.hero-kicker::before,
.hero-kicker::after {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-kicker::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(3.8rem, 9vw, 6.5rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f5ef 45%, var(--gold-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.hero-role {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 1;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--white);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 16px;
    opacity: 1;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 36px;
    font-weight: 300;
    opacity: 1;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 1;
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    z-index: 2;
}

.scroll-cue .line {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   INTERACTIVE FEATURED MUSIC PLAYER SECTION
   ========================================================================== */
.music-player-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #02040f 0%, #050b24 50%, #02040f 100%);
}

.player-container-card {
    background: var(--navy-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.active-track-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: rgba(5, 11, 36, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.vinyl-disc {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, #222 30%, #111 31%, #000 100%);
    border: 6px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: transform 0.6s ease;
}

.playing .vinyl-disc {
    animation: spinVinyl 8s linear infinite;
}

@keyframes spinVinyl {
    100% { transform: rotate(360deg); }
}

.vinyl-center {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.5);
}

.active-track-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.active-track-genre {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.player-controls-bar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.waveform-interactive {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 44px;
    width: 100%;
    padding: 0 10px;
}

.wf-bar {
    flex-grow: 1;
    height: 20%;
    background: rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    transition: height 0.2s ease, background 0.2s ease;
}

.playing .wf-bar {
    animation: barPulse 1.2s ease-in-out infinite alternate;
}

.playing .wf-bar:nth-child(2n) { animation-delay: 0.2s; }
.playing .wf-bar:nth-child(3n) { animation-delay: 0.4s; }
.playing .wf-bar:nth-child(5n) { animation-delay: 0.1s; }

@keyframes barPulse {
    0% { height: 15%; background: rgba(212, 175, 55, 0.3); }
    100% { height: 95%; background: var(--gold); }
}

.main-play-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-soft);
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.control-btn:hover {
    color: var(--gold);
    transform: scale(1.15);
}

.big-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--navy-deep);
    border: none;
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.big-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.6);
}

.playlist-tracks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.track-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(5, 11, 36, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-item-card:hover, .track-item-card.active-track {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(6px);
}

.track-item-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.track-idx {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.95rem;
    width: 24px;
}

.track-name-box h4 {
    font-size: 0.98rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 2px;
}

.track-name-box p {
    font-size: 0.78rem;
    color: var(--text-soft);
}

.track-duration {
    font-size: 0.82rem;
    color: var(--gold-soft);
    font-weight: 500;
}

/* ==========================================================================
   ABOUT PREVIEW & PROFILE CARDS
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.about-stats {
    display: flex;
    gap: 28px;
    margin-top: 28px;
}

.about-stats div {
    display: flex;
    flex-direction: column;
}

.about-stats b {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1.1;
}

.about-stats span {
    font-size: 0.78rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-card {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease;
}

.profile-card:hover {
    transform: translateY(-6px);
}

.profile-inner h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin: 16px 0 4px;
}

.profile-inner .role {
    font-size: 0.82rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 18px;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.profile-badges span {
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-soft);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   GENRE CARDS
   ========================================================================== */
.genre-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.genre-card-v2 {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.genre-card-v2:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

.genre-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.genre-card-v2:hover .genre-icon-wrap {
    transform: scale(1.1) rotate(4deg);
    background: rgba(212, 175, 55, 0.2);
}

.genre-icon-wrap svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
}

.genre-card-v2 h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.genre-card-v2 p {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ==========================================================================
   SERVICES CARDS
   ========================================================================== */
.svc-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.svc-card-v2 {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.svc-card-v2:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}

.svc-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.svc-tag-badge {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-soft);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.svc-icon-svg svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
}

.svc-card-v2 h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.svc-card-v2 p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 24px;
}

.svc-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap 0.2s ease, color 0.2s ease;
}

.svc-card-v2:hover .svc-footer-btn {
    gap: 14px;
    color: #ffffff;
}

/* ==========================================================================
   SOCIAL & STREAMING CARDS
   ========================================================================== */
.social-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.social-card-v2 {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
    text-decoration: none;
}

.social-card-v2:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
}

.social-svg-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.4s ease;
}

.social-card-v2:hover .social-svg-icon {
    transform: scale(1.15);
}

.social-card-v2.youtube .social-svg-icon { background: rgba(255, 0, 0, 0.15); border: 1px solid rgba(255, 0, 0, 0.3); }
.social-card-v2.instagram .social-svg-icon { background: rgba(225, 48, 108, 0.15); border: 1px solid rgba(225, 48, 108, 0.3); }
.social-card-v2.facebook .social-svg-icon { background: rgba(24, 119, 242, 0.15); border: 1px solid rgba(24, 119, 242, 0.3); }

.social-card-v2.youtube svg { fill: #FF0000; width: 26px; height: 26px; }
.social-card-v2.instagram svg { fill: #E1306C; width: 26px; height: 26px; }
.social-card-v2.facebook svg { fill: #1877F2; width: 26px; height: 26px; }

.social-card-v2 h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.social-card-v2 span {
    font-size: 0.82rem;
    color: var(--gold-soft);
}

/* ==========================================================================
   FOOTER & FLOATING BUTTONS
   ========================================================================== */
footer {
    padding: 60px 0 30px;
    background: #02040f;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.15);
    background: var(--gold);
    color: var(--navy-deep);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-nav a {
    font-size: 0.85rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(247, 245, 239, 0.4);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1050;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366 !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

/* Back to Top */
.totop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 16, 44, 0.85);
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.totop.show {
    opacity: 1;
    visibility: visible;
}

.totop:hover {
    transform: translateY(-4px);
    background: var(--gold);
    color: var(--navy-deep);
}

/* ==========================================================================
   TIMELINE & MILESTONE STYLES (ABOUT & PRESSKIT)
   ========================================================================== */
.timeline-wrap {
    position: relative;
    max-width: 860px;
    margin: 50px auto 0;
    padding-left: 32px;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--navy-deep);
    box-shadow: 0 0 12px var(--gold);
}

.timeline-year {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-soft);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.timeline-card {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.45);
}

.timeline-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ==========================================================================
   DISCOGRAPHY & MUSIC SHOWCASE GRID (MUSIC.HTML)
   ========================================================================== */
.music-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.track-card {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.track-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
}

.track-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.track-tag {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-soft);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.track-date {
    font-size: 0.78rem;
    color: rgba(247, 245, 239, 0.5);
}

.track-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.track-story {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 24px;
}

.track-player {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(5, 11, 36, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 20px;
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-deep);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.1);
}

.waveform-container {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
    flex-grow: 1;
}

.waveform-bar {
    flex-grow: 1;
    height: 30%;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
}

.playing .waveform-bar {
    animation: barPulse 1.2s ease-in-out infinite alternate;
}

.track-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.track-links {
    display: flex;
    gap: 12px;
}

.track-links a {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 500;
}

.track-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   PORTFOLIO & GALLERY ITEMS (PORTFOLIO.HTML & GALLERY.HTML)
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: rgba(10, 16, 44, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

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

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 260px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(2, 4, 15, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.78rem;
    color: var(--gold-soft);
}

/* ==========================================================================
   BLOG & TESTIMONIAL CARDS
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
}

.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(5,11,36,0.9));
}

.blog-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.blog-card-body p {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-deep);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   CONTACT PAGE — PREMIUM LAYOUT
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
    margin-top: 40px;
}

/* ---- Left Column: Contact Info ---- */
.contact-info {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info > div:not(.whatsapp-card) {
    padding: 18px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info > div:not(.whatsapp-card):first-child {
    padding-top: 0;
}

.contact-info > div:not(.whatsapp-card):last-of-type {
    border-bottom: none;
}

.contact-info .lbl {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2px;
}

.contact-info .val {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* ---- WhatsApp Booking Card ---- */
.whatsapp-card {
    margin-top: 28px !important;
    padding: 28px 24px !important;
    background: rgba(37, 211, 102, 0.06) !important;
    border: 1px solid rgba(37, 211, 102, 0.25) !important;
    border-radius: 18px !important;
    text-align: center;
    border-bottom: none !important;
}

.whatsapp-card h5 {
    color: #25D366;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.whatsapp-card p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 18px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    width: 100%;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: #25D366;
    flex-shrink: 0;
}

/* ---- Right Column: Contact Form ---- */
#contactForm {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 36px;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

/* Standalone field (not in a form-row) */
#contactForm > .field {
    margin-bottom: 22px;
}

.field label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(5, 11, 36, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
    line-height: 1.5;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(247, 245, 239, 0.35);
    font-weight: 300;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1), 0 0 15px rgba(212, 175, 55, 0.15);
    background: rgba(5, 11, 36, 0.95);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.field select option {
    background: #0a102c;
    color: #ffffff;
    padding: 10px;
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    margin-top: 4px;
    padding: 16px 32px;
    font-size: 15px;
}

/* Form Note */
.form-note {
    font-size: 14px;
    color: var(--text-soft);
    text-align: center;
    margin-top: 18px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* ---- Legacy support: .contact-info-card & .contact-form-card ---- */
.contact-info-card {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px;
}

.contact-form-card {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
}

/* Legacy form-group support */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-soft);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(5, 11, 36, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

textarea.form-input {
    min-height: 130px;
    resize: vertical;
}

/* EPK Grid */
.epk-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.epk-stat-card {
    background: var(--navy-card);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

.epk-stat-card b {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--gold);
    display: block;
}

.epk-stat-card span {
    font-size: 0.8rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Process Grid (4-Step Workflow) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.process-card {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
}

.process-num {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
    opacity: 0.9;
}

.process-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 860px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.02rem;
    color: #ffffff;
    user-select: none;
}

.faq-toggle {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.8;
}

/* Case Study Cards (Portfolio.html) */
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-study-card {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.case-study-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
}

.case-study-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.case-study-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-study-tag {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-soft);
    border: 1px solid rgba(212, 175, 55, 0.25);
    width: fit-content;
    margin-bottom: 12px;
}

.case-study-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.case-study-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* --- Tablet breakpoint: hide nav, show hamburger --- */
@media (max-width: 1024px) {
    nav.wrap {
        padding: 0 32px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: rgba(2, 4, 15, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 36px 40px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.9);
        overflow-y: auto;
        z-index: 1050;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1.5px;
        padding: 14px 16px;
        border-radius: 10px;
        color: rgba(247, 245, 239, 0.75);
        transition: color 0.3s ease, background 0.3s ease;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--gold);
        background: rgba(212, 175, 55, 0.08);
    }

    .nav-links a.active {
        border-left: 3px solid var(--gold);
        padding-left: 13px;
    }

    .burger {
        display: flex;
    }

    .player-container-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

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

/* --- Mobile (768px and below) --- */
@media (max-width: 768px) {
    header {
        height: 65px;
    }

    header.scrolled {
        height: 58px;
    }

    nav.wrap {
        padding: 0 20px;
    }

    .logo-img {
        width: 38px;
        height: 38px;
        max-height: 38px;
    }

    header.scrolled .logo-img {
        width: 34px;
        height: 34px;
        max-height: 34px;
    }

    section {
        padding: 80px 0;
    }

    .page-header {
        padding-top: 115px;
        padding-bottom: 40px;
    }

    .wrap {
        padding: 0 20px;
    }

    .svc-grid-v2 {
        grid-template-columns: 1fr;
    }

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

    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .player-container-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

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

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

    .contact-info {
        padding: 32px 28px;
    }

    #contactForm {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row .field {
        margin-bottom: 22px;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .nav-links {
        width: 100%;
        max-width: 100%;
    }
}
