/* ═══════════════ BDM Films Homepage ═══════════════ */
:root {
    --h-bg: #06080d;
    --h-card: #0f1319;
    --h-surface: #151a23;
    --h-accent: #6366f1;
    --h-accent2: #a855f7;
    --h-cyan: #22d3ee;
    --h-gold: #f59e0b;
    --h-pink: #ec4899;
    --h-green: #10b981;
    --h-grad: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --h-glow: 0 0 40px rgba(99,102,241,0.25);
    --h-radius: 20px;
    --h-radius-sm: 12px;
}

/* ═══════════════ HERO ═══════════════ */
.bdm-hero { min-height: 100vh; position: relative; overflow: hidden; background: var(--h-bg); display: flex; align-items: center; }
.hero-mesh-bg {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(99,102,241,0.15), transparent),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(168,85,247,0.12), transparent),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(236,72,153,0.08), transparent);
    animation: meshShift 12s ease-in-out infinite alternate;
}
@keyframes meshShift {
    0% { opacity: .7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 2; overflow: hidden; }
.hero-video-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease; }
.hero-video-slide.active { opacity: .45; }
.hero-video-slide video { width: 100%; height: 100%; object-fit: cover; border: 0; }
.hero-yt-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 0;
}
.hero-gradient-overlay {
    position: absolute; inset: 0; z-index: 3;
    background: linear-gradient(to top, var(--h-bg) 0%, rgba(6,8,13,0.6) 40%, rgba(6,8,13,0.3) 70%, rgba(6,8,13,0.7) 100%);
}
.min-vh-85 { min-height: 85vh; }

.hero-content { padding: 2rem 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.25);
    border-radius: 50px; padding: 8px 20px; font-size: .8rem; font-weight: 600;
    color: #a5b4fc; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #6366f1; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(99,102,241,.6); } 50% { box-shadow: 0 0 0 8px rgba(99,102,241,0); } }

.hero-title { font-family: 'Outfit', sans-serif; margin-bottom: 1.5rem; line-height: 1.1; }
.hero-title-line {
    display: block; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-title-accent {
    display: block; font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 500;
    background: var(--h-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-top: .5rem;
}
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.55); max-width: 500px; line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
    background: var(--h-grad); color: #fff; border: none; border-radius: 50px;
    font-weight: 700; font-size: .95rem; text-decoration: none; text-transform: uppercase;
    letter-spacing: .5px; transition: all .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 8px 25px rgba(99,102,241,.35);
}
.btn-hero-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 35px rgba(99,102,241,.5); color: #fff; }
.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
    background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px; font-weight: 600; font-size: .95rem; text-decoration: none;
    backdrop-filter: blur(10px); transition: all .35s ease;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); transform: translateY(-2px); color: #fff; }
.btn-lg { padding: 16px 40px !important; font-size: 1rem !important; }

/* Hero Visual (Floating Cards - 2x2 Grid) */
.hero-visual { position: relative; width: 400px; height: 460px; perspective: 800px; }
.hero-card {
    position: absolute; width: 150px; padding: 24px 16px; border-radius: var(--h-radius);
    background: rgba(255,255,255,.04); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08); text-align: center;
    transition: all .6s cubic-bezier(.34,1.56,.64,1); cursor: pointer;
}
.hero-card i { font-size: 1.8rem; display: block; margin-bottom: 8px; transition: transform 0.4s ease; }
.hero-card span { font-weight: 700; font-size: .95rem; display: block; }
.hero-card small { font-size: .7rem; color: rgba(255,255,255,.45); }
.hero-card-glow {
    position: absolute; inset: -1px; border-radius: var(--h-radius); opacity: 0;
    transition: opacity .5s; z-index: -1;
}
.hero-card:hover .hero-card-glow { opacity: 1; }
.hero-card:hover { transform: translateY(-12px) scale(1.08) rotate(2deg); border-color: rgba(255,255,255,.3); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.hero-card:hover i { transform: scale(1.2); }

.hero-card-1 { top: 10px; left: 20px; animation: float1 6s ease-in-out infinite; }
.hero-card-1 i { color: var(--h-accent); }
.hero-card-1 .hero-card-glow { background: radial-gradient(circle, rgba(99,102,241,.2), transparent 70%); }

.hero-card-2 { top: 10px; right: 20px; animation: float2 7s ease-in-out infinite; }
.hero-card-2 i { color: var(--h-pink); }
.hero-card-2 .hero-card-glow { background: radial-gradient(circle, rgba(236,72,153,.2), transparent 70%); }

.hero-card-3 { bottom: 60px; left: 20px; animation: float3 5s ease-in-out infinite; }
.hero-card-3 i { color: var(--h-cyan); }
.hero-card-3 .hero-card-glow { background: radial-gradient(circle, rgba(34,211,238,.2), transparent 70%); }

.hero-card-4 { bottom: 60px; right: 20px; animation: float4 6.5s ease-in-out infinite; }
.hero-card-4 i { color: var(--h-gold); }
.hero-card-4 .hero-card-glow { background: radial-gradient(circle, rgba(245,158,11,.2), transparent 70%); }

.hero-orbit {
    position: absolute; inset: -30px; border-radius: 50%;
    border: 1px dashed rgba(255,255,255,.06); animation: spin 30s linear infinite;
}

@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes float3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float4 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-mute-btn {
    position: absolute; bottom: 2rem; right: 2rem; z-index: 20;
    width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06); backdrop-filter: blur(10px);
    color: #fff; font-size: 1rem; cursor: pointer; transition: all .3s;
}
.hero-mute-btn:hover { background: rgba(255,255,255,.15); }

/* ═══════════════ STATS BAR ═══════════════ */
.stats-bar { background: var(--h-bg); padding: 0; position: relative; z-index: 10; }
.stats-bar-inner {
    display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap;
    padding: 2rem 2.5rem; border-radius: var(--h-radius); gap: 1.5rem;
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
}
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; color: #fff; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.08); }
@media (max-width: 768px) { .stat-divider { display: none; } .stat-number { font-size: 1.4rem; } }

/* ═══════════════ SECTIONS ═══════════════ */
.section-dark { background: var(--h-bg); }
.section-alt { background: var(--h-card); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--h-accent); margin-bottom: .75rem;
}
.section-tag-cyan { color: var(--h-cyan); }
.section-tag-gold { color: var(--h-gold); }
.section-tag-green { color: var(--h-green); }
.section-tag-pink { color: var(--h-pink); }
.section-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.section-desc { color: rgba(255,255,255,.45); font-size: 1.05rem; max-width: 550px; margin: .75rem auto 0; }

.btn-section {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: .9rem;
    background: rgba(99,102,241,.12); color: #a5b4fc; border: 1px solid rgba(99,102,241,.25);
    text-decoration: none; transition: all .3s;
}
.btn-section:hover { background: rgba(99,102,241,.25); color: #c7d2fe; transform: translateY(-2px); }
.btn-section-sm {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 22px; border-radius: 50px; font-weight: 600; font-size: .85rem;
    background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.12);
    text-decoration: none; transition: all .3s;
}
.btn-section-sm:hover { border-color: var(--h-accent); color: var(--h-accent); }
.btn-section-sm.active { background: var(--h-accent); color: #fff; border-color: var(--h-accent); box-shadow: 0 4px 15px rgba(99,102,241,0.3); }

/* ═══════════════ ARTIST GRID ═══════════════ */
.artist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.5rem; }
.artist-card-link { text-decoration: none; color: inherit; }
.artist-card {
    text-align: center; padding: 2rem 1rem; border-radius: var(--h-radius);
    background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.05);
    transition: all .4s cubic-bezier(.4,0,.2,1);
}
.artist-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.05); border-color: rgba(99,102,241,.3); box-shadow: var(--h-glow); }
.artist-avatar-wrap { position: relative; width: 90px; height: 90px; margin: 0 auto 1rem; }
.artist-avatar { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(99,102,241,.4); }
.artist-avatar-placeholder {
    width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: var(--h-grad); font-size: 2rem; font-weight: 800; color: #fff;
}
.artist-verified {
    position: absolute; bottom: 2px; right: 2px; width: 24px; height: 24px; border-radius: 50%;
    background: var(--h-accent); display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--h-bg);
}
.artist-verified i { font-size: .6rem; color: #fff; }
.artist-name { font-weight: 700; font-size: .95rem; color: #fff; margin-bottom: 4px; }
.artist-role { font-size: .75rem; color: var(--h-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.artist-rating { margin-top: 8px; font-size: .8rem; color: var(--h-gold); font-weight: 600; }
.artist-rating i { font-size: .7rem; }

/* ═══════════════ CAROUSEL ═══════════════ */
.carousel-wrap { position: relative; }
.carousel-track {
    display: flex; gap: 1.25rem; overflow-x: auto; scroll-behavior: smooth;
    padding: 1rem .5rem 2rem; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-btn {
    position: absolute; top: 50%; width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.08); backdrop-filter: blur(10px); color: #fff; border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    z-index: 10; transform: translateY(-50%); transition: all .3s; font-size: .9rem;
}
.carousel-btn:hover { background: var(--h-accent); border-color: var(--h-accent); }
.carousel-btn-left { left: -10px; }
.carousel-btn-right { right: -10px; }
@media (max-width: 768px) { .carousel-btn { display: none; } }

/* ═══════════════ FILM CARDS ═══════════════ */
.film-card { flex: 0 0 220px; cursor: pointer; transition: all .5s cubic-bezier(.4,0,.2,1); }
.film-card:hover { transform: translateY(-10px) scale(1.02); }
.film-poster {
    position: relative; aspect-ratio: 2/3; border-radius: var(--h-radius); overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
}
.film-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.film-card:hover .film-poster img { transform: scale(1.08); }
.film-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,.5); display: flex;
    align-items: center; justify-content: center; opacity: 0; transition: .4s;
}
.film-card:hover .film-overlay { opacity: 1; }
.film-play {
    width: 60px; height: 60px; border-radius: 50%; background: #fff; color: var(--h-accent);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
    transform: scale(.7); transition: .4s cubic-bezier(.175,.885,.32,1.275);
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.film-card:hover .film-play { transform: scale(1); }
.film-year {
    position: absolute; top: 12px; right: 12px;
    background: rgba(0,0,0,.6); backdrop-filter: blur(8px); padding: 4px 12px;
    border-radius: 20px; font-size: .75rem; font-weight: 700; border: 1px solid rgba(255,255,255,.1);
}
.film-info { padding: .75rem .25rem 0; }
.film-info h5 { font-weight: 700; font-size: .95rem; color: #fff; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.film-info span { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ═══════════════ MUSIC CARDS ═══════════════ */
.music-card-home { flex: 0 0 220px; cursor: pointer; transition: all .5s cubic-bezier(.4,0,.2,1); }
.music-card-home:hover { transform: translateY(-10px) scale(1.02); }
.music-cover {
    position: relative; aspect-ratio: 1; border-radius: var(--h-radius); overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
}
.music-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.music-card-home:hover .music-cover img { transform: scale(1.08); }
.music-cover-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,.5); display: flex;
    align-items: center; justify-content: center; opacity: 0; transition: .4s;
}
.music-card-home:hover .music-cover-overlay { opacity: 1; }
.music-play-btn {
    width: 60px; height: 60px; border-radius: 50%; background: #fff; color: var(--h-cyan);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
    transform: scale(.7); transition: .4s cubic-bezier(.175,.885,.32,1.275);
}
.music-card-home:hover .music-play-btn { transform: scale(1); }
.music-bars-anim {
    position: absolute; bottom: 16px; left: 16px; display: flex; gap: 3px; align-items: flex-end; height: 25px;
}
.music-bars-anim span {
    width: 3px; background: rgba(255,255,255,.7); border-radius: 2px;
    animation: barBounce 1.2s ease infinite;
}
.music-bars-anim span:nth-child(2) { animation-delay: .15s; }
.music-bars-anim span:nth-child(3) { animation-delay: .3s; }
.music-bars-anim span:nth-child(4) { animation-delay: .45s; }
@keyframes barBounce { 0%,100% { height: 6px; } 50% { height: 22px; } }
.music-meta { padding: .75rem .25rem 0; }
.music-meta h5 { font-weight: 700; font-size: .95rem; color: #fff; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.music-meta span { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ═══════════════ POEM SECTION ═══════════════ */
.poem-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 991px) { .poem-showcase { grid-template-columns: 1fr; } }
.poem-quote { font-size: 1.1rem; color: rgba(255,255,255,.65); line-height: 2; font-style: italic; position: relative; padding-left: 1.5rem; border-left: 3px solid var(--h-gold); }
.poem-quote-mark { position: absolute; top: -20px; left: -10px; font-size: 5rem; color: rgba(255,255,255,.05); font-family: Georgia, serif; }
.poem-card {
    padding: 3.5rem; border-radius: var(--h-radius); text-align: center;
    background: var(--h-grad); box-shadow: 0 20px 60px rgba(99,102,241,.25);
}
.poem-card h3 { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: .75rem; }
.poem-card p { font-size: 1.1rem; color: rgba(255,255,255,.8); }
.poem-stats { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; font-size: .9rem; color: rgba(255,255,255,.7); }
.poem-stats i { margin-right: 6px; }

/* ═══════════════ ASSET CARDS ═══════════════ */
.asset-card { flex: 0 0 220px; text-decoration: none; color: #fff; transition: all .5s cubic-bezier(.4,0,.2,1); display: block; }
.asset-card:hover { transform: translateY(-10px) scale(1.02); color: #fff; }
.asset-thumb {
    position: relative; aspect-ratio: 1; border-radius: var(--h-radius); overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
}
.asset-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.asset-card:hover .asset-thumb img { transform: scale(1.08); }
.asset-category {
    position: absolute; top: 12px; left: 12px;
    background: rgba(99,102,241,.8); backdrop-filter: blur(8px); padding: 4px 14px;
    border-radius: 20px; font-size: .7rem; font-weight: 700; text-transform: uppercase;
}
.asset-info { padding: .75rem .25rem 0; }
.asset-info h6 { font-weight: 700; font-size: .9rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.asset-price { font-weight: 800; font-size: 1.1rem; color: var(--h-accent); }

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card {
    padding: 2rem; border-radius: var(--h-radius); background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06); transition: all .4s;
}
.testimonial-card:hover { border-color: rgba(99,102,241,.2); transform: translateY(-4px); }
.testimonial-stars { color: var(--h-gold); font-size: .85rem; margin-bottom: 1rem; display: flex; gap: 3px; }
.testimonial-text { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%; background: var(--h-grad);
    display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: .9rem;
}
.testimonial-author strong { display: block; font-size: .9rem; color: #fff; }
.testimonial-author span { font-size: .75rem; color: rgba(255,255,255,.4); }

/* ═══════════════ CTA SECTION ═══════════════ */
.cta-section {
    position: relative; overflow: hidden; padding: 6rem 0;
    background: var(--h-bg);
}
.cta-mesh {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(99,102,241,.15), transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(168,85,247,.12), transparent 60%);
}
.cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-desc { font-size: 1.1rem; color: rgba(255,255,255,.5); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

.gradient-text-animated {
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #6366f1);
    background-size: 300% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: gradShift 6s ease infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ═══════════════ REVEAL ANIMATION ═══════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: all .8s cubic-bezier(.23,1,.32,1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ═══════════════ NEW COMPONENTS FOR REVAMP ═══════════════ */

/* Language Chips */
.hero-lang-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.lang-chip {
    padding: 6px 16px; border-radius: 50px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
    font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: all 0.3s ease;
}
.lang-chip:hover { background: rgba(99,102,241,0.2); border-color: var(--h-accent); color: #fff; transform: translateY(-2px); }
.lang-chip.more { background: transparent; border-style: dashed; }

/* Pill Toggle */
.hero-toggle-pill {
    display: inline-flex; background: rgba(0,0,0,0.3); padding: 4px;
    border-radius: 50px; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 2.5rem;
}
.toggle-btn {
    padding: 8px 24px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
    color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toggle-btn.active { background: var(--h-grad); color: #fff; box-shadow: 0 4px 15px rgba(99,102,241,0.3); }

/* AI Search Bar */
.hero-ai-search { max-width: 500px; position: relative; margin-bottom: 2rem; }
.hero-ai-search input {
    width: 100%; padding: 16px 24px 16px 54px; border-radius: 50px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 1rem; backdrop-filter: blur(10px); transition: all 0.3s;
}
.hero-ai-search input:focus { outline: none; border-color: var(--h-accent); background: rgba(255,255,255,0.1); box-shadow: 0 0 20px rgba(99,102,241,0.15); }
.hero-ai-search i { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--h-accent); font-size: 1.1rem; }

/* Activity Ticker */
.activity-ticker {
    background: #000; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 0; overflow: hidden; white-space: nowrap; position: relative;
}
.ticker-wrap { display: flex; animation: ticker 40s linear infinite; width: max-content; }
.ticker-wrap:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; padding: 0 30px; color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: color 0.3s; }
.ticker-item:hover { color: var(--h-accent); }
.ticker-item::after { content: "•"; margin-left: 30px; color: var(--h-accent); }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

/* Project Board */
.project-filter-bar { display: flex; justify-content: center; gap: 10px; margin-bottom: 2.5rem; flex-wrap: wrap; }
.project-card-item { transition: opacity 0.4s ease, transform 0.4s ease; }
.project-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--h-radius); padding: 24px; transition: all 0.4s ease;
    height: 100%; display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-8px); border-color: rgba(99,102,241,0.3); background: rgba(255,255,255,0.04); }
.project-badge {
    display: inline-block; padding: 4px 12px; border-radius: 4px; font-size: 0.7rem;
    font-weight: 700; text-transform: uppercase; margin-bottom: 1rem;
}
.badge-film { background: rgba(99,102,241,0.2); color: #a5b4fc; }
.badge-music { background: rgba(236,72,153,0.2); color: #f9a8d4; }
.badge-poetry { background: rgba(245,158,11,0.2); color: #fcd34d; }
.project-card h4 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.4; }
.project-meta { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; flex-grow: 1; }
.project-meta div { margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.project-meta i { width: 14px; color: var(--h-accent); }
.project-action {
    width: 100%; padding: 12px; border-radius: 12px; background: rgba(255,255,255,0.06);
    color: #fff; text-align: center; font-weight: 600; text-decoration: none; transition: all 0.3s;
}
.project-action:hover { background: var(--h-accent); color: #fff; }

/* Section Reordering */
main { display: flex; flex-direction: column; }
body[data-intent="talent"] #talentSection { order: 1; }
body[data-intent="talent"] #bdmHero { order: 0; }
body[data-intent="talent"] #projectSection { order: 2; }

/* ═══════════════ MOBILE ═══════════════ */
@media (max-width: 576px) {
    .hero-content { padding: 1rem 0; }
    .hero-actions { flex-direction: column; width: 100%; gap: 1rem; }
    .hero-actions > a { width: 100%; justify-content: center; margin-bottom: 0.5rem; }
    .artist-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .film-card, .music-card-home, .asset-card { flex: 0 0 160px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .poem-showcase { gap: 1.5rem; }
    .stats-bar-inner { padding: 1rem; gap: 1rem; flex-direction: column; }
    .project-card { padding: 16px; }
    .project-filter-bar { flex-direction: column; gap: 0.5rem; }
    .project-filter-bar button { width: 100%; }
    .hero-ai-search input { padding: 12px 20px 12px 45px; font-size: 0.9rem; }
    .hero-ai-search i { left: 16px; font-size: 1rem; }
}
/* ═══════════════ MOBILE REFINEMENTS ═══════════════ */
@media (max-width: 480px) {
    .hero-title-line { font-size: 2rem !important; }
    .hero-title-accent { font-size: 0.9rem !important; }
    .hero-subtitle { font-size: 0.85rem !important; margin-bottom: 1.5rem !important; }
    .hero-actions { flex-direction: column; width: 100%; gap: 0.75rem; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.85rem; }
    
    .hero-visual {
        display: none; /* Hide complex floating visuals on very small screens to avoid clutter */
    }

    .carousel-track .project-card, 
    .carousel-track .music-card,
    .carousel-track .testimonial-card,
    .carousel-track .film-card,
    .carousel-track .poem-card {
        flex: 0 0 85vw !important; /* Scale down carousel items for small viewports */
    }

    .section-title { font-size: 1.5rem !important; }
    .section-desc { font-size: 0.85rem !important; }

    .stat-number { font-size: 1.2rem; }
    .stat-label { font-size: 0.7rem; }
}

@media (max-width: 768px) {
    .bdm-hero { text-align: center; padding-top: 100px; }
    .hero-actions { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
}
