/* 
   Pınar Soykan - Premium Artist Web Style
   Theme: Luxury Obsidian Black & Glowing Crimson Red
   Aesthetics: Glassmorphism, Micro-animations, Neon Glow, Mobile Responsive
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --bg-primary: #060606;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --accent-red: #E50914;
    --accent-red-hover: #ff212f;
    --accent-red-glow: rgba(229, 9, 20, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-muted: #666666;
    --glass-bg: rgba(15, 15, 15, 0.65);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-glow: rgba(229, 9, 20, 0.2);
    --card-shadow: rgba(0, 0, 0, 0.8);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection & Scrollbar */
::selection {
    background-color: var(--accent-red);
    color: var(--text-primary);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--text-primary);
    border: 1px solid transparent;
    box-shadow: 0 4px 15px var(--accent-red-glow);
}

.btn-primary:hover {
    background: var(--accent-red-hover);
    box-shadow: 0 6px 25px rgba(229, 9, 20, 0.7);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-red);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.2);
    transform: translateY(-2px);
}

.btn-spotify {
    background: #1DB954;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.btn-spotify:hover {
    background: #1ed760;
    box-shadow: 0 6px 25px rgba(29, 185, 84, 0.5);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--card-shadow);
}

/* Section Common */
section {
    padding: 7.5rem 0;
    position: relative;
    background-color: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .tag {
    display: inline-block;
    color: var(--accent-red);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
    position: relative;
}

.section-header .tag::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent-red);
    margin: 6px auto 0;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-primary) 30%, #a3a3a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(6, 6, 6, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

header.scrolled .logo img {
    height: 38px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.2rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px var(--accent-red);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-quick);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero {
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
    background: #000;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(6, 6, 6, 0.5) 0%, 
                rgba(6, 6, 6, 0.75) 60%, 
                var(--bg-primary) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 0 2rem;
    margin-top: 50px;
}

.hero-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content h1 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-tagline {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.scroll-down {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-quick);
}

.scroll-down:hover {
    color: var(--accent-red);
    opacity: 1;
}

.scroll-down span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: 8px;
    animation: bounce 2s infinite;
}

/* ==========================================================================
   Music & Spotlight Section
   ========================================================================== */
#music {
    background: radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 40%), var(--bg-primary);
}

.music-grid {
    display: flex;
    justify-content: center;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}

.dsp-widget {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
}

.dsp-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dsp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.dsp-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.dsp-logo {
    width: 24px;
    height: 24px;
    transition: var(--transition-quick);
}

.dsp-spotify:hover {
    background: rgba(30, 215, 96, 0.08);
    border-color: #1ED760;
    color: #1ED760;
    box-shadow: 0 0 15px rgba(30, 215, 96, 0.2);
    transform: translateY(-2px);
}

.dsp-apple:hover {
    background: rgba(252, 60, 91, 0.08);
    border-color: #FC3C5B;
    color: #FC3C5B;
    box-shadow: 0 0 15px rgba(252, 60, 91, 0.2);
    transform: translateY(-2px);
}

.dsp-ytmusic:hover {
    background: rgba(255, 0, 0, 0.08);
    border-color: #FF0000;
    color: #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

.dsp-tidal:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #00FFFF;
    color: #00FFFF;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Brand styles and tracklist cleaned up */

/* ==========================================================================
   Video Showcase Section (iPhone Sim & Gallery)
   ========================================================================== */
#video-showcase {
    background: var(--bg-secondary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

/* Highly premium iPhone Mockup styling */
.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup-wrapper::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.iphone-15 {
    width: 320px;
    height: 650px;
    background: #09090b;
    border-radius: 48px;
    position: relative;
    z-index: 2;
    border: 9px solid #27272a; /* Metallic bezel */
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.9),
        0 0 0 3px rgba(63, 63, 70, 0.5), /* Outer edge outline */
        inset 0 0 5px rgba(0,0,0,0.8);
    overflow: hidden;
}

/* Dynamic Island */
.iphone-15::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 25px;
    background: #000;
    border-radius: 15px;
    z-index: 10;
    box-shadow: inset 0 0 2px rgba(255,255,255,0.1);
}

.iphone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
    border-radius: 38px;
    overflow: hidden;
}

.iphone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Smartphone Overlays for Reel experience */
.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.1) 80%, rgba(0,0,0,0.4) 100%);
    z-index: 5;
    padding: 2.5rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.reel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 600;
}

.reel-live-badge {
    background: var(--accent-red);
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulse 1.5s infinite;
}

.reel-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    pointer-events: auto;
}

.reel-artist-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.reel-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-red);
    object-fit: cover;
}

.reel-artist-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.reel-caption {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.3;
}

.reel-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.2rem;
}

.reel-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: var(--transition-quick);
}

.reel-btn:hover {
    background: var(--accent-red);
    border-color: transparent;
    transform: scale(1.1);
}

.showcase-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

.showcase-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.youtube-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.youtube-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.youtube-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.04);
    border-color: var(--glass-border-glow);
}

.yt-thumb-wrapper {
    width: 140px;
    height: 85px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.yt-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
}

.youtube-card:hover .yt-play-overlay {
    background: rgba(229, 9, 20, 0.4);
}

.yt-play-overlay svg {
    color: #fff;
    width: 28px;
    height: 28px;
    transition: var(--transition-quick);
}

.youtube-card:hover .yt-play-overlay svg {
    transform: scale(1.15);
}

.yt-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yt-details span {
    font-size: 0.75rem;
    color: var(--accent-red);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.yt-details h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ==========================================================================
   Photo Gallery Section
   ========================================================================== */
#gallery {
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

/* Varied spans for modern high-fashion collage grid */
.gallery-item.span-4 { grid-column: span 4; height: 320px; }
.gallery-item.span-8 { grid-column: span 8; height: 320px; }
.gallery-item.span-6 { grid-column: span 6; height: 420px; }
.gallery-item.span-3 { grid-column: span 3; height: 420px; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 6, 6, 0.95) 0%, rgba(6, 6, 6, 0.2) 60%, rgba(6, 6, 6, 0) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--accent-red-glow);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.25);
}

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

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

.gallery-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-info span {
    font-size: 0.85rem;
    color: var(--accent-red);
    font-weight: 600;
    letter-spacing: 0.05em;
    transform: translateY(15px);
    transition: var(--transition-smooth) 0.05s;
}

.gallery-item:hover .gallery-info h4,
.gallery-item:hover .gallery-info span {
    transform: translateY(0);
}

/* Lightbox Styling */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 4, 0.96);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    padding: 2rem;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: var(--transition-quick);
}

.lightbox-close:hover {
    color: var(--accent-red);
    opacity: 1;
    transform: scale(1.1);
}

/* Biography Section Removed */

/* ==========================================================================
   Contact & Booking Section
   ========================================================================== */
#contact {
    background: radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.08) 0%, transparent 40%), var(--bg-primary);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.contact-card {
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.15);
    transform: translateY(-5px);
}

.contact-flag {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.1);
    border: 1.5px solid var(--accent-red);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: var(--transition-quick);
}

.contact-card:hover .contact-flag {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-red-glow);
}

.contact-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card .role {
    font-size: 0.85rem;
    color: var(--accent-red);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.contact-phone {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: block;
}

.contact-phone:hover {
    color: var(--accent-red);
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.quick-contact {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.quick-contact p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: #fff;
    transform: scale(1.15);
}

.social-icon.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); border-color: transparent; }
.social-icon.tiktok:hover { background: #000000; border-color: #00f2fe; box-shadow: -2px -2px 0px #ff007f, 2px 2px 0px #00f2fe; }
.social-icon.youtube:hover { background: #FF0000; border-color: transparent; }
.social-icon.spotify:hover { background: #1DB954; border-color: transparent; }

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
    padding: 3rem 0;
    background: #030303;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

footer .footer-logo {
    max-width: 140px;
    margin: 0 auto 1.5rem;
    opacity: 0.6;
    transition: var(--transition-quick);
}

footer .footer-logo:hover {
    opacity: 1;
}

footer p {
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-8px) rotate(45deg);
    }
    60% {
        transform: translateY(-4px) rotate(45deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Reveal on Scroll class */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .music-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .phone-mockup-wrapper {
        order: 2; /* Move iPhone mockup below text details on tablet/mobile */
    }
    

    
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 32px !important;
        width: auto !important;
        max-width: 150px !important;
    }
    
    header.scrolled .logo img {
        height: 26px !important;
    }
    
    .dsp-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .hero-tagline {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #09090b;
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        z-index: 99;
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Close icon transformation on toggle active */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Collage Grid items fallback on smaller screen */
    .gallery-grid {
        grid-gap: 1rem;
    }
    
    .gallery-item.span-4,
    .gallery-item.span-8,
    .gallery-item.span-6,
    .gallery-item.span-3 {
        grid-column: span 6;
        height: 280px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2.2rem 1.5rem;
    }
    
    .contact-phone {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .gallery-item.span-4,
    .gallery-item.span-8,
    .gallery-item.span-6,
    .gallery-item.span-3 {
        grid-column: span 12;
        height: 250px;
    }
    
    .iphone-15 {
        width: 280px;
        height: 560px;
        border-width: 7px;
    }
    
    .iphone-15::after {
        width: 80px;
        height: 22px;
    }
    
    .yt-thumb-wrapper {
        width: 100px;
        height: 65px;
    }
    
    .youtube-card {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .yt-details h4 {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Language Selector Styling
   ========================================================================== */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 3px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-quick);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--accent-red);
    color: var(--text-primary);
    box-shadow: 0 0 10px var(--accent-red-glow);
}

/* RTL Layout support for Arabic */
body.rtl-dir {
    direction: rtl;
    text-align: right;
}

body.rtl-dir .nav-links {
    right: auto;
    left: -100%;
}

body.rtl-dir .nav-links.active {
    left: 0;
    right: auto;
}

body.rtl-dir .contact-flag {
    margin-right: auto;
    margin-left: auto;
}

body.rtl-dir .bio-quote {
    border-left: none;
    border-right: 4px solid var(--accent-red);
    padding-left: 0;
    padding-right: 1.5rem;
}

body.rtl-dir .btn svg {
    margin-right: 0;
    margin-left: 0.5rem;
}

body.rtl-dir .contact-tr-title,
body.rtl-dir .contact-tr-role,
body.rtl-dir .contact-eu-title,
body.rtl-dir .contact-eu-role,
body.rtl-dir .contact-label-title,
body.rtl-dir .contact-label-role {
    text-align: center;
}

/* ==========================================================================
   AI Chatbot Widget Styling (ChatGPT Style)
   ========================================================================== */
#ai-chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    font-family: var(--font-body);
}

#ai-chat-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-red);
    border: 1.5px solid var(--glass-border);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4), 0 0 15px var(--accent-red-glow);
    transition: var(--transition-smooth);
    position: relative;
}

#ai-chat-bubble:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.5), 0 0 25px var(--accent-red-glow);
}

.ai-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-red);
    animation: pulseGlow 2s infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

#ai-chat-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 520px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 9, 20, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    pointer-events: none;
    transition: cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
    transform-origin: bottom right;
}

#ai-chat-panel.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.ai-chat-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
}

.ai-chat-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

.ai-chat-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--accent-red);
}

.ai-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    border: 2px solid #000;
}

.ai-chat-title-info {
    flex: 1;
    margin-left: 0.75rem;
    text-align: left;
}

body.rtl-dir .ai-chat-title-info {
    margin-left: 0;
    margin-right: 0.75rem;
    text-align: right;
}

.ai-chat-title-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.ai-subtitle {
    font-size: 0.7rem;
    color: #10b981;
    font-weight: 500;
}

#ai-chat-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-quick);
}

#ai-chat-close:hover {
    color: var(--accent-red);
}

.ai-chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-behavior: smooth;
}

.ai-chat-message {
    max-width: 80%;
    padding: 0.85rem 1.1rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}

body.rtl-dir .ai-chat-message {
    text-align: right;
}

.ai-chat-message.system {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid var(--glass-border);
}

body.rtl-dir .ai-chat-message.system {
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 18px;
}

.ai-chat-message.user {
    background: var(--accent-red);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.2);
}

body.rtl-dir .ai-chat-message.user {
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 18px;
}

/* Typing Indicator Animation */
.ai-typing-indicator {
    display: flex;
    gap: 4px;
    padding: 6px 0;
}

.ai-typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--text-secondary);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite both;
}

.ai-typing-indicator span:nth-child(2) {
    animation-delay: .2s;
}

.ai-typing-indicator span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.ai-chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.ai-suggest-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-quick);
}

.ai-suggest-btn:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: var(--accent-red-glow);
    color: var(--text-primary);
}

.ai-chat-input-area {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.01);
}

#ai-chat-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-quick);
}

#ai-chat-input:focus {
    border-color: var(--accent-red-glow);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.15);
}

#ai-chat-send {
    background: var(--accent-red);
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-quick);
    box-shadow: 0 4px 10px rgba(229, 9, 20, 0.3);
}

#ai-chat-send:hover {
    background: var(--accent-red-hover);
    transform: scale(1.05);
}

/* Responsive constraints for mobile viewports */
@media (max-width: 768px) {
    .header-right {
        gap: 0.75rem;
    }
    .lang-btn {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    #ai-chat-widget {
        bottom: 1rem;
        right: 1rem;
    }
    #ai-chat-panel {
        width: calc(100vw - 2rem);
        height: 480px;
        bottom: 70px;
    }
}
