/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MUSIC CUE â€” THE ULTIMATE SONIC EXPERIENCE
   Vintage 1940s Golden Age Ã— Modern Neon Luxury
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

:root {
    --bg-abyss: #020611;
    --bg-navy: #0A1128;
    --bg-glass: rgba(10, 17, 40, 0.65);
    --neon: #00E5FF;
    --neon-dim: rgba(0, 229, 255, 0.3);
    --accent: #0088FF;
    --text-w: #FFFFFF;
    --text-g: #A0AEC0;
    --border: rgba(0, 229, 255, 0.15);
    --border-glow: rgba(0, 229, 255, 0.6);
    --ar: 'Cairo', sans-serif;
    --en: 'Cinzel Decorative', serif;
    --body: 'Playfair Display', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg-abyss);
    color: var(--text-w);
    font-family: var(--body);
    overflow-x: hidden;
    line-height: 1.7;
    cursor: auto;
}

::selection { background: var(--neon); color: #000; }

.container {
    max-width: min(1280px, 94vw);
    margin: 0 auto;
    padding: 0 clamp(0.8rem, 3vw, 3rem);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SPLASH SCREEN
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.splash-screen {
    position: fixed; inset: 0;
    z-index: 90000;
    display: flex; justify-content: center; align-items: center;
    background: #000;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}
.splash-screen.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }

.splash-bg { position: absolute; inset: 0; overflow: hidden; }
.splash-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px);
    animation: zoomIn 8s ease-out forwards;
}
.splash-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 70%);
    z-index: 1;
}

/* Floating Musical Notes */
.floating-notes {
    position: absolute; inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.note {
    position: absolute;
    font-size: 2rem;
    color: var(--neon);
    opacity: 0;
    animation: floatNote 6s ease-in-out infinite;
    text-shadow: 0 0 20px var(--neon);
}
.n1  { left: 5%;  top: 20%; animation-delay: 0s;   font-size: 3rem; }
.n2  { left: 15%; top: 70%; animation-delay: 0.8s; font-size: 2.5rem; }
.n3  { left: 30%; top: 40%; animation-delay: 1.5s; font-size: 1.8rem; }
.n4  { left: 45%; top: 15%; animation-delay: 0.3s; font-size: 4rem; }
.n5  { left: 60%; top: 60%; animation-delay: 2.1s; font-size: 2rem; }
.n6  { left: 75%; top: 30%; animation-delay: 1.2s; font-size: 2.8rem; }
.n7  { left: 85%; top: 75%; animation-delay: 0.6s; font-size: 3.5rem; }
.n8  { left: 92%; top: 10%; animation-delay: 1.8s; font-size: 2rem; }
.n9  { left: 50%; top: 85%; animation-delay: 2.5s; font-size: 1.5rem; }
.n10 { left: 20%; top: 50%; animation-delay: 3s;   font-size: 2.2rem; }

@keyframes floatNote {
    0%   { opacity: 0; transform: translateY(30px) rotate(0deg); }
    20%  { opacity: 0.8; }
    80%  { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100px) rotate(20deg); }
}

.splash-content {
    position: relative; z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 2rem;
    text-align: center;
}

.treble-clef-container { margin-bottom: 1rem; }
.treble-svg {
    filter: drop-shadow(0 0 20px var(--neon)) drop-shadow(0 0 40px rgba(0,229,255,0.3));
    animation: pulseGlow 3s ease-in-out infinite;
}
.treble-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawClef 3s ease-out forwards;
}

@keyframes drawClef {
    to { stroke-dashoffset: 0; }
}
@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 15px var(--neon)) drop-shadow(0 0 30px rgba(0,229,255,0.2)); }
    50% { filter: drop-shadow(0 0 30px var(--neon)) drop-shadow(0 0 60px rgba(0,229,255,0.5)); }
}

.splash-logo {
    display: flex; flex-direction: column; gap: 0;
}
.splash-music {
    font-family: var(--en);
    font-size: clamp(1.8rem, 7vw, 5rem); font-weight: 900;
    color: #fff;
    letter-spacing: clamp(4px, 1.5vw, 15px);
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
    animation: fadeSlideUp 1s ease-out 0.5s both;
}
.splash-cue {
    font-family: var(--en);
    font-size: clamp(1.1rem, 5vw, 3.5rem); font-weight: 400;
    color: var(--neon);
    letter-spacing: clamp(5px, 2vw, 20px);
    text-shadow: 0 0 30px var(--neon);
    animation: fadeSlideUp 1s ease-out 0.8s both;
}
.splash-tagline {
    font-family: var(--ar);
    font-size: clamp(0.8rem, 2vw, 1.3rem);
    color: var(--text-g);
    letter-spacing: clamp(1px, 0.5vw, 3px);
    animation: fadeSlideUp 1s ease-out 1.1s both;
}

.splash-eq {
    display: flex; gap: 5px; height: 50px; align-items: flex-end;
    animation: fadeSlideUp 1s ease-out 1.4s both;
}
.eq-bar {
    width: 6px;
    background: linear-gradient(to top, var(--accent), var(--neon));
    border-radius: 3px;
    transition: height 0.12s ease;
    box-shadow: 0 0 8px var(--neon-dim);
}

/* Sound Permission Overlay */
.sound-permission {
    position: absolute; inset: 0;
    z-index: 10;
    display: flex; justify-content: center; align-items: center;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    transition: opacity 0.8s, visibility 0.8s;
}
.sound-permission.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.enter-btn {
    display: flex; align-items: center; gap: clamp(10px, 2vw, 20px);
    padding: clamp(0.8rem, 2vw, 1.5rem) clamp(1.5rem, 5vw, 4rem);
    background: transparent;
    border: 2px solid var(--neon);
    color: var(--neon);
    font-family: var(--ar);
    font-size: clamp(0.9rem, 2.5vw, 1.5rem); font-weight: 800;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s;
    animation: breathe 2s ease-in-out infinite;
    text-shadow: 0 0 10px var(--neon-dim);
}
.enter-btn:hover {
    background: var(--neon);
    color: #000;
    box-shadow: 0 0 40px var(--neon-dim), 0 0 80px rgba(0,229,255,0.2);
    text-shadow: none;
}
.enter-btn i { font-size: clamp(1.2rem, 3vw, 2rem); }

@keyframes breathe {
    0%, 100% { box-shadow: 0 0 20px var(--neon-dim); }
    50% { box-shadow: 0 0 40px var(--neon-dim), 0 0 80px rgba(0,229,255,0.15); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(1.2); }
    to   { transform: scale(1); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVIGATION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.premium-nav {
    position: fixed; top: 0; width: 100%;
    z-index: 5000;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: nowrap;
    padding: clamp(0.5rem, 1.5vw, 1.2rem) clamp(1%, 2vw, 5%);
    background: transparent;
    transition: all 0.4s;
    border-bottom: 1px solid transparent;
}
.premium-nav.scrolled {
    background: rgba(2, 6, 17, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: clamp(0.4rem, 1vw, 0.8rem) clamp(1%, 2vw, 5%);
}

.nav-logo span { font-size: clamp(1rem, 2.5vw, 1.8rem); }
.nav-logo .music { font-family: var(--en); font-weight: 900; color: #fff; }
.nav-logo .cue { font-family: var(--en); font-weight: 400; color: var(--neon); }

.nav-links { display: flex; gap: clamp(0.8rem, 2vw, 2.5rem); list-style: none; flex-shrink: 1; overflow: hidden; }
.nav-links a {
    color: var(--text-g);
    text-decoration: none;
    font-family: var(--ar); font-weight: 600; font-size: clamp(0.7rem, 1.2vw, 1.05rem);
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -6px; right: 0;
    width: 0; height: 2px;
    background: var(--neon);
    transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--neon); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.neon-btn {
    padding: clamp(0.5rem, 1vw, 0.7rem) clamp(1rem, 2.5vw, 2rem);
    border: 1px solid var(--neon);
    color: var(--neon);
    text-decoration: none;
    font-family: var(--ar); font-weight: 700;
    font-size: clamp(0.78rem, 1.3vw, 1rem);
    border-radius: 30px;
    transition: all 0.4s;
    background: transparent;
}
.neon-btn:hover {
    background: var(--neon); color: #000;
    box-shadow: 0 0 25px var(--neon-dim);
}

.outline-btn {
    padding: 0.7rem 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    font-family: var(--ar); font-weight: 700;
    border-radius: 30px;
    transition: all 0.4s;
}
.outline-btn:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
}

.music-toggle {
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(0,229,255,0.05);
    color: var(--neon); font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.music-toggle:hover {
    background: var(--neon); color: #000;
    box-shadow: 0 0 20px var(--neon-dim);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-section {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
}

.hero-bg-image {
    position: absolute; inset: 0;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(2,6,17,0.7) 0%, rgba(2,6,17,0.95) 100%);
    z-index: 1;
}
.hero-grain {
    position: absolute; inset: 0;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)"/%3E%3C/svg%3E');
    opacity: 0.04;
    pointer-events: none;
    z-index: 2;
}

/* Floating Instruments */
.hero-instruments {
    position: absolute; inset: 0;
    z-index: 3; pointer-events: none;
}
.instrument { position: absolute; }
.inst-treble { top: 10%; right: 8%; animation: floatSlow 8s ease-in-out infinite; }
.inst-note1  { top: 30%; left: 5%;  animation: floatSlow 6s ease-in-out infinite 1s; }
.inst-note2  { bottom: 25%; right: 15%; animation: floatSlow 7s ease-in-out infinite 2s; }
.inst-note3  { top: 60%; left: 12%; animation: floatSlow 9s ease-in-out infinite 0.5s; }
.inst-note4  { bottom: 10%; left: 50%; animation: floatSlow 10s ease-in-out infinite 3s; }

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%     { transform: translateY(-25px) rotate(5deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    position: relative; z-index: 4;
    padding-top: clamp(4rem, 7vw, 6rem);
    width: 100%;
    align-items: center;
}

.hero-text { text-align: right; }

.vintage-badge {
    display: inline-flex; align-items: center; gap: clamp(5px, 1vw, 10px);
    border: 1px solid var(--border);
    padding: clamp(4px, 1vw, 8px) clamp(10px, 2vw, 20px);
    border-radius: 30px;
    font-family: var(--en); font-size: clamp(0.55rem, 1.2vw, 0.75rem);
    color: var(--neon);
    letter-spacing: clamp(1px, 0.3vw, 2px);
    text-transform: uppercase;
    margin-bottom: clamp(1rem, 2vw, 2rem);
    background: rgba(0,229,255,0.03);
}
.vintage-badge i { font-size: 0.6rem; }

.hero-title {
    font-family: var(--ar);
    font-size: clamp(1.8rem, 7vw, 5rem); font-weight: 900;
    line-height: 1.15;
    margin-bottom: clamp(1rem, 2vw, 2rem);
}
.neon-glow {
    color: var(--neon);
    text-shadow: 0 0 20px var(--neon-dim), 0 0 60px rgba(0,229,255,0.15);
    display: block;
}

.hero-desc {
    font-family: var(--ar);
    font-size: clamp(0.82rem, 1.8vw, 1.15rem);
    color: var(--text-g);
    line-height: 1.9;
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    max-width: 550px;
}

.hero-actions {
    display: flex; gap: clamp(0.6rem, 1.5vw, 1.5rem); flex-wrap: wrap;
}
.hero-btn {
    display: inline-flex; align-items: center; gap: clamp(5px, 1vw, 10px);
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
}

/* Vinyl Record */
.hero-visual {
    display: flex; flex-direction: column;
    align-items: center; gap: 2rem;
}

.vinyl-wrapper {
    position: relative;
    width: clamp(130px, 28vw, 340px); height: clamp(130px, 28vw, 340px);
}
.vinyl-glow {
    position: absolute; inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,229,255,0.15) 0%, transparent 60%);
    animation: pulseGlow 4s ease-in-out infinite;
}
.vinyl-record {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #111 0%, #050505 50%, #0a0a0a 100%);
    border: 4px solid #1a1a2e;
    position: relative;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 0 60px rgba(0,229,255,0.15), inset 0 0 30px rgba(0,0,0,0.5);
    animation: spin 6s linear infinite;
}

.vinyl-groove {
    position: absolute;
    border: 1px solid rgba(0,229,255,0.06);
    border-radius: 50%;
}
.g1 { width: 92%; height: 92%; }
.g2 { width: 76%; height: 76%; }
.g3 { width: 60%; height: 60%; }
.g4 { width: 44%; height: 44%; }

.vinyl-label {
    width: 110px; height: 110px;
    background: linear-gradient(135deg, var(--bg-navy), #0d1a3a);
    border: 2px solid var(--neon-dim);
    border-radius: 50%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    box-shadow: 0 0 20px rgba(0,229,255,0.2);
    z-index: 1;
}
.label-text {
    font-family: var(--en); font-size: 0.9rem;
    font-weight: 700; color: #fff;
    letter-spacing: 3px;
}
.label-sub {
    font-family: var(--en); font-size: 0.7rem;
    color: var(--neon); letter-spacing: 4px;
}

/* Tone Arm */
.tone-arm {
    position: absolute;
    top: -20px; right: -40px;
    z-index: 5;
    transform-origin: top right;
    animation: armSwing 6s ease-in-out infinite;
}
.arm-base {
    width: 20px; height: 20px;
    background: #333; border-radius: 50%;
    border: 2px solid #555;
    position: absolute; top: 0; right: 0;
}
.arm-stick {
    width: 4px; height: 160px;
    background: linear-gradient(to bottom, #666, #333);
    position: absolute; top: 15px; right: 8px;
    transform: rotate(-30deg);
    transform-origin: top;
    border-radius: 2px;
}
.arm-head {
    width: 12px; height: 25px;
    background: #444;
    position: absolute;
    top: 150px; right: -25px;
    transform: rotate(-30deg);
    border-radius: 2px;
    border: 1px solid #555;
}

@keyframes armSwing {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

/* Hero Sound Bars */
.hero-sound-bars {
    display: flex; gap: 5px;
    height: 55px; align-items: flex-end;
}
.sbar {
    width: 8px;
    background: linear-gradient(to top, var(--accent), var(--neon));
    border-radius: 4px;
    transition: height 0.12s ease;
    box-shadow: 0 0 8px var(--neon-dim);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    z-index: 5;
    animation: bounceDown 2s ease-in-out infinite;
}
.mouse {
    width: 26px; height: 42px;
    border: 2px solid var(--neon-dim);
    border-radius: 13px;
    display: flex; justify-content: center;
    padding-top: 8px;
}
.wheel {
    width: 4px; height: 8px;
    background: var(--neon);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}
.scroll-indicator span {
    font-family: var(--ar);
    font-size: 0.8rem;
    color: var(--text-g);
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-section {
    padding: clamp(3rem, 6vw, 8rem) 0;
    position: relative; overflow: hidden;
}
.services-bg {
    position: absolute; inset: 0;
}
.services-bg-img {
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.12;
}
.services-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--bg-abyss) 0%, rgba(10,17,40,0.95) 30%, rgba(10,17,40,0.95) 70%, var(--bg-abyss) 100%);
    z-index: 1;
}
.services-section .container { position: relative; z-index: 2; }

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 5rem);
    display: flex; flex-direction: column;
    align-items: center; gap: clamp(0.4rem, 1vw, 0.8rem);
}
.header-line {
    width: clamp(30px, 5vw, 60px); height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
}
.section-header h2 {
    font-family: var(--ar);
    font-size: clamp(1.4rem, 4.5vw, 3rem); font-weight: 900;
}
.section-header h3 {
    font-family: var(--en);
    color: var(--neon);
    font-size: clamp(0.7rem, 1.6vw, 1.2rem); font-weight: 400;
    letter-spacing: clamp(1px, 0.5vw, 4px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    padding: clamp(1.2rem, 3vw, 3rem);
    border-radius: clamp(14px, 2vw, 24px);
    position: relative; overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.4s,
                box-shadow 0.4s;
    min-height: auto;
}
.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--neon);
    box-shadow: 0 20px 60px rgba(0,229,255,0.08), 0 0 0 1px var(--neon-dim);
}

.card-shimmer {
    position: absolute; inset: 0;
    background: linear-gradient(125deg, transparent 30%, rgba(0,229,255,0.04) 50%, transparent 70%);
    transition: opacity 0.5s;
    opacity: 0;
}
.service-card:hover .card-shimmer {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.card-number {
    position: absolute;
    top: 25px; left: 30px;
    font-family: var(--en);
    font-size: 3.5rem; font-weight: 900;
    color: rgba(0,229,255,0.04);
    pointer-events: none;
    line-height: 1;
}
.service-card:hover .card-number { color: rgba(0,229,255,0.1); }

.card-icon-wrap {
    position: relative;
    width: 70px; height: 70px;
    margin-bottom: 2rem;
}
.icon-ring {
    position: absolute; inset: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover .icon-ring {
    border-color: var(--neon);
    box-shadow: 0 0 20px var(--neon-dim);
}
.card-icon-wrap i {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    color: var(--neon);
}

.card-title-ar {
    font-family: var(--ar);
    font-size: clamp(1.05rem, 2.2vw, 1.7rem); font-weight: 800;
    margin-bottom: 0.3rem;
}
.card-title-en {
    font-family: var(--en);
    font-size: clamp(0.65rem, 1.1vw, 0.85rem);
    color: var(--neon);
    letter-spacing: clamp(1px, 0.3vw, 2px);
    margin-bottom: clamp(0.8rem, 1.5vw, 1.5rem);
    font-weight: 400;
}
.service-card p {
    font-family: var(--ar);
    color: var(--text-g);
    font-size: clamp(0.82rem, 1.3vw, 1rem);
    line-height: 1.8;
}

.card-decor {
    position: absolute;
    bottom: 20px; left: 25px;
    font-size: 3rem;
    color: rgba(0,229,255,0.05);
    pointer-events: none;
}
.service-card:hover .card-decor { color: rgba(0,229,255,0.1); }

/* Exclusive Card */
.exclusive-card {
    grid-column: 1 / -1;
    max-width: 700px;
    margin: 0 auto;
    border-color: rgba(0,229,255,0.3);
    background: linear-gradient(135deg, rgba(10,17,40,0.8) 0%, rgba(0,229,255,0.03) 100%);
}
.exclusive-badge {
    position: absolute;
    bottom: 20px; right: 20px;
    display: flex; align-items: center; gap: 8px;
    background: var(--neon);
    color: #000;
    padding: 6px 18px;
    border-radius: 20px;
    font-family: var(--ar); font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 0 20px var(--neon-dim);
    z-index: 2;
}
.exclusive-badge i { font-size: 0.8rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   QUOTE SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.quote-section {
    padding: clamp(2.5rem, 5vw, 7rem) 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    background: linear-gradient(135deg, var(--bg-abyss) 0%, var(--bg-navy) 50%, var(--bg-abyss) 100%);
}

.quote-notes {
    font-size: clamp(1rem, 2.5vw, 2rem);
    color: var(--neon);
    opacity: 0.3;
    letter-spacing: clamp(5px, 1.5vw, 15px);
    margin: clamp(0.4rem, 1vw, 1rem) 0;
}

blockquote {
    font-family: var(--ar);
    font-size: clamp(1.1rem, 3.8vw, 2.8rem); font-weight: 300;
    line-height: 1.6;
    max-width: min(850px, 90vw);
    margin: 0 auto;
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--en);
    color: var(--neon);
    letter-spacing: clamp(1px, 0.4vw, 3px); font-size: clamp(0.7rem, 1.2vw, 0.9rem);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-section {
    padding: clamp(3rem, 6vw, 8rem) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-intro {
    font-family: var(--ar);
    color: var(--text-g);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 1.9;
}

.contact-list { list-style: none; }
.contact-list li {
    display: flex; align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.contact-icon {
    width: 55px; height: 55px; min-width: 55px;
    background: rgba(0,229,255,0.06);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: var(--neon); font-size: 1.1rem;
    transition: all 0.3s;
}
.contact-list li:hover .contact-icon {
    background: var(--neon); color: #000;
    box-shadow: 0 0 20px var(--neon-dim);
}
.contact-label {
    display: block;
    font-family: var(--ar); font-weight: 800;
    margin-bottom: 5px;
}
.contact-list a, .contact-list p {
    color: var(--text-g);
    text-decoration: none;
    font-family: var(--ar);
    transition: color 0.3s;
    line-height: 1.7;
}
.contact-list a:hover { color: var(--neon); }

/* Glass Card */
.glass-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative; overflow: hidden;
    backdrop-filter: blur(10px);
}
.glass-glow {
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,229,255,0.12) 0%, transparent 70%);
    top: -50px; right: -50px;
    filter: blur(40px);
}
.glass-logo {
    display: flex; flex-direction: row;
    align-items: baseline; justify-content: center;
    gap: 12px; direction: ltr;
    margin-bottom: 1.5rem;
}
.gl-music {
    font-family: var(--en); font-size: 2.5rem;
    font-weight: 900; color: #fff;
    letter-spacing: 8px;
}
.gl-cue {
    font-family: var(--en); font-size: 1.8rem;
    color: var(--neon); letter-spacing: 10px;
}
.glass-divider {
    width: 60px; height: 1px;
    background: var(--neon-dim);
    margin: 1.5rem auto;
}
.glass-hq {
    font-family: var(--en);
    color: var(--text-g);
    letter-spacing: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.glass-notes {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: var(--neon);
    opacity: 0.2;
    letter-spacing: 10px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.elite-footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border);
    background: #010309;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}
.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-socials .social-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(0,229,255,0.05);
    border: 1px solid rgba(0,229,255,0.15);
    color: #fff;
    display: flex; justify-content: center; align-items: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.footer-socials .social-icon:hover {
    background: var(--neon); color: #000;
    border-color: var(--neon);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--neon-dim);
}
.footer-divider {
    width: 180px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.2), transparent);
}
.footer-copy {
    font-family: var(--ar);
    color: var(--text-g); font-size: 0.85rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLL ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fade-in-up {
    opacity: 0; transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-up {
    opacity: 0; transform: translateY(60px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.reveal-scale {
    opacity: 0; transform: scale(0.85);
    transition: opacity 1.2s ease, transform 1.2s ease;
}
.is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KEYFRAMES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” ULTRA WIDE (TV / Large Monitor)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (min-width: 1600px) {
    .container { max-width: 1400px; }
    .splash-music { letter-spacing: min(1vw, 15px); }
    .splash-cue { letter-spacing: min(1.2vw, 20px); }
    .section-header h3 { letter-spacing: min(0.3vw, 4px); }
    .vintage-badge { letter-spacing: min(0.2vw, 2px); }
    cite { letter-spacing: min(0.2vw, 3px); }
    .card-title-en { letter-spacing: min(0.2vw, 2px); }
    .quote-notes { letter-spacing: min(1vw, 15px); }
    .glass-notes { letter-spacing: min(0.8vw, 10px); }
    .glass-hq { letter-spacing: min(0.3vw, 4px); }
    .gl-music { letter-spacing: min(0.6vw, 8px); }
    .gl-cue { letter-spacing: min(0.8vw, 10px); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” TABLET PORTRAIT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-action { display: none; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text { text-align: center; }
    .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { margin-top: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .exclusive-card { grid-column: auto; max-width: 100%; }
    .contact-grid { grid-template-columns: 1fr; }
    .glass-card { display: none; }
}

/* iPad landscape = desktop layout */
@media (max-width: 1024px) and (orientation: landscape) and (min-width: 769px) {
    .hero-grid { grid-template-columns: 1.2fr 1fr; text-align: right; }
    .hero-text { text-align: right; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” MOBILE (phones)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
    /* â€” Nav (compact, wraps nicely) â€” */
    .nav-links { display: none; }
    .nav-action { display: none; }
    .nav-controls { gap: clamp(4px, 1.5vw, 8px); }
    .nav-controls .nav-book-btn {
        padding: clamp(3px, 1vw, 6px) clamp(8px, 2.5vw, 14px);
        font-size: clamp(0.6rem, 2vw, 0.8rem);
        border-radius: 16px;
    }
    .nav-controls .nav-music-btn {
        width: clamp(22px, 7vw, 32px);
        height: clamp(22px, 7vw, 32px);
        font-size: clamp(0.55rem, 1.8vw, 0.75rem);
    }
    .nav-controls .nav-lang { border-radius: 14px; }
    .nav-controls .nav-lang .lang-btn {
        padding: clamp(2px, 0.8vw, 5px) clamp(5px, 2vw, 12px);
        font-size: clamp(0.55rem, 1.8vw, 0.75rem);
    }

    /* â€” Splash â€” */
    .treble-svg { width: clamp(45px, 15vw, 80px); height: clamp(90px, 30vw, 160px); }
    .splash-eq { height: clamp(22px, 7vw, 40px); }

    /* â€” Hero â€” */
    .tone-arm { display: none; }
    .hero-sound-bars { height: clamp(22px, 7vw, 40px); gap: 3px; }
    .sbar { width: clamp(3px, 1vw, 6px); }

    /* â€” Services â€” */
    .card-icon-wrap { width: clamp(38px, 11vw, 60px); height: clamp(38px, 11vw, 60px); margin-bottom: 1rem; }
    .card-icon-wrap i { font-size: clamp(0.9rem, 3vw, 1.5rem); }

    /* â€” Contact â€” */
    .contact-icon { width: clamp(34px, 10vw, 48px); height: clamp(34px, 10vw, 48px); min-width: clamp(34px, 10vw, 48px); }

    /* â€” Booking â€” */
    .form-row { grid-template-columns: 1fr; }

    /* â€” Portfolio & Testimonials â€” */
    .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr; }

    /* â€” Artists (always 2 per row) â€” */
    .artists-grid { grid-template-columns: repeat(2, 1fr) !important; gap: clamp(0.4rem, 1.5vw, 0.8rem); }
    .artist-info { padding: clamp(0.4rem, 1.5vw, 0.8rem); }
    .artist-info h4 { font-size: clamp(0.7rem, 2.5vw, 1rem); }
    .artist-info span { font-size: clamp(0.5rem, 1.8vw, 0.75rem); }

    /* â€” Team (2 per row) â€” */
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: clamp(0.4rem, 1.5vw, 0.8rem); }
    .team-card { padding: clamp(0.6rem, 2vw, 1.2rem); }
    .team-avatar { width: clamp(55px, 20vw, 110px); height: clamp(55px, 20vw, 110px); border-radius: 10px; }
    .team-card h4 { font-size: clamp(0.72rem, 2.5vw, 1rem); }
    .team-card .team-role { font-size: clamp(0.5rem, 1.6vw, 0.7rem); padding: 2px 6px; }
    .team-card .team-bio { font-size: clamp(0.6rem, 1.8vw, 0.82rem); line-height: 1.5; }

    /* â€” Logos â€” */
    .logo-item img { height: clamp(28px, 8vw, 50px); max-width: clamp(60px, 18vw, 110px); }
    .logo-item span { font-size: clamp(0.5rem, 1.5vw, 0.7rem); }

    /* â€” Footer â€” */
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-socials .social-icon { width: clamp(32px, 9vw, 44px); height: clamp(32px, 9vw, 44px); }

    /* â€” Ads & Forms â€” */
    .ad-banner { min-width: clamp(220px, 75vw, 320px); }
    .rf-row { grid-template-columns: 1fr; }
    .review-form-wrap { padding: clamp(0.6rem, 2vw, 1.2rem); }
}

/* ======= ADS SECTION ======= */
.ads-section { padding: 1rem 0; }
.ads-slider { display: flex; gap: 1.5rem; overflow-x: auto; padding: 0.5rem 0; }
.ad-banner {
    display: flex; align-items: center; gap: 1rem;
    background: linear-gradient(135deg, rgba(0,229,255,0.08), rgba(0,136,255,0.05));
    border: 1px solid var(--border);
    border-radius: 14px; padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1rem, 2vw, 1.8rem);
    min-width: clamp(260px, 35vw, 400px); flex-shrink: 0;
    transition: border-color 0.3s, transform 0.3s;
}
.ad-banner:hover { border-color: var(--neon); transform: translateY(-3px); }
.ad-banner > i { font-size: clamp(1.2rem, 2vw, 1.8rem); color: var(--neon); flex-shrink: 0; }
.ad-banner strong { display: block; font-family: var(--ar); font-size: clamp(0.82rem, 1.3vw, 1rem); color: var(--neon); margin-bottom: 4px; }
.ad-banner p { font-family: var(--ar); color: var(--text-g); font-size: clamp(0.72rem, 1.1vw, 0.85rem); margin: 0; line-height: 1.5; }

/* ======= PORTFOLIO SECTION ======= */
.portfolio-section {
    padding: clamp(3rem, 5vw, 6rem) 0;
    background: radial-gradient(ellipse at center, rgba(0,229,255,0.03) 0%, transparent 70%);
}
.portfolio-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 90vw), 1fr));
    gap: 1.5rem; margin-top: clamp(1.5rem, 3vw, 3rem);
}
.portfolio-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 18px; padding: clamp(1.2rem, 2.5vw, 2rem);
    transition: all 0.4s; position: relative; overflow: hidden;
}
.portfolio-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--neon), var(--accent));
    opacity: 0; transition: opacity 0.3s;
}
.portfolio-card:hover { transform: translateY(-8px); border-color: var(--neon); }
.portfolio-card:hover::before { opacity: 1; }
.portfolio-cat {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0,229,255,0.08); color: var(--neon);
    padding: 4px 14px; border-radius: 20px;
    font-family: var(--ar); font-size: clamp(0.7rem, 1vw, 0.8rem); font-weight: 700;
    margin-bottom: 1rem;
}
.portfolio-card h4 { font-family: var(--ar); font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 800; margin-bottom: 0.8rem; }
.portfolio-card p { font-family: var(--ar); color: var(--text-g); font-size: clamp(0.78rem, 1.1vw, 0.9rem); line-height: 1.7; margin-bottom: 1rem; }
.portfolio-date { font-family: var(--ar); color: rgba(0,229,255,0.5); font-size: clamp(0.7rem, 1vw, 0.8rem); display: flex; align-items: center; gap: 6px; }

/* ======= TESTIMONIALS SECTION ======= */
.testimonials-section {
    padding: clamp(3rem, 5vw, 6rem) 0;
    background: var(--bg-abyss);
    position: relative;
}
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 90vw), 1fr));
    gap: 1.5rem; margin-top: clamp(1.5rem, 3vw, 3rem);
}
.testimonial-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 18px; padding: clamp(1.2rem, 2.5vw, 2rem);
    transition: all 0.4s; position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(0,229,255,0.4); }
.stars { color: #FFD700; font-size: clamp(0.9rem, 1.5vw, 1.2rem); margin-bottom: 1rem; letter-spacing: 4px; }
.testimonial-card p { font-family: var(--ar); color: var(--text-g); font-size: clamp(0.82rem, 1.2vw, 0.95rem); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: clamp(35px, 5vw, 45px); height: clamp(35px, 5vw, 45px); border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--neon));
    display: flex; justify-content: center; align-items: center;
    font-family: var(--ar); font-weight: 900; font-size: clamp(0.9rem, 1.3vw, 1.1rem); color: #000;
}
.testimonial-author strong { display: block; font-family: var(--ar); font-size: clamp(0.82rem, 1.2vw, 0.95rem); }
.testimonial-author span { font-family: var(--ar); color: var(--text-g); font-size: clamp(0.7rem, 1vw, 0.8rem); }

/* ======= BOOKING SECTION ======= */
.booking-section {
    padding: clamp(3rem, 5vw, 6rem) 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,136,255,0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(0,229,255,0.04) 0%, transparent 60%);
}
.booking-wrapper { max-width: min(750px, 95vw); margin: clamp(1.5rem, 3vw, 3rem) auto 0; }
.booking-form {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: clamp(14px, 2vw, 24px); padding: clamp(1rem, 3vw, 3rem);
    backdrop-filter: blur(15px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.8rem, 2vw, 1.5rem); }
.booking-form .form-group { margin-bottom: clamp(1rem, 2vw, 1.5rem); }
.booking-form label {
    display: block; margin-bottom: 0.5rem;
    font-family: var(--ar); font-weight: 600; font-size: clamp(0.78rem, 1.2vw, 0.9rem); color: var(--text-g);
}
.booking-form label i { color: var(--neon); margin-left: 6px; }
.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%; padding: clamp(9px, 1.5vw, 13px) clamp(10px, 2vw, 16px);
    background: rgba(0,229,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px; color: #fff;
    font-family: var(--ar); font-size: clamp(0.82rem, 1.2vw, 0.95rem);
    outline: none; transition: border-color 0.3s, box-shadow 0.3s;
    resize: vertical;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
    border-color: var(--neon); box-shadow: 0 0 15px rgba(0,229,255,0.1);
}
.booking-form input::placeholder, .booking-form textarea::placeholder { color: rgba(255,255,255,0.2); }
.booking-form select option { background: var(--bg-navy); color: #fff; }
.submit-booking-btn {
    width: 100%; padding: clamp(10px, 1.5vw, 14px);
    background: var(--neon); color: #000;
    border: none; border-radius: 14px;
    font-family: var(--ar); font-weight: 800; font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    cursor: pointer; transition: all 0.3s; margin-top: 0.5rem;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.submit-booking-btn:hover { box-shadow: 0 0 30px var(--neon-dim); transform: translateY(-3px); }
.submit-booking-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success {
    display: flex; align-items: center; gap: 10px;
    margin-top: 1.5rem; padding: clamp(10px, 1.5vw, 14px) clamp(12px, 2vw, 20px);
    background: rgba(0,230,118,0.1);
    border: 1px solid rgba(0,230,118,0.3);
    border-radius: 12px; color: #00E676;
    font-family: var(--ar); font-size: clamp(0.82rem, 1.2vw, 0.95rem);
}
.form-success i { font-size: 1.3rem; }

/* ======= FOOTER LINKS ======= */
.footer-links { display: flex; gap: 1.5rem; align-items: center; }
.footer-links a {
    color: var(--text-g); text-decoration: none; font-family: var(--ar);
    font-size: clamp(0.78rem, 1.1vw, 0.9rem); transition: color 0.3s;
}
.footer-links a:hover { color: var(--neon); }

