/* ===================================================
   1. CORE LAYOUT & SCROLL FIXES
   =================================================== */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #0f172a;
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

/* Prevents sections from hiding under the fixed navbar */
section[id] {
    scroll-margin-top: 70px;
    position: relative;
}

/* 🌟 UNIFIED DESIGN ENGINE FOR MULTI-SECTION BACKGROUNDS */
.unified-bg-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: block;
    width: 100%;
}

    .unified-bg-section::before {
        content: "";
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        filter: blur(5px) brightness(0.4);
        z-index: -1;
    }

    .unified-bg-section .container {
        position: relative;
        z-index: 2;
        padding-bottom: 10px !important; /* COMPRESSED: Drastically reduced container base gap */
    }

/* INDIVIDUAL BACKGROUND MAPPINGS */
.section-services-bg::before {
    background-image: url('/images/services-bg.png');
}

.section-creators-bg::before {
    background-image: url('/images/creators-bg.png');
}

.section-stories-bg::before {
    background-image: url('/images/stories-bg.png');
}

/* 📊 STATS STRIP BETWEEN SERVICES & CREATORS */
.stats-strip-intersection {
    position: relative;
    background: #090f1e;
    padding: 25px 0; /* COMPRESSED: Made the strip very tight vertically */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.stat-strip-box {
    padding: 2px;
}

.stat-strip-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #38bdf8;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2px;
}

.stat-strip-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.stat-strip-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(56, 189, 248, 0.3), transparent);
}

/* ===================================================
   2. NAVBAR & HERO
   =================================================== */
.navbar {
    transition: 0.3s ease;
    padding: 15px 0;
}

    .navbar.scrolled {
        background: rgba(15, 23, 42, 0.9) !important;
        backdrop-filter: blur(10px);
        padding: 10px 0;
    }

.hero-wrap {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('/images/hero-bg.png') no-repeat center center;
    background-size: cover;
    padding-top: 80px;
}

/* ===================================================
   3. SHARP TEXT & CARD STYLES
   =================================================== */
.py-section {
    padding: 40px 0 45px 0 !important; /* COMPRESSED: Reduced to close massive blank areas between sections */
}

h2, h3 {
    color: #0f172a !important;
    font-weight: 700;
    backdrop-filter: none !important;
}

.card {
    border: none;
    border-radius: 20px;
    background: #ffffff;
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.1) !important;
    }

.creator-img {
    height: 320px;
    object-fit: cover;
    width: 100%;
}

/* ===================================================
   4. FORM & WHATSAPP
   =================================================== */
.form-control {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #000 !important;
    padding: 12px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ENQUIRY SECTION COMPRESSION */
#enquiry {
    min-height: auto; /* COMPRESSED: Stripped min-height to pull the next section right up */
    padding: 40px 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    scroll-margin-top: 70px;
}

    #enquiry .container {
        width: 100%;
    }

.enquiry-card {
    background: #ffffff;
    border-radius: 24px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 650px;
    margin: 0 auto;
}

    .enquiry-card h3 {
        color: #0f172a !important;
        font-weight: 800;
    }

.admin-btn {
    border-width: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-color: #38bdf8;
    color: #38bdf8;
}

    .admin-btn:hover {
        background-color: #38bdf8;
        border-color: #38bdf8;
        color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
    }

    .admin-btn i {
        font-size: 1rem;
        vertical-align: middle;
    }

@media (max-width: 991px) {
    .admin-btn {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}

.admin-profile-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: pulse-blue 2s infinite;
    transition: 0.3s;
}

@keyframes pulse-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(78, 115, 223, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(78, 115, 223, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(78, 115, 223, 0);
    }
}

.card-stat.active-filter {
    border: 3px solid white !important;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}

.img-container {
    position: relative;
}

/* 🧬 MATRIX CARD NODES FOR CELEBRITY SERVICES */
.matrix-card {
    background: rgba(30, 41, 59, 0.45) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px;
}

.highlighted-premium-node {
    border-left: 4px solid #38bdf8 !important;
}

.matrix-icon-shell {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.bg-primary-light {
    background: rgba(56, 189, 248, 0.15) !important;
}

.text-primary-theme {
    color: #38bdf8 !important;
}

.extreme-small-text {
    font-size: 0.8rem;
    line-height: 1.4;
}

/* 🌟 INFLUENCER LAYOUT COMPONENT CARDS */
.responsive-creator-card {
    background: rgba(30, 41, 59, 0.4) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .responsive-creator-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3) !important;
        border-color: rgba(56, 189, 248, 0.2) !important;
    }

.category-pill-tag {
    background: rgba(15, 23, 42, 0.75) !important;
    backdrop-filter: blur(4px);
    color: #38bdf8 !important;
    border: 1px solid rgba(56, 189, 248, 0.2);
    font-size: 0.65rem;
    padding: 5px 8px;
    border-radius: 6px;
    z-index: 3;
}

.img-aspect-ratio-box {
    position: relative;
    width: 100%;
    padding-top: 115%;
    background: #1e293b;
    overflow: hidden;
}

    .img-aspect-ratio-box .asset-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.responsive-creator-card:hover .asset-image {
    transform: scale(1.04);
}

.gradient-overlay-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 2;
}

.responsive-creator-card:hover .gradient-overlay-socials {
    opacity: 1;
}

.circle-media-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

    .circle-media-icon:hover {
        background: #38bdf8;
        transform: translateY(-2px);
    }

.themed-card-body {
    background: rgba(15, 23, 42, 0.25);
}

.border-dark-glow {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.text-slate-400 {
    color: #94a3b8 !important;
}

.text-slate-500 {
    color: #64748b !important;
}

.text-size-sm {
    font-size: 0.95rem;
}

.btn-teal-action-sm {
    background: #06b6d4;
    color: #ffffff !important;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    border: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .btn-teal-action-sm:hover {
        background: #0891b2;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(6, 182, 212, 0.3);
    }
