/* 
   Radha Arya Music Studio - Style Sheet
   Designed with premium dark glassmorphism, vibrant neon gradients, and elegant gold highlights.
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&family=Yatra+One&display=swap');

/* --- Root Variables (Design Tokens) --- */
:root {
    /* Color Palette */
    --bg-dark: #07080d;
    --bg-card: rgba(18, 20, 32, 0.6);
    --bg-card-hover: rgba(26, 29, 46, 0.85);
    --border-color: rgba(201, 160, 84, 0.2);
    --border-hover: rgba(201, 160, 84, 0.5);
    
    /* Brand Colors */
    --gold: #d4af37;
    --gold-hover: #f3e5ab;
    --gold-glow: rgba(212, 175, 55, 0.4);
    
    /* Vibrant Neon Gradients */
    --neon-pink: #ff007f;
    --neon-orange: #ff6a00;
    --grad-primary: linear-gradient(135deg, #ff007f, #ff6a00);
    --grad-gold: linear-gradient(135deg, #a27c36, #d4af37, #f3e5ab);
    --grad-dark: linear-gradient(180deg, #0f1016 0%, #050609 100%);
    
    /* Text Colors */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-gold: #e2c98a;
    
    /* Typography */
    --font-heading: 'Outfit', 'Poppins', sans-serif;
    --font-hindi: 'Poppins', 'Yatra One', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows & Effects */
    --glass-blur: blur(12px);
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);
}

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

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

/* Ambient Glow Background Orbs */
.bg-glow-1, .bg-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

.bg-glow-1 {
    top: 5%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--neon-pink);
    animation: pulseGlow 12s infinite alternate ease-in-out;
}

.bg-glow-2 {
    top: 45%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--neon-orange);
    animation: pulseGlow 15s infinite alternate-reverse ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.2; }
    100% { transform: scale(1.2) translate(50px, 30px); opacity: 0.4; }
}

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

.hindi-text {
    font-family: var(--font-hindi);
    font-weight: 500;
}

.text-gradient-primary {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

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

/* --- Buttons & Interactive Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-family: var(--font-heading);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 127, 0.6);
}

.btn-gold {
    background: var(--grad-gold);
    color: #121420;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: #fff;
    color: #121420;
}

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

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-hover);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.6) !important;
    transform: translateY(-3px);
}

/* Glassmorphism Panel Base */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 8, 13, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.header.scrolled {
    background: rgba(7, 8, 13, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 8px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: flex-end; /* Push items to the right */
    align-items: center;
    height: 75px;
}

/* Brand left alignment */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    margin-right: auto; /* Pushes the nav-menu to the right */
    white-space: nowrap;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    box-shadow: 0 0 10px var(--gold-glow);
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px; /* Reduced from 32px to give more space */
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

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

.nav-link:hover {
    color: var(--text-main);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 24px;
}

.nav-actions .btn-whatsapp {
    padding: 10px 20px; /* Compact padding for navbar button */
    font-size: 0.9rem;   /* Compact font size */
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Hamburger Menu button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    padding-top: 50px;
    min-height: 85vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.badge-new {
    background: rgba(255, 0, 127, 0.15);
    border: 1px solid rgba(255, 0, 127, 0.3);
    color: #ff3399;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 580px;
}

/* Quick Features Bullet List */
.hero-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 10px 0;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

.hero-bullet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid var(--border-color);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

/* Hero Portrait Card (Client Photo) */
.hero-photo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.artist-card {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    position: relative;
}

.artist-photo-container {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 20px var(--gold-glow);
    position: relative;
}

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

.artist-card:hover .artist-photo {
    transform: scale(1.05);
}

.artist-badge-floating {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(7, 8, 13, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold);
    color: var(--text-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-premium);
}

.artist-info {
    text-align: center;
}

.artist-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.artist-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Floating Music Note Decorations */
.music-note {
    position: absolute;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.4;
    pointer-events: none;
    animation: floatNote 6s infinite ease-in-out;
}

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

@keyframes floatNote {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-20px) rotate(15deg); opacity: 0.8; }
    100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
}

/* --- Stats & Visitor Bar --- */
.stats-bar {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

/* Glowing digit styling for Visitor counter */
.stat-number.glow {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Shimmer Loading Effect for Visitor count */
.shimmer {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: loadingShimmer 1.5s infinite;
    border-radius: 4px;
    display: inline-block;
    width: 80px;
    height: 32px;
}

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

/* --- Services / Categories Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 35px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    border-radius: 20px;
    height: 100%;
}

.service-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--gold);
}

.service-card:hover .service-icon-box {
    background: var(--grad-primary);
    color: white;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 0, 127, 0.3);
}

.service-icon-box svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.service-title-hindi {
    font-size: 1.15rem;
    color: var(--text-gold);
    margin-top: 2px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}

.service-btn {
    margin-top: auto;
    font-size: 0.85rem;
    padding: 10px 20px;
    width: 100%;
}

/* --- Audio Samples & Portfolio --- */
.audio-section-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.audio-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vinyl-showcase {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl-disc {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #222 15%, #050505 16%, #111 25%, #000 26%, #111 35%, #000 36%, #111 45%, #000 46%, #111 60%, #151515 70%);
    border-radius: 50%;
    border: 5px solid #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 15px rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: spinDisc 20s linear infinite;
    animation-play-state: paused;
}

.vinyl-disc.playing {
    animation-play-state: running;
}

.vinyl-label {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-image: url('assets/radha_logo.png');
    background-size: cover;
    background-position: center;
    border: 3px solid #111;
}

.vinyl-needle {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 100px;
    height: 100px;
    transform-origin: 80px 20px;
    transform: rotate(-15deg);
    transition: transform var(--transition-smooth);
    pointer-events: none;
    z-index: 5;
}

.vinyl-needle.playing {
    transform: rotate(10deg);
}

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

/* Custom Audio Player Hub */
.audio-player-hub {
    padding: 30px;
}

.now-playing-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.now-playing-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 0, 127, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-pink);
}

.now-playing-icon.playing svg {
    animation: bounceBar 1.2s ease infinite alternate;
}

.now-playing-meta {
    flex-grow: 1;
}

.now-playing-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.now-playing-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Embedded controls */
.player-controls-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 20px;
}

.play-main-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
    transition: var(--transition-fast);
}

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

.play-main-btn svg {
    width: 24px;
    height: 24px;
}

.progress-bar-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.progress-timeline {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--grad-primary);
    transition: width 0.1s linear;
}

.time-readout {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Playlist elements */
.audio-playlist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 6px;
}

/* Custom scrollbar for playlist */
.audio-playlist::-webkit-scrollbar {
    width: 4px;
}
.audio-playlist::-webkit-scrollbar-track {
    background: transparent;
}
.audio-playlist::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.playlist-item:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.05);
}

.playlist-item.active {
    background: rgba(201, 160, 84, 0.08);
    border-color: rgba(201, 160, 84, 0.2);
}

.playlist-play-icon {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.playlist-item.active .playlist-play-icon {
    color: var(--gold);
}

.playlist-meta {
    flex-grow: 1;
}

.playlist-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.playlist-title-hindi {
    font-size: 0.85rem;
    color: var(--text-gold);
}

.playlist-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- About & Portrait Showcase --- */
.about-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

/* Beautiful Portrait Display */
.about-image-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
}

.about-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 8, 13, 0) 50%, rgba(7, 8, 13, 0.8) 100%);
    pointer-events: none;
}

.about-photo {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.about-image-card:hover .about-photo {
    transform: scale(1.03);
}

.about-floating-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--grad-primary);
    padding: 6px 14px;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gold);
}

.about-bio {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.about-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
}

.about-point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-point-icon {
    margin-top: 4px;
    color: var(--gold);
}

.about-point-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

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

/* --- Contact & CTA --- */
.contact-section {
    background: radial-gradient(circle at 50% 50%, rgba(18, 20, 32, 0.4) 0%, rgba(7, 8, 13, 0) 70%);
}

.cta-box {
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212,175,55,0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.cta-contact-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition-fast);
}

.cta-contact-item:hover {
    color: var(--gold);
}

.cta-contact-item svg {
    color: var(--gold);
}

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

/* --- Footer --- */
.footer {
    background-color: #030406;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 320px;
    margin-top: 10px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.footer-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.visitor-badge-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
}

.visitor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

/* Elegant Back-to-Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 20, 32, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .section {
        padding: 75px 0 30px !important; /* Shorter padding above and below sections */
    }

    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    /* Compact Artist Card spacing on mobile/tablet */
    .artist-card {
        padding: 14px !important; 
        max-width: 350px !important;
        margin: 0 auto !important;
    }

    .artist-photo-container {
        margin-bottom: 12px !important;
    }

    .artist-name {
        font-size: 1.5rem !important;
    }

    .artist-card-actions {
        margin-top: 10px !important;
        justify-content: center !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }
    
    .artist-card-actions .btn {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
        border-radius: 30px !important;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px !important; /* Reduced vertical gap between sections */
        padding-top: 10px !important; /* Minimum padding-top to eliminate unused space */
        min-height: auto !important;
    }
    
    .badge-new, .hero-bullets, .hero-actions {
        align-self: center;
    }
    
    .hero-photo-wrapper {
        order: -1; /* Image first on mobile/tablet */
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audio-section-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(7, 8, 13, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        transition: var(--transition-smooth);
        padding: 40px;
        z-index: 1000;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-actions {
        display: none; /* Hide top WhatsApp button on mobile menu */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-bullets {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
    
    .stat-item::after {
        display: none !important;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .player-controls-strip {
        flex-direction: column;
        gap: 16px;
    }
    
    .play-main-btn {
        order: 2;
    }
}
