/* ==========================================================================
   THE MATRIX - CORE CYBERPUNK / LUXE DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-dark: #05080c;
    --bg-card: rgba(13, 20, 32, 0.75);
    --bg-card-hover: rgba(18, 28, 45, 0.85);
    --bg-surface: #0b111a;
    
    --matrix-green: #00ff9d;
    --matrix-glow: rgba(0, 255, 157, 0.35);
    --matrix-dark-green: #00874e;
    
    --cyber-cyan: #00e5ff;
    --cyber-cyan-glow: rgba(0, 229, 255, 0.3);
    --cyber-purple: #9d4edd;
    --cyber-amber: #ffb703;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 255, 157, 0.4);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Matrix Canvas */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.18;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Glow Line */
.top-glow-bar {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--matrix-green) 50%, transparent 100%);
    box-shadow: 0 0 15px var(--matrix-green);
    position: sticky;
    top: 0;
    z-index: 1001;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
    background: rgba(5, 8, 12, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 3px;
    z-index: 1000;
    padding: 14px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 255, 157, 0.1);
    border: 1.5px solid var(--matrix-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--matrix-green);
    font-size: 20px;
    box-shadow: 0 0 12px var(--matrix-glow);
    transition: var(--transition);
}

.brand-logo:hover .logo-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 20px var(--matrix-green);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    line-height: 1.1;
}

.logo-sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--matrix-green);
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 450px;
    position: relative;
    display: flex;
    align-items: center;
}

.header-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 10px 16px 10px 42px;
    border-radius: var(--radius-full);
    color: #ffffff;
    font-size: 13.5px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.header-search input:focus {
    background: rgba(0, 255, 157, 0.04);
    border-color: var(--matrix-green);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.2);
}

.search-icon {
    position: absolute;
    left: 16px;
    color: var(--text-dim);
    font-size: 14px;
    pointer-events: none;
}

.clear-search-btn {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 14px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.btn-pdf {
    background: rgba(0, 255, 157, 0.12);
    color: var(--matrix-green);
    border: 1px solid var(--matrix-green);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.15);
}

.btn-pdf:hover {
    background: var(--matrix-green);
    color: #05080c;
    box-shadow: 0 0 20px var(--matrix-glow);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #20ba59;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-admin-link {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 10px 12px;
}

.btn-admin-link:hover {
    color: var(--matrix-green);
    border-color: var(--matrix-green);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    padding: 60px 0 40px 0;
    position: relative;
}

.hero-container {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--matrix-green);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--matrix-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--matrix-green);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px var(--matrix-green); }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 18px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--matrix-green) 0%, var(--cyber-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 36px auto;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 18px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(0, 255, 157, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--matrix-green);
    font-size: 18px;
}

.stat-val {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
}

/* PDF Callout Banner */
.pdf-callout-banner {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.12) 0%, rgba(0, 229, 255, 0.08) 100%);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pdf-callout-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pdf-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--matrix-green);
    color: #05080c;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--matrix-glow);
}

.pdf-callout-left h4 {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.pdf-callout-left p {
    font-size: 13.5px;
    color: var(--text-muted);
}

.btn-pdf-cta {
    background: var(--matrix-green);
    color: #05080c;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 0 20px var(--matrix-glow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-pdf-cta:hover {
    background: var(--cyber-cyan);
    transform: scale(1.03);
    box-shadow: 0 0 25px var(--cyber-cyan-glow);
}

/* ==========================================================================
   FILTER BAR & CATEGORY TABS
   ========================================================================== */

.filter-section {
    padding: 20px 0;
    position: sticky;
    top: 75px;
    z-index: 990;
    background: rgba(5, 8, 12, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

.category-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.cat-pill:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.cat-pill.active {
    background: rgba(0, 255, 157, 0.12);
    border-color: var(--matrix-green);
    color: var(--matrix-green);
    box-shadow: 0 0 12px rgba(0, 255, 157, 0.2);
}

/* ==========================================================================
   PRODUCTS GRID & CARDS
   ========================================================================== */

.products-section {
    padding: 40px 0 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--matrix-green);
    display: block;
    margin-bottom: 4px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}

.product-count-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.product-card:hover {
    border-color: rgba(0, 255, 157, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 157, 0.15);
}

/* Card Badges */
.card-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-featured {
    background: rgba(0, 255, 157, 0.9);
    color: #05080c;
    box-shadow: 0 0 10px var(--matrix-glow);
}

.badge-code {
    background: rgba(5, 8, 12, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--cyber-cyan);
    font-family: 'JetBrains Mono', monospace;
}

/* Image Wrap */
.card-image-wrap {
    height: 240px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.product-img {
    max-width: 90%;
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.image-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 12, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .image-hover-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: var(--matrix-green);
    color: #05080c;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 15px var(--matrix-glow);
}

/* Card Body */
.card-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11.5px;
}

.card-cat {
    color: var(--text-dim);
    font-weight: 600;
}

.card-stock {
    color: var(--matrix-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    cursor: pointer;
    line-height: 1.3;
    transition: var(--transition);
}

.product-title:hover {
    color: var(--matrix-green);
}

.product-subtitle {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-features-mini {
    list-style: none;
    margin-bottom: 16px;
    flex: 1;
}

.product-features-mini li {
    font-size: 11.5px;
    color: #cbd5e1;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-features-mini li i {
    color: var(--matrix-green);
    font-size: 9px;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    margin-top: auto;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 700;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.curr-sym {
    font-size: 14px;
    font-weight: 800;
    color: var(--matrix-green);
}

.curr-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

.curr-code {
    font-size: 10px;
    color: var(--text-dim);
    font-weight: 700;
}

.price-custom {
    font-size: 14px;
    font-weight: 700;
    color: var(--cyber-cyan);
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-icon-action {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon-action:hover {
    background: rgba(0, 255, 157, 0.15);
    border-color: var(--matrix-green);
    color: var(--matrix-green);
}

.btn-card-order {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid #25d366;
    color: #25d366;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-card-order:hover {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* Empty State */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    max-width: 500px;
    margin: 40px auto;
}

.no-results-icon {
    font-size: 48px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.no-results h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
}

.no-results p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ==========================================================================
   MODALS
   ========================================================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 12, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: #0d1522;
    border: 1px solid var(--border-glow);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 157, 0.15);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 32px;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.modal-img-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img-wrap img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.modal-info-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.modal-code-badge {
    background: var(--matrix-green);
    color: #05080c;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--matrix-green);
    font-weight: 600;
    margin-bottom: 16px;
}

.modal-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.modal-features-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-bottom: 20px;
}

.modal-features-box h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 8px;
}

.modal-features-list {
    list-style: none;
}

.modal-features-list li {
    font-size: 12.5px;
    color: #cbd5e1;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-features-list li i {
    color: var(--matrix-green);
    font-size: 10px;
}

.modal-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
    margin-top: 10px;
}

.modal-price-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--matrix-green);
}

.btn-modal-wa {
    background: #25d366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.btn-modal-wa:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #0d1522;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.floating-wa:hover .wa-tooltip {
    opacity: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: #030508;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 16px 0 20px 0;
    max-width: 380px;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-contact-links a {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-contact-links a:hover {
    color: var(--matrix-green);
}

.footer-title {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--matrix-green);
    padding-left: 4px;
}

.highlight-link {
    color: var(--matrix-green) !important;
    font-weight: 700;
}

.btn-whatsapp-full {
    background: #25d366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    font-size: 12.5px;
    color: var(--text-dim);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--text-dim);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--matrix-green);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 992px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .modal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    .header-search {
        order: 3;
        max-width: 100%;
        width: 100%;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-stats {
        grid-template-columns: 1fr;
    }
    .pdf-callout-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}
