/* ==========================================================================
   BZSTREAMS BRAND IDENTITY STRUCTURE LAYER
   ========================================================================== */

:root {
    --white-pure: #FFFFFF;
    --white-translucent: rgba(255, 255, 255, 0.7);
    --text-slate-dark: #0F172A;
    --bg-light: #F5F5F5; 
    --bg-alt: #FFFFFF; 
    --bg-card: rgba(255, 255, 255, 0.85); 
     --text-slate-muted: #475569;
    
    /* Colors strictly extracted from your BIZS Logo asset */
    --bz-cyan: #00C2CB;
    --bz-coral: #FF6B6B;
    --bz-purple: #6366F1;
    --bz-yellow-pop: #FFD43B;
    
    --transition-bz: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}


/* Ensure the body tag maps cleanly to the new asset token color */
body {
    background-color: var(--bg-light);
    color: var(--text-slate-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Master Centered Grid Container System */
.bz-global-container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 3rem;
}

#hero {
    min-height: 100vh;
    width: 100vw;
    position: relative;
    padding-top: 100px; /* Keeps your headline from sliding under the absolute navbar items */
    display: flex;
    flex-direction: column;
}

/* --- MASTER HEADER SYSTEM --- */
.bz-master-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), transparent);
    transition: var(--transition-bz);
}

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

.bz-core-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.bz-header-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bz-link-item {
    color: var(--white-pure);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: var(--transition-bz);
    position: relative;
    padding: 0.5rem 0;
}

.bz-link-item:hover {
    color: var(--white-pure);
    opacity: 0.8;
}

/* Custom link location active dot indicator */
.bz-link-item.bz-active-dot::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--white-pure);
    border-radius: 50%;
}

/* Right-side action trigger pill */
.bz-menu-trigger-bubble {
    width: 46px;
    height: 46px;
    background-color: var(--bz-yellow-pop);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--transition-bz);
    box-shadow: 0 4px 15px rgba(255, 212, 59, 0.3);
}

.bz-menu-trigger-bubble:hover {
    transform: scale(1.06) rotate(90deg);
}

.bz-line-top, .bz-line-bottom {
    width: 16px;
    height: 2px;
    background-color: #000000;
    display: block;
}

/* --- HERO CANVAS VIEWPORT SYSTEM --- */
.bz-hero-master-canvas {
    height: 100vh;
    width: 100vw;
    position: relative;
    /* Clean, full-frame landscape image background */
    background-image: url('https://images.unsplash.com/photo-1489573280374-2e193c63726c?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax rule lock */
}

/* Bottom vignette blend gradient to protect white text legibility over picture */
.bz-hero-master-canvas::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: linear-gradient(to top, rgba(7, 9, 15, 0.45), transparent);
    z-index: 1;
    pointer-events: none;
}

.bz-hero-inner-layout {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 3.5rem;
}

/* Typography elements */
.bz-hero-overline {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white-pure);
    opacity: 0.85;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.bz-hero-main-title {
    font-size: calc(2.5rem + 3.5vw) !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
    letter-spacing: -1.5px !important;
    color: var(--white-pure) !important;
}

.bz-highlight-text {
    font-weight: 800 !important;
}

/* Bottom alignment details row */
.bz-hero-footer-border {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bz-hero-footer-description {
    font-size: 0.95rem;
    color: var(--white-translucent);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Glassmorphic rating block metrics */
.bz-rating-glass-pill {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1.4rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.bz-pill-meta {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.bz-pill-stars {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-pure);
}

.bz-pill-stars i {
    color: var(--bz-yellow-pop);
    margin-left: 2px;
}

/* Clean micro arrow button trigger link */
.bz-action-circle-arrow {
    width: 38px;
    height: 38px;
    background-color: var(--white-pure);
    color: #000000 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-bz);
}

.bz-action-circle-arrow:hover {
    transform: translateX(4px);
    background-color: var(--bz-cyan);
    color: var(--white-pure) !important;
}

/* Responsive constraints */
@media (max-width: 991px) {
    .bz-global-container { padding: 0 1.5rem; }
    .bz-hero-main-title { font-size: 2.8rem !important; }
    .bz-master-header { padding: 1rem 0; }
}

/* ==========================================================================
   BZSTREAMS MASTER LIGHT EDITORIAL SERVICES SYSTEM
   ========================================================================== */

/* Component Section Frame */
.bz-services-light-layout {
    background-color: #FFFFFF; /* Pure white canvas */
    padding: 10rem 0;
    position: relative;
    z-index: 5;
}

/* Header Text Alignments */
.editorial-tag {
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--bz-purple); /* Using your core logo purple */
    text-transform: uppercase;
    display: block;
}

.editorial-display-title {
    font-size: calc(2.2rem + 1.2vw) !important;
    font-weight: 800 !important;
    letter-spacing: -1.5px !important;
    line-height: 1.15 !important;
    color: var(--text-slate-dark) !important;
}

.editorial-description {
    font-size: 1.15rem;
    color: var(--text-slate-muted) !important;
    max-width: 600px;
    line-height: 1.65;
}

/* Premium Off-White Asymmetrical Cards */
.service-editorial-card {
    background: #F8FAFC; /* Clean luxury off-white color footprint */
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 30px;
    padding: 3.5rem 2.8rem;
    min-height: 400px; /* High min-height for asymmetrical floating rhythm */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: var(--transition-bz);
}

/* Soft color hover ambient glow from within */
.service-editorial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Interaction States */
.service-editorial-card:hover {
    transform: translateY(-8px);
    background-color: #FFFFFF; /* Turns crisp white on hover */
    border-color: rgba(0, 194, 203, 0.25); /* Logo Cyan boundary highlight */
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.05);
}

.service-editorial-card:hover::before {
    opacity: 1;
}

/* Meta Labels */
.service-meta {
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 3;
}

.service-serial-tag {
    font-family: monospace;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--bz-cyan); /* Logo Cyan */
    margin-bottom: 0.8rem;
    display: block;
}

.service-display-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-slate-dark);
    line-height: 1.2;
}

/* Card Summary Text */
.service-card-desc {
    color: var(--text-slate-muted) !important;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 95%;
    position: relative;
    z-index: 2;
}

/* Minimalist Embedded Vector Font Icons */
.service-visual-accent {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    font-size: 5rem;
    color: rgba(15, 23, 42, 0.03); /* Soft, barely visible clean dark lineart output */
    line-height: 1;
    z-index: 1;
    transition: var(--transition-bz);
}

.service-editorial-card:hover .service-visual-accent {
    transform: scale(1.08) rotate(-5deg);
    color: rgba(99, 102, 241, 0.15); /* Shifts smoothly to your logo purple accent */
}

/* ==========================================================================
   NAVBAR-STYLE GRADIENT HOVER ACCENTS
   ========================================================================== */

/* The base light card transition rules */
.service-editorial-card {
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 30px;
    padding: 3.5rem 2.8rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* HIGH-END HOVER STATE: Flips completely to your corporate gradient */
.service-editorial-card:not(.bz-accent-more-card):hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, var(--bz-cyan), var(--bz-purple)) !important;
    border-color: transparent;
    box-shadow: 0 25px 50px rgba(0, 194, 203, 0.25);
}

/* Clean text level shifting to white on hover to keep perfect visibility */
.service-editorial-card:not(.bz-accent-more-card):hover .service-display-title {
    color: #FFFFFF !important;
}

.service-editorial-card:not(.bz-accent-more-card):hover .service-card-desc {
    color: rgba(255, 255, 255, 0.85) !important;
}

.service-editorial-card:not(.bz-accent-more-card):hover .service-serial-tag {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Linear graphic icons shift to glowing soft white accents inside the gradient */
.service-editorial-card:not(.bz-accent-more-card):hover .service-visual-accent {
    color: rgba(255, 255, 255, 0.12) !important;
    transform: scale(1.08) rotate(-5deg);
}

/* --- ASYMMETRICAL COLUMN OFFSETS --- */
@media (min-width: 992px) {
    .card-variant-2 { transform: translateY(40px); } /* Offset grid items unevenly */
    .card-variant-3 { transform: translateY(-30px); } 
    .card-variant-5 { transform: translateY(50px); } 
}

/* ==========================================================================
   06// DIGITAL ECOSYSTEMS HUB (BRANDED HOVER OVERRIDE CARD)
   ========================================================================== */
.bz-accent-more-card {
    min-height: 460px;
    /* Uses a premium dark gradient from your logo specs for the focal highlight container */
    background: linear-gradient(135deg, var(--text-slate-dark) 0%, #1E293B 100%);
    border-color: transparent;
}

.bz-accent-more-card .service-display-title { color: #FFFFFF !important; }
.bz-accent-more-card .service-card-desc { color: rgba(255, 255, 255, 0.7) !important; }

.bz-accent-more-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #1E293B 0%, var(--text-slate-dark) 100%);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.2);
}

.btn-more-explore {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-more-explore:hover { color: var(--bz-cyan) !important; }
.btn-more-explore i { transition: transform 0.3s ease; }
.btn-more-explore:hover i { transform: translateX(5px); }

/* Responsive Bounds */
@media (max-width: 991px) {
    .service-editorial-card { min-height: 350px; padding: 2.5rem 2rem; }
    .bz-services-light-layout { padding: 6rem 0; }
    .card-variant-2, .card-variant-3, .card-variant-5 { transform: translateY(0) !important; }
}