:root {
    /* Color Palette */
    --color-bg-dark: #0A0A0A;
    --color-bg-card: #121212;
    --color-text-main: #FFFFFF;
    --color-text-muted: #A3A3A3;
    --color-accent: #FFD700;
    /* Gold/Yellow */
    --color-accent-hover: #F5C518;
    --color-border: #2D2D2D;
    --color-success: #10B981;
    --color-danger: #EF4444;

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    /* Signage Style */
    --font-body: 'Montserrat', sans-serif;
    /* Modern & Clean */

    /* Spacing */
    --container-width: 1280px;
    --header-height: 160px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* Dark Premium Atmospheric Background */
    background-image:
        /* Subtle smoke-like swirls top left */
        radial-gradient(circle at 15% 15%, rgba(40, 40, 40, 0.4) 0%, transparent 45%),
        /* Deep moody lighting bottom right */
        radial-gradient(circle at 85% 85%, rgba(60, 50, 40, 0.25) 0%, transparent 50%),
        /* Overall dark texture wash */
        linear-gradient(135deg, rgba(8, 8, 8, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-accent);
    margin-bottom: 1rem;
    line-height: 1.25;
    text-transform: none;
    /* Removed forced uppercase */
    /* More impactful like signage */
    letter-spacing: 0;
    /* Normal letter spacing */
    font-weight: 600;
    /* refined weight */
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-accent {
    color: var(--color-accent);
}

.bg-accent {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
}

.font-heading {
    font-family: var(--font-heading);
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-4 {
    gap: 1rem;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-1px);
}

.subpage-main {
    padding-top: var(--header-height);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
}

/* Layout */
header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0) 100%);
    border-bottom: none;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-link {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-text-main);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

header .logo img {
    height: 140px;
    width: auto;
    transition: height 0.3s ease;
}

/* --- Footer (Hyper-Brutalist / Blueprint) --- */
footer {
    background-color: #000;
    border-top: 5px solid var(--color-accent);
    padding: 0;
    margin-top: 5rem;
    position: relative;
    border-radius: 0;
}

/* Footer Grid - Desktop: Side by Side, Mobile: Stacked */
.footer-grid-wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .footer-grid-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .footer-grid-wrapper .footer-col {
        flex: 1;
    }
}

/* Blueprint Grid */
.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0 !important;
    /* Remove gap for borders */
    border-left: 2px solid #333;
}

.footer-col {
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    padding: 3rem;
}

/* Hollow Titles */
.blueprint-title {
    font-size: 2.5rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-accent);
    opacity: 0.8;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 900;
}

/* Boxed Links */
footer .nav-link {
    display: block;
    border: 1px solid #333;
    padding: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.1s;
    color: #888;
    font-weight: 700;
}

footer .nav-link:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
    box-shadow: 4px 4px 0 #fff;
    transform: translate(-2px, -2px);
    padding-left: 10px;
    /* Reset padding slide */
    text-decoration: none;
}

/* Hero Slider - Cinematic & Premium */
.hero-slider-container {
    position: relative;
    height: 100vh;
    /* Full screen cinematic height */
    min-height: 100vh;
    background-color: #000;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Cinematic Zoom Effect - Optimized */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    /* Start slightly zoomed out */
    transition: transform 7s linear;
    /* Linear is cheaper/smoother for slow pans */
    will-change: transform;
    /* Hint to browser to promote to GPU layer */
    backface-visibility: hidden;
    /* Prevent flickering */
}

.hero-slide.active img {
    transform: scale(1);
}

/* Poster Style Banner Effects */
.poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 35%,
            rgba(0, 0, 0, 0.2) 70%,
            transparent 100%);
    z-index: 10;
    display: flex;
    align-items: center;
}

.poster-content {
    max-width: 800px;
    padding: 3rem;
    position: relative;
}

/* Cinematic Glow behind text */
.poster-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

.poster-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    border-radius: 2px;
}

.poster-title {
    font-size: 3.9rem;
    font-weight: 900;
    /* Black weight */
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    /* Switching to Geometric Sans */
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.poster-title .text-accent {
    color: var(--color-accent);
    /* Solid Gold */
    -webkit-text-stroke: 0;
    position: relative;
    display: inline-block;
}

/* Gold fill effect on hover or active (Scale instead of fill) */
.hero-slide.active .poster-title .text-accent {
    transform: scale(1.05);
    transition: transform 1s ease 0.5s;
    display: inline-block;
}

.poster-subtitle {
    font-size: 1.1rem;
    color: #f0f0f0;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.poster-btn {
    font-size: 1rem;
    padding: 1.25rem 3.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    /* Pill shape for modern look */
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.25);
    font-family: 'Montserrat', sans-serif;
}

.slide-desc {
    display: none;
    /* Hide old description */
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 30;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--color-accent);
    width: 0%;
    transition: width 0.1s linear;
    /* JS driven linear update */
}

/* Minimal Nav (No Icons) */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 20;
    display: flex;
    gap: 0;
    /* Connected buttons */
}

.slider-btn {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    font-family: var(--font-body);
}

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

.slider-btn:first-child {
    border-right: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    :root {
        --header-height: 100px;
    }

    /* Header & Nav */
    /* Header & Nav */
    header .container {
        padding: 0 1rem;
    }

    header .logo img {
        height: 90px !important;
    }

    .hidden-mobile {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Poster Banner Scale Down */
    .poster-content {
        padding: 1rem;
        max-width: 100%;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        /* Ensure relative referencing for absolute children if needed */
    }

    .poster-content::before {
        width: 120%;
        /* Wider width to cover edges */
        height: 120%;
        opacity: 0.9;
        /* Darker background for readability */
        background: radial-gradient(circle, rgba(0, 0, 0, 0.8) 0%, transparent 80%);
    }

    .poster-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
        background: rgba(0, 0, 0, 0.6);
        /* Darker badge bg */
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .poster-title {
        font-size: 2.75rem;
        /* Maintain original size as requested */
        line-height: 1.1;
        margin-bottom: 1.5rem;
        width: 100%;
        text-shadow: 0 5px 20px rgba(0, 0, 0, 0.9);
    }

    .poster-subtitle {
        font-size: 0.95rem;
        border-left: none;
        padding-left: 0;
        margin-bottom: 2rem;
        line-height: 1.6;
        color: #ddd;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Container for Button + Icons Row */
    .poster-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        /* Space between icons and button */
        width: 100%;
        position: relative;
    }

    .poster-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        /* allow shrinking if needed, or specific width */
        white-space: nowrap;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .poster-overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.9) 100%);
        justify-content: center;
        /* Center horizontally */
        align-items: center;
        /* True Center */
        padding-bottom: 0;
        padding-top: var(--header-height);
        /* Offset for header */
    }

    .hero-slider-container {
        height: 100vh;
        /* Fallback */
        height: 100dvh;
        /* Dynamic scale for mobile browsers */
        min-height: auto;
    }

    /* --- Social Icons Re-location for Mobile --- */
    .hero-social-floating {
        position: absolute !important;
        top: auto !important;
        bottom: 2rem !important;
        /* Level with slider arrows */
        left: 2rem !important;
        /* Symmetrical left padding */
        width: auto !important;
        /* Fit content only */
        justify-content: flex-start !important;
        transform: none !important;
        right: auto !important;
        flex-direction: row !important;
        gap: 1rem !important;
        z-index: 100 !important;
        display: flex !important;
    }

    .social-float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    /* Sections */
    .section {
        padding: 3rem 0 !important;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background-color: var(--color-bg-card);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.active {
    right: 0;
}

.mobile-nav-link {
    display: block;
    font-size: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    font-family: var(--font-heading);
    color: #fff;
}

.mobile-overlay-bg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay-bg.active {
    opacity: 1;
    pointer-events: all;
}

/* --- Product Card (Marginal / Brutalist) --- */
.product-card {
    background-color: #000;
    border: 2px solid #222;
    /* Raw border */
    border-radius: 0;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translate(-4px, -4px);
    /* Mechanical lift */
    box-shadow: 4px 4px 0px var(--color-accent);
    /* Hard shadow */
    border-color: var(--color-accent);
    z-index: 10;
}

.product-card .image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-bottom: 2px solid #222;
}

.product-card:hover .image-wrapper {
    border-color: var(--color-accent);
}

.product-card .image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease, transform 0.5s ease;
    opacity: 1;
}

.product-card:hover .image-wrapper img {
    filter: brightness(1.1) contrast(1);
    transform: scale(1.05);
    /* Slight mechanic zoom */
    opacity: 1;
}

/* Quick View Button */
.quick-view-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    /* Hidden below */
    background: var(--color-accent);
    color: #000;
    padding: 1rem;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
    /* Slide up mechanic */
}

.quick-view-btn:hover {
    background: #fff;
    color: #000;
}

.product-card .content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .category-badge {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-card:hover .category-badge {
    color: var(--color-accent);
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 800;
    /* Heavier font */
    text-transform: uppercase;
}

.product-card h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.product-card h3 a:hover {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card .price span {
    background: #222;
    padding: 0.2rem 0.5rem;
    transition: background 0.3s;
}

.product-card:hover .price span {
    background: var(--color-accent);
    color: #000;
}

.product-card .add-btn {
    width: 40px;
    height: 40px;
    border-radius: 0;
    /* Square */
    background: #222;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s;
}

.product-card .add-btn:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
}

/* --- Quick View Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.qv-modal {
    background: var(--color-bg-card);
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .qv-modal {
    transform: scale(1);
}

.qv-image {
    width: 50%;
    position: relative;
    background: #000;
}

.qv-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

.qv-content {
    width: 50%;
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.qv-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #aaa;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    z-index: 5;
}

.qv-close:hover {
    color: #fff;
}

/* --- Detail Page Zoom --- */
.detail-image-wrapper {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-image-wrapper img {
    transition: transform 0.3s ease;
    transform-origin: center center;
}

/* Mobile Responsiveness for Modal */
@media (max-width: 768px) {
    .qv-modal {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .qv-image,
    .qv-content {
        width: 100%;
    }

    .qv-image {
        height: 300px;
    }

    .quick-view-btn {
        display: none;
        /* Hide hover triggers on mobile */
    }
}

/* Floating Social Buttons */
.hero-social-floating {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.social-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: #000;
    border: 1px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-float-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-float-btn:hover {
    transform: scale(1.1) translateX(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-float-btn:hover::before {
    opacity: 1;
}

.social-float-btn.whatsapp:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.social-float-btn.instagram:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

/* Desktop Modal Height Constraint */
@media (min-width: 769px) {
    .qv-modal {
        max-height: 85vh;
        /* Prevent it from touching edges */
        overflow: hidden;
        /* Image or content will handle scroll inside if needed */
        display: flex;
    }

    .qv-content {
        overflow-y: auto;
        /* Allow text to scroll if it's too long */
        max-height: 85vh;
    }

    .qv-image {
        height: auto;
        /* Let flex container define height */
    }
}

/* Quick View Zoom Effect (JS handled) */
.qv-image {
    overflow: hidden;
    cursor: crosshair;
    /* More pro feeling */
}

.qv-image img {
    transition: transform 0.2s ease-out;
    /* Faster transition for responsive feel */
    will-change: transform, transform-origin;
}

/* Detail Page Zoom Enhancement (JS handled) */
.detail-image-wrapper {
    cursor: crosshair;
}

.detail-image-wrapper img {
    transition: transform 0.2s ease-out;
    will-change: transform, transform-origin;
}

/* --- Feature Cards (Modern Depth) --- */
.feature-card-modern {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 12px;
    border-bottom: none !important;
    /* Override any inline if missed */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.2);
}

.feature-card-modern h3 {
    margin-bottom: 0.5rem;
}

/* --- Responsive Section Headers --- */
/* --- Responsive Section Headers --- */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Adds subtle hierarchy separator */
}

.section-header h2 {
    font-size: 1.75rem;
    /* Reduced from default h2 size */
    text-transform: none;
    /* Let the natural casing show (Title Case) */
    letter-spacing: 0;
    /* Remove wide spacing */
    margin-bottom: 0;
    font-weight: 600;
    /* Less heavy */
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: row;
        /* Keep side-by-side */
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.3rem !important;
        /* Balanced mobile size */
        margin-bottom: 0 !important;
        line-height: 1.2;
    }

    .section-header .btn {
        width: auto;
        /* Revert full width */
        font-size: 0.8rem;
        /* Smaller button text */
        padding: 0.4rem 0.8rem;
        /* Compact padding */
        white-space: nowrap;
    }
}

/* --- Category Cards (Marginal / Brutalist) --- */
.category-card {
    position: relative;
    height: 420px;
    background: #000;
    border: 2px solid #222;
    /* Raw border */
    overflow: hidden;
    border-radius: 0;
    /* NO RADIUS */
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
    z-index: 1;
}

.category-card:hover {
    border-color: var(--color-accent);
    transform: translate(-4px, -4px);
    /* Mechanical lift */
    box-shadow: 4px 4px 0px var(--color-accent);
    /* Hard shadow */
    z-index: 10;
}

/* Grayscale to Color Effect */
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease, transform 0.5s ease;
    opacity: 1;
}

.category-card:hover img {
    filter: brightness(1.1) contrast(1);
    /* Brightening effect */
    opacity: 1;
    transform: scale(1.1);
}

/* Raw Overlay Block */
.category-card .overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    /* No soft gradients */
}

/* Aggressive Typography */
.category-card h3 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    padding: 0.5rem 1.5rem;
    transform: rotate(-3deg);
    /* Slight chaotic tilt */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #fff;
    box-shadow: 5px 5px 0px rgba(255, 255, 255, 0.2);
}

.category-card:hover h3 {
    background: var(--color-accent);
    color: #000;
    border-color: #000;
    transform: rotate(0deg) scale(1.1);
    box-shadow: 8px 8px 0px #000;
}

/* Hidden Glitch Text */
.category-card .action-text {
    margin-top: 1rem;
    font-family: monospace;
    font-size: 1rem;
    background: #fff;
    color: #000;
    padding: 0.2rem 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.2s ease;
    font-weight: 700;
}

.category-card:hover .action-text {
    opacity: 1;
    transform: translateY(0);
}

/* --- Blog Cards (Marginal / Brutalist) --- */
.blog-card {
    background: #000;
    border: 2px solid #222;
    /* Raw border */
    border-radius: 0;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translate(-4px, -4px);
    /* Mechanical lift */
    box-shadow: 4px 4px 0px var(--color-accent);
    /* Hard shadow */
    border-color: var(--color-accent);
    z-index: 10;
}

.blog-card>a {
    position: relative;
    display: block;
    overflow: hidden;
    border-bottom: 2px solid #222;
}

.blog-card:hover>a {
    border-color: #222;
    /* Keep dark, don't turn yellow */
}

.blog-card img {
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease, transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card:hover img {
    filter: brightness(1.1) contrast(1);
    transform: scale(1.05);
}

/* Date Badge Override */
.blog-card .badge-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-accent);
    color: #000;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 0;
    font-family: monospace;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 2px 2px 0px #000;
    z-index: 2;
}

/* --- Mobile Menu (Tactical Command) --- */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #000;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--color-accent);
    /* Tactical Barrier */
    padding: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

.mobile-menu-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid #333;
    padding-bottom: 1rem;
}

.command-title {
    font-weight: 900;
    color: var(--color-accent);
    letter-spacing: 2px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.close-tactical {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.close-tactical:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
}

.tactical-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Connected blocks */
}

.tactical-link {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid #222;
    transition: all 0.2s;
    position: relative;
    display: block;
}

.tactical-link:hover {
    color: var(--color-accent);
    padding-left: 1rem;
    /* Slide effect */
    background: linear-gradient(90deg, #111 0%, transparent 100%);
    border-color: var(--color-accent);
}

.tactical-footer {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1rem;
}

.tactical-social-btn {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    color: #888;
    font-size: 1.5rem;
    transition: all 0.2s;
}

.tactical-social-btn:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
}

.tactical-action-btn {
    background: var(--color-accent);
    color: #000;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--color-accent);
}