/* --- DESIGN TOKENS --- */
:root {
    --bg: #030303;
    --primary: #7a0b0b;
    --primary-bright: #b30f0f;
    --grey-border: rgba(255, 255, 255, 0.08);
    --grey-text: #888888;
    --white: #ffffff;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- GLOBAL STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- TEXTURE & BACKGROUNDS --- */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04; pointer-events: none; z-index: 9998;
}

.grid-background {
    position: fixed; inset: 0;
    background-image: 
        linear-gradient(var(--grey-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--grey-border) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -2; opacity: 0.3;
}

/* --- PRELOADER --- */
#preloader {
    position: fixed; inset: 0; background: #000; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: transform 1s var(--easing);
}

.loader-text {
    font-family: 'Bebas Neue'; font-size: 3rem; letter-spacing: 10px;
    background: linear-gradient(90deg, #fff, #444);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.loader-bar {
    width: 0%; height: 2px; background: var(--primary);
    margin-top: 10px; transition: width 0.5s ease;
}

/* --- NAVIGATION --- */
nav {
    width: 100%; height: 100px; position: fixed; top: 0; z-index: 1000;
    display: flex; justify-content: center; transition: all 0.6s var(--easing);
}

nav.scrolled {
    height: 70px; background: rgba(0,0,0,0.8); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--grey-border);
}

.nav-container { width: 92%; display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: 'Bebas Neue'; font-size: 2.4rem; color: #fff; text-decoration: none;
    transition: 0.4s;
}

.logo-accent { color: var(--primary); text-shadow: 0 0 15px rgba(122, 11, 11, 0.4); }

.nav-item {
    color: var(--grey-text); text-decoration: none; text-transform: uppercase;
    font-weight: 600; font-size: 0.8rem; margin-right: 40px;
    letter-spacing: 2px; position: relative;
}

.nav-item::before {
    content: '['; color: var(--primary); margin-right: 5px; opacity: 0; transition: 0.3s;
}

.nav-item:hover { color: #fff; }
.nav-item:hover::before { opacity: 1; }

.nav-btn {
    background: var(--primary); color: #fff; padding: 12px 28px;
    text-decoration: none; font-weight: 900; letter-spacing: 1px;
    border: 1px solid transparent; transition: 0.4s;
}

.nav-btn:hover { background: transparent; border-color: var(--primary); color: var(--primary); }

/* --- HERO --- */
.hero-grid {
    display: grid; grid-template-columns: 1fr 80px; height: 95vh;
}

.hero { height: 100vh; position: relative; display: flex; align-items: center; padding: 0 8%; overflow: hidden; }

.hero-image-overlay {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=1964&auto=format&fit=crop') no-repeat center/cover;
    opacity: 0; filter: grayscale(1) brightness(0.2);
    animation: imageReveal 2s var(--easing) forwards 0.5s; z-index: -1;
}

@keyframes imageReveal { to { opacity: 0.35; filter: grayscale(0.8) brightness(0.3); } }

.hero-tag {
    font-size: 0.75rem; letter-spacing: 4px; color: var(--primary);
    margin-bottom: 20px; font-weight: 900;
}

.hero-title {
    font-family: 'Bebas Neue'; font-size: clamp(5rem, 15vw, 12rem);
    line-height: 0.8; margin-bottom: 30px;
}

.outline-text {
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
    color: transparent; transition: 0.5s;
}

.hero-title:hover .outline-text { -webkit-text-stroke: 1.5px var(--primary); }

.hero-reveal-text {
    font-family: 'Montserrat'; font-weight: 200; font-size: clamp(1.2rem, 3vw, 2.2rem);
    color: #ccc; opacity: 0; transform: translateY(20px);
    animation: revealUp 1s var(--easing) forwards 0.8s;
}

@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

.main-cta {
    display: flex; align-items: center; gap: 20px; text-decoration: none;
    margin-top: 50px; width: fit-content;
}

.cta-text {
    font-family: 'Bebas Neue'; font-size: 1.8rem; color: #fff;
    border-bottom: 2px solid var(--primary); padding-bottom: 5px;
}

.cta-icon {
    width: 60px; height: 60px; border: 1px solid var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.5rem; transition: 0.4s;
}

.main-cta:hover .cta-icon { background: var(--primary); color: #fff; transform: translateX(10px); }

/* --- EXPERTISE SECTION --- */
.expertise-section { padding: 150px 8%; position: relative; }

.section-label {
    font-size: 0.7rem; letter-spacing: 5px; color: var(--primary); margin-bottom: 20px;
}

.expertise-cards { display: flex; height: 600px; gap: 25px; margin-top: 80px; }

.expertise-card {
    flex: 1; background: rgba(255,255,255,0.02); border: 1px solid var(--grey-border);
    position: relative; transition: all 0.9s var(--easing); padding: 50px;
    display: flex; flex-direction: column; justify-content: flex-end;
}

.card-num {
    position: absolute; top: 40px; right: 40px; font-family: 'Bebas Neue';
    font-size: 1.5rem; color: var(--primary); opacity: 0.5;
}

.card-heading {
    font-family: 'Bebas Neue'; font-size: 3.5rem; color: #fff;
    transform: rotate(-90deg); transform-origin: left bottom;
    transition: 0.8s var(--easing); white-space: nowrap;
    position: absolute; bottom: 50px; left: 90px;
}

.card-content {
    opacity: 0; transform: translateY(40px); transition: 0.6s var(--easing);
}

.premium-body {
    font-family: 'Montserrat'; font-weight: 300; font-size: 1rem;
    color: #aaa; margin-bottom: 30px; line-height: 1.8;
}

.skill-tags { display: flex; gap: 15px; }
.skill-tags span {
    font-size: 0.65rem; border: 1px solid var(--primary);
    padding: 5px 12px; color: var(--primary); font-weight: 900;
}

/* --- THE HEAVY INTERACTION --- */
.expertise-card:hover { flex: 4; background: rgba(122, 11, 11, 0.05); border-color: var(--primary); }

.expertise-card:hover .card-heading {
    transform: rotate(0deg); font-size: 5rem; left: 50px; bottom: 320px;
    background: linear-gradient(90deg, var(--primary) 50%, #fff 50%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.expertise-card:hover .card-content { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

/* --- CURSOR --- */
#custom-cursor {
    position: fixed; width: 10px; height: 10px; background: var(--primary);
    border-radius: 50%; pointer-events: none; z-index: 9999;
    mix-blend-mode: difference; transition: width 0.3s, height 0.3s, transform 0.1s;
}

/* --- SIDEBAR --- */
.sidebar-wrapper {
    height: 400px; border-left: 1px solid var(--grey-border);
    padding-left: 40px; display: flex; flex-direction: column; justify-content: space-between;
}

.vertical-text {
    writing-mode: vertical-rl; font-size: 0.7rem; letter-spacing: 8px; color: #444;
}

.hero-subtext { font-size: 0.8rem; font-weight: 900; color: var(--primary); letter-spacing: 2px; margin-bottom: 5px; }

/* --- MOBILE --- */
@media (max-width: 900px) {
    .expertise-cards { flex-direction: column; height: auto; }
    .expertise-card { height: 400px; }
    .hero-grid { grid-template-columns: 1fr; }
    .sidebar-wrapper { display: none; }
}
/* --- REFINED WHY US SECTION --- */
.why-zezus {
    padding: 100px 10%;
    background: #000;
    min-height: 80vh; /* Reduced height for tighter feel */
    display: flex;
    align-items: center;
}

.why-question {
    font-family: 'Bebas Neue';
    font-size: clamp(2rem, 5vw, 3.5rem); /* Scaled down */
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s var(--easing);
}

.bullets-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Tighter gap */
    max-width: 800px;
}

.bullet-row {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03); /* Fainter line */
    overflow: visible; /* To let the glow be seen */
}

/* THE MINI BALL & TRAIL */
.roll-ball {
    position: absolute;
    left: -20px;
    width: 6px; /* Tiny, precise ball */
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 5;
    opacity: 0;
    box-shadow: 0 0 10px var(--primary);
}

.ball-trail {
    position: absolute;
    right: 5px; /* Behind the ball */
    top: 50%;
    transform: translateY(-50%);
    width: 100px; /* Length of the trail */
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary));
    opacity: 0.6;
}

/* REFINED TEXT SIZES */
.bullet-content {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bullet-num {
    font-family: 'Bebas Neue';
    font-size: 1rem; /* Smaller number */
    color: var(--primary);
    opacity: 0.7;
}

.bullet-text {
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 1.1rem; /* Premium small size */
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
}

/* --- ANIMATION SEQUENCE --- */
.bullet-row.animate .roll-ball {
    animation: laserRoll 1s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}

.bullet-row.animate .bullet-content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

@keyframes laserRoll {
    0% {
        left: -10%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 110%;
        opacity: 0;
    }
}
/* Ensure the Preloader can fade out */
#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease; /* Fade effect */
}

.loader-bar {
    width: 0%;
    height: 2px;
    background: var(--primary);
    margin-top: 20px;
}

/* FIX: Why Question Initial State */
.why-question {
    font-family: 'Bebas Neue';
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 60px;
    /* This is the starting position (Hidden) */
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* FIX: Why Question Visible State (Triggered by JS) */
.why-zezus.is-visible .why-question {
    opacity: 1;
    transform: translateY(0);
}

/* Laser Ball Trail Fix */
.roll-ball {
    position: absolute;
    left: -20px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0; /* Hidden until animated */
}

.bullet-row.animate .roll-ball {
    animation: laserRoll 1s forwards;
}

@keyframes laserRoll {
    0% { left: -5%; opacity: 1; }
    100% { left: 110%; opacity: 0; }
}

/* Bullet Content Reveal */
.bullet-content {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.6s ease;
}

.bullet-row.animate .bullet-content {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}
#custom-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none; /* Crucial: allows you to click buttons through the cursor */
    z-index: 99999;
    mix-blend-mode: normal;
    /* This makes the "growing" look smooth */
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), 
                background 0.3s ease, 
                opacity 0.3s ease;
    transform: translate(-50%, -50%); /* Centers the spot on the mouse tip */
}

/* Class added by JS on hover */
.cursor-grow {
    transform: translate(-50%, -50%) scale(6) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    mix-blend-mode: difference !important;
    border: 0.5px solid rgba(255,255,255,0.5);
}
/* --- REFINED PARTNERS SECTION (MINI) --- */
.partners-section {
    padding: 80px 12%; /* More side breathing room */
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.partners-title {
    font-family: 'Bebas Neue';
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Smaller, refined heading */
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.partners-grid {
    display: flex;
    flex-direction: column;
    max-width: 650px; /* Constrained width for better readability */
}

.partner-item {
    position: relative;
    padding: 15px 0; /* Tighter vertical space */
    display: flex;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid rgba(122, 11, 11, 0.1); /* Subtle maroon divider */
    overflow: hidden;
}

.reveal-mask {
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: translateX(-101%);
    z-index: 2;
}

.partner-num {
    font-family: 'Bebas Neue';
    font-size: 0.9rem; /* Small tech-style numbers */
    color: var(--primary);
    opacity: 0.8;
}

.partner-text {
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 1.05rem; /* Standard luxury font size */
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: 0.5s var(--easing);
    letter-spacing: 0.5px;
}

/* CURTAIN REVEAL SPEED */
.partner-item.reveal-active .reveal-mask {
    animation: curtainReveal 0.8s var(--easing) forwards;
}

.partner-item.reveal-active .partner-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

@keyframes curtainReveal {
    0% { transform: translateX(-101%); }
    40% { transform: translateX(0); }
    60% { transform: translateX(0); }
    100% { transform: translateX(101%); }
}

.partner-footer {
    margin-top: 40px;
    max-width: 650px;
}

.footer-note {
    font-family: 'Montserrat';
    font-weight: 200;
    font-size: 0.85rem; /* Small, sophisticated footnote */
    color: #666;
    letter-spacing: 0.5px;
}

.highlight { 
    color: var(--primary); 
    font-weight: 400; 
}
/* --- PREMIUM CONTACT SECTION --- */
.contact-section {
    padding: 120px 10%;
    background: #000;
}

.contact-header { margin-bottom: 60px; }

.contact-title {
    font-family: 'Bebas Neue';
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 2px;
}

.contact-subtitle {
    font-family: 'Montserrat';
    font-weight: 200;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.premium-form {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Floating Label Input Logic */
.input-group {
    position: relative;
    width: 100%;
}

.input-group input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'Montserrat';
    font-size: 1.1rem;
    outline: none;
    transition: 0.4s;
}

.input-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: #444;
    font-family: 'Bebas Neue';
    letter-spacing: 2px;
    pointer-events: none;
    transition: 0.4s var(--easing);
}

.input-group input:focus, 
.input-group input:not(:placeholder-shown) {
    border-bottom-color: var(--primary);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: -15px;
    font-size: 0.8rem;
    color: var(--primary);
}

/* Service Selection Chips */
.selection-label {
    font-family: 'Bebas Neue';
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.chip {
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    font-family: 'Montserrat';
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
}

.chip:hover { border-color: var(--primary); color: #fff; }

.chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* WhatsApp Button */
.whatsapp-btn {
    margin-top: 20px;
    background: transparent;
    border: 1px solid var(--primary);
    padding: 20px 40px;
    color: #fff;
    font-family: 'Bebas Neue';
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
}

.whatsapp-btn:hover {
    background: var(--primary);
    box-shadow: 0 0 40px rgba(122, 11, 11, 0.4);
}
/* --- SCROLL COLOR LOGIC --- */
body {
    background-color: #000; /* Initial state */
    transition: background-color 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* This class will be added by JavaScript */
body.maroon-mode {
    background-color: #1a0202; /* Very dark, premium maroon */
}

/* Ensure sections stay transparent to show the body color */
.contact-section, .partners-section {
    background: transparent !important;
    transition: background 1.2s ease;
}

/* Optional: Make the input lines white when the background turns maroon 
   to maintain high contrast */
body.maroon-mode .input-group input {
    border-bottom-color: rgba(255,255,255,0.3);
}

body.maroon-mode .chip {
    border-color: rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.2);
}
/* --- CHIP VISIBILITY FIX --- */
.chip.active {
    background: #ffffff !important; /* Turns white as requested */
    color: #000000 !important;    /* Text turns black for perfect contrast */
    border-color: #ffffff;
    font-weight: 700;
}

/* --- ABOUT OVERLAY ANIMATION --- */
.about-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(100%); /* Slides from bottom */
}

.about-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.close-about {
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--primary);
    font-family: 'Bebas Neue';
    font-size: 1.2rem;
    letter-spacing: 2px;
    cursor: pointer;
}

/* Typography in About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1200px;
}

.about-heading {
    font-family: 'Bebas Neue';
    font-size: 4rem;
    margin-bottom: 30px;
}

.about-text {
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
}

.about-sub-heading {
    font-family: 'Bebas Neue';
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.about-sub-text {
    font-family: 'Montserrat';
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 40px;
}
/* --- UPDATED ABOUT OVERLAY (NO CRASH) --- */
.about-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98); /* Slightly darker for more focus */
    backdrop-filter: blur(25px);
    z-index: 9999; /* Ensure it's above everything */
    display: flex;
    align-items: center; /* Vertical center */
    justify-content: center;
    padding: 100px 10%; /* 100px Top/Bottom padding prevents the crash */
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    overflow-y: auto; /* Allows scrolling if the text is too long on small screens */
}

.about-content {
    width: 100%;
    max-width: 1200px;
    margin: auto; /* Keeps content perfectly centered */
    position: relative;
}

.close-about {
    position: fixed; /* Fixed so it's always at the top right */
    top: 50px;
    right: 50px;
    background: transparent;
    border: 1px solid var(--primary);
    padding: 10px 20px;
    color: #fff;
    font-family: 'Bebas Neue';
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.close-about:hover {
    background: var(--primary);
}

/* --- LOGO & TEXT SPACING --- */
.about-inner-logo {
    height: 80px; /* Large, premium size */
    width: auto;
    margin-bottom: 40px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(122, 11, 11, 0.3));
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.about-label {
    font-family: 'Bebas Neue';
    color: var(--primary);
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
/* Responsive About */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
/* --- LOGO STYLES --- */
.nav-logo {
    height: 45px; /* Adjust based on your preference */
    width: auto;
    transition: transform 0.4s var(--easing);
}
.logo-img-wrapper:hover .nav-logo {
    transform: scale(1.1);
}

/* --- CONTACT WATERMARK --- */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    width: 60%;
    opacity: 0.03; /* Extremely subtle for that premium feel */
    pointer-events: none;
    z-index: 0;
}

/* --- QUALITY REVEAL SECTION --- */
.quality-reveal-section {
    height: 60vh;
    padding: 0 10%;
    display: flex;
    align-items: center;
    background: transparent;
}

.quality-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.popup-logo-img {
    width: 200px;
    opacity: 0;
    transform: translateX(-100px) rotate(-10deg);
    transition: all 1.2s var(--easing);
}

.text-reveal-side {
    text-align: right;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.2s var(--easing);
}

.reveal-line {
    font-family: 'Bebas Neue';
    font-size: clamp(2rem, 5vw, 4.5rem);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.white-text { color: #fff; }

.highlight-box {
    background: #fff; /* The white background highlight */
    padding: 5px 20px;
    display: inline-block;
}

.maroon-text-highlight {
    color: var(--primary) !important;
    margin-bottom: 0;
}

/* Trigger Classes */
.quality-reveal-section.active .popup-logo-img {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

.quality-reveal-section.active .text-reveal-side {
    opacity: 1;
    transform: translateX(0);
}

/* CHIP ACTIVE FIX */
.chip.active {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}
/* --- HEAVY FOOTER DESIGN --- */
.heavy-footer {
    background: #000;
    padding: 150px 8% 50px 8%;
    position: relative;
    border-top: 1px solid #1a1a1a;
    overflow: hidden;
    z-index: 5;
}

/* Background Huge Text */
.footer-bg-watermark {
    position: absolute;
    bottom: -50px;
    left: -20px;
    font-family: 'Bebas Neue';
    font-size: 30vw;
    color: rgba(122, 11, 11, 0.03);
    pointer-events: none;
    line-height: 0.7;
    z-index: -1;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    margin-bottom: 120px;
}

.footer-mega-logo {
    height: 120px; /* Massive Logo */
    width: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 20px rgba(122, 11, 11, 0.2));
}

.footer-statement {
    font-family: 'Bebas Neue';
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    color: #fff;
    max-width: 600px;
}

.footer-nav-columns {
    display: flex;
    justify-content: space-between;
}

.col-label {
    display: block;
    font-family: 'Bebas Neue';
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #444;
    margin-bottom: 30px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a {
    text-decoration: none;
    color: #888;
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 1rem;
    transition: 0.4s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.hq-address, .hq-contact {
    font-family: 'Montserrat';
    font-size: 0.95rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* --- SOCIAL HORIZON & GLOW --- */
.footer-horizon {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-heavy-container {
    display: flex;
    gap: 40px;
}

.social-heavy-container img {
    width: 30px;
    height: 30px;
    opacity: 0.3;
    transition: all 0.5s var(--easing);
}

.social-heavy-container a { position: relative; }

.social-heavy-container a:hover img {
    opacity: 1;
    transform: scale(1.3) rotate(-5deg);
    filter: drop-shadow(0 0 15px var(--primary)) brightness(1.5);
}

/* Operational Pulse */
.status-pulse {
    color: #00ff41; /* Matrix/Tech green */
    font-weight: 700;
    animation: statusBlink 2s infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.footer-metadata {
    font-family: 'Bebas Neue';
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #222;
    display: flex;
    gap: 30px;
}

/* Responsive */
@media (max-width: 1000px) {
    .footer-main-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-nav-columns { flex-direction: column; gap: 40px; }
    .footer-horizon { flex-direction: column; gap: 40px; text-align: center; }
}