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

:root {
    --primary-black: #000000;
    --accent-color: #ff0000;
    --text-white: #FFFFFF;
    --text-gray: #a0a0a0;
    --service-bg: #1a1a1a;
    --gradient-1: linear-gradient(135deg, #7F00FF, #E100FF);
    --gradient-2: linear-gradient(135deg, #1A2980, #26D0CE);
    --gradient-3: linear-gradient(135deg, #00B4DB, #0083B0);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    text-transform: uppercase;
}

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

/* Links & Buttons */
.gold-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.gold-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.btn-primary-red {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.btn-primary-red:hover {
    background-color: transparent;
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    background-color: var(--primary-black);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand img {
    height: 40px;
}

.menu-icon {
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.contact-link {
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 1px;
}

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

.hover-accent {
    transition: color 0.3s ease;
}

.hover-accent:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    /* Offset for fixed navbar */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    background: url('https://images.unsplash.com/photo-1598550476439-6847785fcea6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Big Background Text */
.bg-text-container {
    position: relative;
}

.bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
}

.content-front {
    position: relative;
    z-index: 1;
}

.services-heading {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent-color), #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: 2px;
}

/* Services */
.service-card {
    background: var(--primary-black);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.service-image-box {
    background-color: var(--service-bg);
    border-radius: 15px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-image-box {
    background-color: var(--accent-color);
}

.service-image-box i {
    font-size: 4rem;
    color: var(--text-white);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Artists Marquee */
.artist-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
    display: flex;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-content span {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 0 15px;
}

.marquee-content .dot {
    color: #444;
    font-size: 1.2rem;
    padding: 0 15px;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonials */
.testimonial-card {
    border-radius: 20px;
    padding: 50px 30px 30px;
    text-align: center;
    position: relative;
    margin-top: 50px;
    height: calc(100% - 50px);
}

.t-grad-1 {
    background: var(--gradient-1);
}

.t-grad-2 {
    background: var(--gradient-2);
}

.t-grad-3 {
    background: var(--gradient-3);
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--primary-black);
    background: #555;
    /* placeholder */
}

.testimonial-quote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
}

.client-designation {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Footer */
.team-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: #222;
    margin-bottom: 10px;
}

.team-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom {
    background-color: var(--primary-black);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before,
.footer-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(0, 150, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.8);
}

.footer-bottom::before {
    left: 0;
}

.footer-bottom::after {
    right: 0;
}

.slogan {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Slider Custom Styles */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(26, 26, 26, 0.8);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.slider-btn-left {
    left: 10px;
}

.slider-btn-right {
    right: 10px;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* ═══════════════════════════════════════════════
   MOBILE RESPONSIVE STYLES
   ═══════════════════════════════════════════════ */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {

    /* Navbar */
    .navbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        background-color: #111;
        padding: 10px 20px;
        border-radius: 0 0 12px 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 8px;
    }

    .navbar-collapse .nav-link {
        padding: 10px 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 1rem;
    }

    .navbar-collapse .nav-link:last-child {
        border-bottom: none;
    }

    /* Hero */
    .hero-section {
        padding-top: 70px;
        min-height: 75vh;
        text-align: left;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .services-heading {
        font-size: clamp(2.5rem, 10vw, 5rem) !important;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }
}

/* ── Global: prevent horizontal scroll ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {

    /* ── Global: reduce all section padding (non-hero sections only) ── */
    section:not(.hero-section):not(.about-hero):not(.contact-hero):not(.artists-hero):not(.network-hero):not(.services-hero) {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .py-5 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .mb-5 {
        margin-bottom: 16px !important;
    }

    .mt-5 {
        margin-top: 16px !important;
    }

    /* ── SVG Curves: smaller + no extra margin ── */
    [style*="overflow: hidden; margin-top: -30px; margin-bottom: 20px"] {
        margin-top: -10px !important;
        margin-bottom: 0px !important;
    }

    svg[viewBox="0 0 1440 320"] {
        height: 120px !important;
    }

    /* ── Section heading: no extra gap after curve ── */
    .container.text-center.mb-5 {
        margin-bottom: 8px !important;
    }

    .container.text-center.mb-4 {
        margin-bottom: 6px !important;
    }

    /* ── Services heading size ── */
    .services-heading {
        font-size: clamp(2rem, 12vw, 3.5rem) !important;
        letter-spacing: 1px;
        margin-bottom: 0 !important;
    }

    /* ── Hero ── */
    .hero-section {
        min-height: 55vh;
        padding-top: 70px;
        background-position: center top !important;
        text-align: left;
        align-items: flex-end;
        padding-bottom: 30px;
    }

    .hero-content {
        padding: 0 15px;
        padding-bottom: 10px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 8.5vw, 2.5rem);
        margin-bottom: 12px;
        line-height: 1.15;
    }

    .hero-section p.fs-4 {
        font-size: 0.9rem !important;
        margin-bottom: 14px !important;
    }

    .btn-primary-red {
        font-size: 0.9rem !important;
        padding: 9px 20px;
    }

    /* ── Services grid ── */
    .service-card {
        padding: 16px;
    }

    .container.py-2 {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    /* ── Latest Releases ── */
    .col-lg-5,
    .col-lg-7 {
        width: 100%;
    }


    .container.py-5 {
        padding-top: 16px !important;
        padding-bottom: 16px !important;
    }

    /* ── Network slider ── */
    #brandSlider img {
        width: 160px !important;
        height: 65px !important;
    }

    .container.position-relative.px-5 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    /* ── Artists ── */
    .artist-circle {
        width: 85px !important;
        height: 85px !important;
    }

    .artist-border-gradient {
        width: 95px !important;
        height: 95px !important;
    }

    /* ── Testimonials ── */
    .col-lg-4 {
        margin-bottom: 50px;
    }

    /* Testimonial section heading */
    .container.text-center.mb-4 h2.services-heading {
        font-size: clamp(1.6rem, 10vw, 2.8rem) !important;
    }

    /* "CHECK OUT WHAT CLIENTS SAY" */
    .container.py-2.text-center h2 {
        font-size: clamp(0.95rem, 4.5vw, 1.3rem) !important;
        letter-spacing: 0.5px;
        margin-bottom: 10px !important;
    }

    /* Testimonial quote text */
    .rounded.p-4.pt-5 p {
        font-size: 0.82rem !important;
        line-height: 1.55 !important;
    }

    /* Testimonial card padding */
    .rounded.p-4.pt-5 {
        padding: 14px 14px 14px 14px !important;
        padding-top: 44px !important;
        min-height: 220px !important;
    }

    /* Client name & role under card */
    .col-lg-4 h5 {
        font-size: 0.92rem !important;
    }

    .col-lg-4 p.text-gray {
        font-size: 0.7rem !important;
        letter-spacing: 1px;
    }

    /* ── Team grid: 2 cols ── */
    .row-cols-lg-5 {
        --bs-columns: 2;
    }

    /* Team names */
    h5.text-white.fw-bold[style*="font-size: 1.1rem"] {
        font-size: 0.88rem !important;
    }

    /* Artists section heading */
    .p-4.p-md-5 h2[style*="2.5rem"] {
        font-size: 1.5rem !important;
    }

    .p-4.p-md-5 p {
        font-size: 0.88rem !important;
        line-height: 1.65;
    }

    /* Latest Releases heading */
    h2[style*="clamp(2rem, 4vw, 3.5rem)"] {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
    }

    /* overflow handled globally on html/body only */

    /* ── Footer ── */
    .slogan {
        font-size: 1rem !important;
    }

    footer .container.mb-5 {
        margin-bottom: 12px !important;
    }
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {
    svg[viewBox="0 0 1440 320"] {
        height: 90px !important;
    }

    .hero-title {
        font-size: clamp(1.4rem, 9vw, 2rem);
    }

    .services-heading {
        font-size: clamp(1.8rem, 13vw, 2.8rem) !important;
    }

    /* Testimonials tighter on very small screens */
    .rounded.p-4.pt-5 p {
        font-size: 0.78rem !important;
        line-height: 1.5 !important;
    }

    .rounded.p-4.pt-5 {
        padding: 12px !important;
        padding-top: 40px !important;
        min-height: 200px !important;
    }

    /* Profile pics in testimonials */
    .col-lg-4>.position-relative img.rounded-circle {
        width: 70px !important;
        height: 70px !important;
        top: -35px !important;
    }

    .container.py-2.text-center h2 {
        font-size: clamp(0.85rem, 4vw, 1.1rem) !important;
    }

    #brandSlider img {
        width: 130px !important;
        height: 55px !important;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}


/* ====== PAGE-SPECIFIC CSS ====== */
/* -- Shared: Hero Badge, Headline, Sub -- */
.hero-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff4444;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero-headline span {
    color: var(--accent-color);
}

.hero-sub {
    color: #aaa;
    font-size: 1rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(90deg, #ff0000, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: #888;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stats-bar {
    background: #0a0000;
    border-top: 1px solid rgba(255, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 0, 0, 0.15);
    padding: 44px 0;
}

.cta-section {
    background: linear-gradient(135deg, #0a0a0a, #1a0000, #0a0a0a);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-hero-cta {
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hero-cta:hover {
    background: transparent;
    color: var(--accent-color);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 14px 38px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    margin-left: 12px;
}

.btn-hero-outline:hover {
    border-color: #fff;
    color: #fff;
}

/* Navbar collapse (shared) */
@media(max-width:991px) {
    .navbar-collapse {
        background-color: #111;
        padding: 10px 20px;
        border-radius: 0 0 12px 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 8px;
    }

    .navbar-collapse .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-collapse .nav-link:last-child {
        border-bottom: none;
    }
}

/* -- ABOUT PAGE -- */
.about-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about-section {
    background: #000;
    padding: 70px 0;
}

.about-section.alt {
    background: #050505;
}

.section-text {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.8;
}

.story-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.mv-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(255, 0, 0, 0.07);
}

.mv-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 0, 0, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.mv-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.mv-text {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

.why-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 26px 22px;
    height: 100%;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-4px);
}

.why-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 0, 0, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.why-text {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.closing-section {
    background: linear-gradient(135deg, #0a0a0a, #1a0000, #0a0a0a);
    padding: 80px 0;
    text-align: center;
}

.closing-quote {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: #ccc;
    font-weight: 500;
    max-width: 680px;
    margin: 0 auto 30px;
    line-height: 1.7;
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    text-align: left;
}

.closing-quote span {
    color: #fff;
    font-style: normal;
    font-weight: 700;
}

.btn-cta {
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    padding: 13px 36px;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-cta:hover {
    background: transparent;
    color: var(--accent-color);
}

.btn-outline-cta {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 13px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline-cta:hover {
    border-color: #fff;
    color: #fff;
}

/* About tablet */
@media(max-width:991px) {
    .about-hero {
        padding: 110px 0 50px !important;
    }

    .about-section {
        padding: 50px 0;
    }

    .stats-bar {
        padding: 36px 0;
    }

    .story-card {
        padding: 30px 24px;
    }
}

/* About mobile */
@media(max-width:767px) {
    .about-hero {
        padding: 105px 0 30px !important;
    }

    .about-section {
        padding: 30px 0;
    }

    .story-card {
        padding: 18px 14px;
        border-radius: 12px;
    }

    .mv-card {
        padding: 18px 14px;
    }

    .mv-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .mv-title {
        font-size: 0.96rem;
    }

    .mv-text {
        font-size: 0.84rem;
    }

    .why-card {
        padding: 14px 12px;
        gap: 10px;
    }

    .why-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .why-title {
        font-size: 0.86rem;
    }

    .why-text {
        font-size: 0.8rem;
    }

    .closing-section {
        padding: 40px 0;
    }

    .closing-quote {
        font-size: 0.9rem;
        padding-left: 12px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .btn-cta,
    .btn-outline-cta {
        padding: 10px 22px;
        font-size: 0.88rem;
    }
}

/* About small mobile */
@media(max-width:480px) {
    .about-hero {
        padding: 100px 0 24px !important;
    }

    .story-card {
        padding: 14px 10px;
    }

    .mv-card {
        padding: 14px 10px;
    }

    .why-card {
        padding: 12px 10px;
        gap: 8px;
    }

    .why-icon {
        width: 34px;
        height: 34px;
    }

    .closing-section {
        padding: 30px 0;
    }

    .closing-quote {
        font-size: 0.84rem;
        padding-left: 10px;
    }
}

/* -- SERVICES PAGE -- */
.services-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-headline span {
    background: linear-gradient(90deg, #ff0000, #ffffff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: #888;
    font-size: 1rem;
    max-width: 580px;
    line-height: 1.7;
}

.features-section {
    background: #000;
    padding: 80px 0;
}

.feat-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feat-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.08);
}

.feat-card:hover::before {
    opacity: 1;
}

.feat-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 0, 0, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.feat-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feat-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.how-section {
    background: #050505;
    padding: 80px 0;
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.step-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-4px);
}

.step-body h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-body p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.stats-section {
    background: #0a0000;
    border-top: 1px solid rgba(255, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 0, 0, 0.15);
    padding: 50px 0;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

/* Services tablet */
@media(max-width:991px) {
    .services-hero {
        padding: 115px 0 55px !important;
    }

    .features-section,
    .how-section {
        padding: 55px 0;
    }

    .stats-section {
        padding: 38px 0;
    }
}

/* Services mobile */
@media(max-width:767px) {
    .services-hero {
        padding: 105px 0 36px !important;
    }

    .features-section {
        padding: 36px 0;
    }

    .section-desc {
        font-size: 0.86rem;
    }

    .feat-card {
        padding: 18px 14px;
        border-radius: 12px;
    }

    .feat-icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .feat-title {
        font-size: 0.92rem;
        margin-bottom: 7px;
    }

    .feat-desc {
        font-size: 0.83rem;
    }

    .how-section {
        padding: 36px 0;
    }

    .step-card {
        padding: 18px 14px;
        gap: 12px;
        border-radius: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .step-body h4 {
        font-size: 0.92rem;
        margin-bottom: 5px;
    }

    .step-body p {
        font-size: 0.83rem;
    }

    .stats-section {
        padding: 22px 0;
    }

    .cta-section {
        padding: 44px 0;
    }

    .cta-title {
        font-size: clamp(1.3rem, 6.5vw, 1.8rem);
    }

    .btn-hero-outline {
        margin-left: 0;
        margin-top: 10px;
        padding: 10px 22px;
        font-size: 0.88rem;
    }
}

/* Services small mobile */
@media(max-width:480px) {
    .services-hero {
        padding: 98px 0 28px !important;
    }

    .feat-card {
        padding: 14px 12px;
    }

    .step-card {
        padding: 14px 12px;
        gap: 10px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.88rem;
    }

    .stats-section {
        padding: 18px 0;
    }

    .cta-section {
        padding: 36px 0;
    }
}

/* -- CONTACT PAGE -- */
.contact-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact-section {
    background: #000;
    padding: 70px 0;
}

.info-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.info-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(255, 0, 0, 0.07);
}

.info-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 0, 0, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.info-value {
    color: var(--accent-color);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 2px;
    transition: opacity 0.2s;
}

.info-value:hover {
    opacity: 0.8;
    color: var(--accent-color);
}

.info-note {
    color: #777;
    font-size: 0.8rem;
    margin: 0;
}

.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.map-wrap iframe {
    display: block;
}

.form-section {
    background: #050505;
    padding: 70px 0;
}

.form-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 780px;
    margin: 0 auto;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.form-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 0, 0, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.form-header h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 4px;
}

.form-header p {
    color: var(--accent-color);
    font-size: 0.88rem;
    margin: 0;
}

.form-label {
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-label span {
    color: var(--accent-color);
}

.form-control {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    padding: 13px 16px;
    font-size: 0.92rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    background: #1a1a1a;
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.form-control::placeholder {
    color: #555;
}

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

.btn-send {
    background: linear-gradient(135deg, var(--accent-color), #cc0000);
    color: #fff;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
    color: #fff;
}

.social-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-follow-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

#formAlert {
    display: none;
}

/* Contact tablet */
@media(max-width:991px) {
    .contact-hero {
        padding: 115px 0 50px !important;
    }

    .contact-section {
        padding: 50px 0;
    }

    .form-section {
        padding: 50px 0;
    }
}

/* Contact mobile */
@media(max-width:767px) {
    .contact-hero {
        padding: 105px 0 30px !important;
    }

    .contact-section {
        padding: 30px 0;
    }

    .info-card {
        padding: 14px 12px;
        gap: 10px;
        border-radius: 12px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .info-title {
        font-size: 0.88rem;
    }

    .info-value {
        font-size: 0.82rem;
    }

    .info-note {
        font-size: 0.72rem;
    }

    .map-wrap {
        border-radius: 12px;
    }

    .map-wrap iframe {
        height: 200px !important;
    }

    .form-section {
        padding: 30px 0;
    }

    .form-card {
        padding: 20px 14px;
        border-radius: 14px;
        max-width: 100%;
    }

    .form-header {
        gap: 10px;
        margin-bottom: 16px;
    }

    .form-header h2 {
        font-size: 1rem;
    }

    .form-header p {
        font-size: 0.76rem;
    }

    .form-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .form-label {
        font-size: 0.78rem;
        margin-bottom: 5px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 0.84rem;
        border-radius: 8px;
    }

    textarea.form-control {
        min-height: 100px;
    }

    .btn-send {
        padding: 11px 20px;
        font-size: 0.88rem;
    }

    .social-follow-btn {
        padding: 7px 12px;
        font-size: 0.76rem;
    }
}

/* Contact small mobile */
@media(max-width:480px) {
    .contact-hero {
        padding: 98px 0 24px !important;
    }

    .info-card {
        padding: 12px 10px;
        gap: 9px;
    }

    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .map-wrap iframe {
        height: 175px !important;
    }

    .form-card {
        padding: 16px 12px;
    }

    .form-control {
        padding: 9px 10px;
        font-size: 0.82rem;
    }

    .btn-send {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .social-follow-btn {
        padding: 6px 10px;
        font-size: 0.72rem;
        gap: 5px;
    }
}

/* -- NETWORK PAGE -- */
.network-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.network-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.platforms-section {
    background: #000;
    padding: 70px 0;
}

.section-category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-sub {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.platform-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.platform-card:hover {
    border-color: rgba(255, 0, 0, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.07);
    background: #181818;
}

.platform-card img {
    max-height: 40px;
    max-width: 130px;
    object-fit: contain;
}

.platform-card .p-icon {
    font-size: 2rem;
}

.platform-card .p-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #aaa;
    text-align: center;
    margin: 0;
}

.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
    margin: 60px 0;
}

/* Network tablet */
@media(max-width:991px) {
    .network-hero {
        padding: 110px 0 55px;
    }

    .platforms-section {
        padding: 55px 0;
    }
}

/* Network mobile */
@media(max-width:767px) {
    .network-hero {
        padding: 105px 0 36px !important;
    }

    .stats-bar {
        padding: 30px 0;
    }

    .platforms-section {
        padding: 36px 0;
    }

    .section-divider {
        margin: 36px 0;
    }

    .platform-card {
        height: 82px;
        padding: 12px 8px;
        gap: 6px;
        border-radius: 10px;
    }

    .platform-card img {
        max-height: 30px;
        max-width: 100px;
    }

    .platform-card .p-icon {
        font-size: 1.6rem;
    }

    .platform-card .p-name {
        font-size: 0.65rem;
    }
}

/* Network small mobile */
@media(max-width:480px) {
    .network-hero {
        padding: 98px 0 35px !important;
    }

    .platform-card {
        height: 75px;
        padding: 10px 6px;
    }

    .platform-card img {
        max-height: 26px;
    }

    .platform-card .p-icon {
        font-size: 1.4rem;
    }

    .platform-card .p-name {
        font-size: 0.6rem;
    }

    .stats-bar {
        padding: 24px 0;
    }
}

/* -- ARTISTS PAGE -- */
.artists-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.artists-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.artists-section {
    background: #000;
    padding: 70px 0;
}

.section-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
}

.section-heading span {
    color: var(--accent-color);
}

.artist-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.artist-card:hover {
    border-color: rgba(255, 0, 0, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.1);
}

.artist-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.artist-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.artist-card:hover .artist-img-wrap img {
    transform: scale(1.07);
}

.artist-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-overlay a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}

.artist-overlay a:hover {
    background: var(--accent-color);
}

.artist-info {
    padding: 18px 16px;
}

.artist-name {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.artist-role {
    color: #aaa;
    font-size: 0.82rem;
    margin-bottom: 6px;
}

.artist-genre {
    display: inline-block;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.25);
    color: var(--accent-color);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.artist-streams {
    color: #666;
    font-size: 0.78rem;
}

.artist-streams i {
    color: var(--accent-color);
    margin-right: 4px;
}

/* Artists tablet */
@media(max-width:991px) {
    .artists-hero {
        padding: 120px 0 55px;
    }

    .artists-section {
        padding: 55px 0;
    }

    .stats-bar {
        padding: 36px 0;
    }
}

/* Artists mobile */
@media(max-width:767px) {
    .artists-hero {
        padding: 105px 0 30px !important;
    }

    .stats-bar {
        padding: 24px 0;
    }

    .artists-section {
        padding: 32px 0;
    }

    .section-heading {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .artist-img-wrap {
        height: 180px;
    }

    .artist-card {
        border-radius: 12px;
    }

    .artist-info {
        padding: 12px;
    }

    .artist-name {
        font-size: 0.88rem;
    }

    .artist-role {
        font-size: 0.75rem;
    }

    .artist-genre {
        font-size: 0.65rem;
        padding: 2px 8px;
    }

    .artist-streams {
        font-size: 0.7rem;
    }

    .artist-overlay a {
        width: 30px;
        height: 30px;
        font-size: 0.78rem;
    }

    .btn-cta {
        padding: 11px 26px;
        font-size: 0.88rem;
    }
}

/* Artists small mobile */
@media(max-width:480px) {
    .artists-hero {
        padding: 98px 0 26px !important;
    }

    .artist-img-wrap {
        height: 155px;
    }

    .artist-info {
        padding: 10px;
    }

    .artist-name {
        font-size: 0.82rem;
    }

    .artist-genre {
        font-size: 0.6rem;
        padding: 2px 7px;
    }

    .cta-section {
        padding: 36px 0;
    }
}

/* -- Shared footer mobile -- */
@media(max-width:767px) {
    footer .slogan {
        font-size: 0.95rem !important;
        letter-spacing: 1px;
    }

    footer .container.mb-5 {
        margin-bottom: 14px !important;
    }

    footer h4 {
        font-size: 0.95rem !important;
    }

    footer p,
    footer a {
        font-size: 0.82rem !important;
    }

    footer .d-flex.gap-3 {
        gap: 12px !important;
    }

    footer .fs-4 {
        font-size: 1.2rem !important;
    }
}

/* -- Shared mobile: hero headline/sub/badge -- */
@media(max-width:767px) {
    .hero-headline {
        font-size: clamp(1.4rem, 7.5vw, 2rem);
        margin-bottom: 10px;
        line-height: 1.25;
    }

    .hero-sub {
        font-size: 0.84rem;
        padding: 0 4px;
        line-height: 1.65;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 5px 12px;
        margin-bottom: 12px;
        letter-spacing: 1.5px;
    }

    .stat-num {
        font-size: clamp(1.4rem, 6.5vw, 1.9rem);
    }

    .stat-label {
        font-size: 0.68rem;
        letter-spacing: 0.4px;
    }

    .section-title {
        font-size: clamp(1.1rem, 5.5vw, 1.6rem);
        margin-bottom: 8px;
    }

    .section-text {
        font-size: 0.86rem;
        line-height: 1.7;
    }

    .btn-hero-cta {
        padding: 10px 22px;
        font-size: 0.88rem;
    }
}

/* -- Custom Scrollbar -- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 0, 0.4);
    border-radius: 4px;
}

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

