/* ============================================
   GENUINEHACKERS - Raw Terminal Hacker Theme
   Underground. Authentic. No BS.
   ============================================ */

/* CSS Variables - Terminal Authentic Colors */
:root {
    /* Terminal Green Theme - Increased Brightness */
    --term-green: #00ff00;
    --term-green-dim: #00dd00;
    --term-green-bright: #99ff99;

    /* Hacker Palette */
    --hack-red: #ff0000;
    --hack-yellow: #ffff00;
    --hack-cyan: #00ffff;
    --hack-white: #ffffff;

    /* Backgrounds */
    --bg-black: #000000;
    --bg-terminal: #0a0a0a;
    --bg-card: #111111;

    /* Text - Increased Brightness */
    --text-primary: #00ff00;
    --text-secondary: #00dd00;
    --text-muted: #009900;

    /* Fonts - Only Monospace */
    --font-main: 'Courier New', 'Courier', monospace;
    --font-code: 'Courier New', 'Courier', monospace;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-size: 14px;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 100vw;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

/* CRT Screen Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px;
    z-index: 9999;
    pointer-events: none;
    animation: scanline 8s linear infinite;
}

/* CRT Glow */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 255, 0, 0.1) 0%,
        transparent 70%
    );
    z-index: 9998;
    pointer-events: none;
}

@keyframes scanline {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Lightning Flash Effect for Thunderstorm */
.lightning-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(0, 255, 255, 0.5) 20%,
        rgba(0, 255, 0, 0.3) 40%,
        rgba(0, 255, 0, 0.1) 60%,
        transparent 80%);
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.05s ease-out;
    mix-blend-mode: screen;
}

/* Lightning Bolt Container */
.lightning-bolt-container {
    position: fixed;
    top: 0;
    width: 150px;
    height: 100vh;
    pointer-events: none;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.05s ease-out;
    transform: translateX(-50%);
}

/* Lightning Bolt SVG */
.lightning-bolt {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8))
            drop-shadow(0 0 20px rgba(0, 255, 0, 0.6))
            drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
}

/* Matrix Rain Background */
#matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.08;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* Terminal Box Style */
.terminal-box {
    border: 2px solid var(--term-green);
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    position: relative;
    box-shadow:
        inset 0 0 20px rgba(0, 255, 0, 0.1),
        0 0 20px rgba(0, 255, 0, 0.2);
}

.terminal-box::before {
    content: '┌' attr(data-title) '┐';
    position: absolute;
    top: -12px;
    left: 10px;
    background: var(--bg-black);
    padding: 0 10px;
    color: var(--term-green-bright);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

/* Navigation - Terminal Style */
.navbar {
    background: var(--bg-black);
    border-bottom: 2px solid var(--term-green);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 9997;
    font-family: var(--font-code);
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: bold;
    color: var(--term-green);
    font-family: var(--font-code);
    text-decoration: none;
    text-shadow: 0 0 15px var(--term-green), 0 0 25px rgba(0, 255, 0, 0.4);
}

.nav-brand::before {
    content: 'root@hack:~# ';
    color: var(--hack-red);
}

.logo-icon {
    font-size: 20px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0.3; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu li {
    border-right: 1px solid var(--term-green-dim);
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 20px;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.2s;
    position: relative;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.4);
}

.nav-menu a::before {
    content: '[ ';
    color: var(--term-green-dim);
}

.nav-menu a::after {
    content: ' ]';
    color: var(--term-green-dim);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--term-green);
    color: var(--bg-black);
    text-shadow: none;
}

.nav-menu a:hover::before,
.nav-menu a:hover::after,
.nav-menu a.active::before,
.nav-menu a.active::after {
    color: var(--bg-black);
}

/* Dropdown Menu Styles */
.nav-menu li.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 8px;
    margin-left: 4px;
    transition: transform 0.3s;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        background: var(--bg-black);
        border: 2px solid var(--term-green);
        border-top: none;
        width: 900px !important;
        max-width: none !important;
        list-style: none;
        padding: 20px;
        margin: 0;
        box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
        z-index: 9999;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
        column-gap: 15px;
        overflow: visible;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        opacity: 1;
        pointer-events: all;
        transform: translateX(-50%) translateY(0);
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }
    
    .dropdown-menu li {
        border: 1px solid var(--term-green-dim);
        border-radius: 5px;
        transition: all 0.2s;
        opacity: 0;
        transform: translateY(-5px);
    }
    
    .dropdown:hover .dropdown-menu li {
        animation: fadeInItem 0.3s ease forwards;
    }
    
    .dropdown:hover .dropdown-menu li:nth-child(1) { animation-delay: 0.05s; }
    .dropdown:hover .dropdown-menu li:nth-child(2) { animation-delay: 0.08s; }
    .dropdown:hover .dropdown-menu li:nth-child(3) { animation-delay: 0.11s; }
    .dropdown:hover .dropdown-menu li:nth-child(4) { animation-delay: 0.14s; }
    .dropdown:hover .dropdown-menu li:nth-child(5) { animation-delay: 0.17s; }
    .dropdown:hover .dropdown-menu li:nth-child(6) { animation-delay: 0.20s; }
    .dropdown:hover .dropdown-menu li:nth-child(7) { animation-delay: 0.23s; }
    .dropdown:hover .dropdown-menu li:nth-child(8) { animation-delay: 0.26s; }
    .dropdown:hover .dropdown-menu li:nth-child(9) { animation-delay: 0.29s; }
    .dropdown:hover .dropdown-menu li:nth-child(10) { animation-delay: 0.32s; }
    .dropdown:hover .dropdown-menu li:nth-child(11) { animation-delay: 0.35s; }
    .dropdown:hover .dropdown-menu li:nth-child(12) { animation-delay: 0.38s; }
    
    @keyframes fadeInItem {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-menu li:hover {
        border-color: var(--term-green);
        background: rgba(0, 255, 0, 0.05);
        transform: translateY(0) translateX(3px) !important;
    }
    
    /* Make last row items span evenly if not divisible by 3 */
    .dropdown-menu li:nth-child(13),
    .dropdown-menu li:nth-child(14) {
        min-height: 45px;
    }
    
    .dropdown-menu a {
        padding: 10px 12px;
        font-size: 10px;
        white-space: normal;
        display: flex;
        align-items: center;
        gap: 6px;
        line-height: 1.3;
        text-shadow: 0 0 6px rgba(0, 255, 0, 0.3);
    }
    
    .dropdown-menu a::before,
    .dropdown-menu a::after {
        content: none;
    }
    
    .dropdown-menu a:hover {
        background: var(--term-green);
        color: var(--bg-black);
    }
    
    .nav-toggle {
        display: none;
        flex-direction: column;
        gap: 4px;
        background: transparent;
        border: 1px solid var(--term-green);
        padding: 5px;
        cursor: pointer;
    }
    
    .nav-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--term-green);
    }
    
    /* Hero Section - Terminal Style */
    .hero {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 0 0 0;
        position: relative;
        width: 100%;
        overflow: visible;
        z-index: 1;
    }

    /* Hero Image Styling - Uniform across all service pages */
    .hero img,
    .hero-content img {
        width: 100%;
        max-width: 883px;
        height: auto;
        display: block;
        margin: 2rem auto 0 auto;
        border-radius: 8px;
        border: 1px solid rgba(0, 255, 0, 0.3);
        box-shadow: 0 5px 20px rgba(0, 255, 0, 0.2);
    }
    
    .hero-content h1 {
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 15px;
        font-family: var(--font-code);
        color: var(--term-green);
        text-shadow: 0 0 20px var(--term-green), 0 0 30px rgba(0, 255, 0, 0.5);
        letter-spacing: 3px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
        hyphens: auto;
    }
    
    .hero-content h1::before {
        content: '> ';
        color: var(--hack-red);
        margin-right: 5px;
    }
    
    .hero-content .tagline {
        font-size: 18px;
        color: var(--text-secondary);
        margin-bottom: 15px;
        font-family: var(--font-code);
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }
    
    .hero-content .tagline::before {
        content: '$ ';
        color: var(--hack-yellow);
        margin-right: 5px;
    }
    
    .typing-text {
        border-right: 2px solid var(--term-green);
        white-space: normal;
        overflow: visible;
        animation: blink-cursor 0.75s step-end infinite;
        display: inline-block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    @keyframes blink-cursor {
        0%, 49% { border-color: var(--term-green); }
        50%, 100% { border-color: transparent; }
    }
    
    .cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    
    /* Buttons - Terminal Style */
    .btn {
        padding: 12px 30px;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        text-decoration: none;
        border: 2px solid var(--term-green);
        background: var(--bg-black);
        color: var(--term-green);
        cursor: pointer;
        transition: all 0.2s;
        font-family: var(--font-code);
        letter-spacing: 2px;
        position: relative;
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
        text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
        display: inline-block;
        box-sizing: border-box;
        text-align: center;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .btn::before {
        content: '[ ';
    }
    
    .btn::after {
        content: ' ]';
    }
    
    .btn-primary {
        background: var(--bg-black);
        color: var(--term-green);
        border-color: var(--term-green);
    }
    
    .btn-primary:hover {
        background: var(--term-green);
        color: var(--bg-black);
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.8), 0 0 50px rgba(0, 255, 0, 0.4);
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
        transform: translateY(-2px);
    }
    
    .btn-outline {
        background: transparent;
        color: var(--hack-red);
        border-color: var(--hack-red);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    }
    
    .btn-outline:hover {
        background: var(--hack-red);
        color: var(--bg-black);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
        transform: translateY(-2px);
    }
    
    /* Services Grid - Terminal Cards */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px;
        padding: 30px 0;
    }
    
    /* Tablet: 2 columns */
    @media (max-width: 1024px) and (min-width: 481px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }
    
    /* Mobile: 1 column */
    @media (max-width: 480px) {
        .services-grid {
            grid-template-columns: 1fr !important;
        }
    }
    
    .service-card {
        background: var(--bg-card);
        border: 2px solid var(--term-green-dim);
        padding: 25px;
        position: relative;
        transition: all 0.3s;
        box-shadow: inset 0 0 10px rgba(0, 255, 0, 0.05);
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .service-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
        height: 100%;
    }
    
    .service-card-link .service-card {
        cursor: pointer;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--term-green);
    }
    
    .service-card::after {
        content: '//----[ END ]----//';
        position: absolute;
        bottom: 10px;
        right: 15px;
        color: var(--text-muted);
        font-size: 10px;
    }
    
    .service-card:hover {
        border-color: var(--term-green);
        background: rgba(0, 255, 0, 0.05);
        box-shadow:
            inset 0 0 20px rgba(0, 255, 0, 0.1),
            0 0 20px rgba(0, 255, 0, 0.3);
        transform: translateY(-5px);
    }
    
    .service-card:hover::before {
        box-shadow: 0 0 10px var(--term-green);
    }
    
    .service-icon {
        font-size: 40px;
        margin-bottom: 15px;
        display: block;
        text-shadow: 0 0 10px currentColor;
    }
    
    .service-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--term-green);
        font-family: var(--font-code);
        text-transform: uppercase;
        letter-spacing: 2px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
    }
    
    .service-card h3::before {
        content: '0x// ';
        color: var(--hack-red);
        font-size: 14px;
    }
    
    .service-card p {
        color: var(--text-secondary);
        margin-bottom: 20px;
        line-height: 1.8;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .service-card h4 {
        font-family: var(--font-code);
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .service-card h4::before {
        content: '>>> ';
        color: var(--hack-yellow);
    }
    
    .service-features {
        list-style: none;
        margin-bottom: 30px;
        flex-grow: 1;
    }
    
    .service-features li {
        padding: 6px 0;
        padding-left: 20px;
        position: relative;
        color: var(--text-secondary);
        font-size: 13px;
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.2);
    }
    
    .service-features li::before {
        content: '>';
        position: absolute;
        left: 0;
        color: var(--term-green);
        font-weight: bold;
    }
    
    /* ============================================
       SERVICE PAGE CATEGORIZED LAYOUTS
       ============================================ */
    
    /* Category Headers */
    .category-title {
        color: var(--term-green);
        font-size: 28px;
        font-family: var(--font-code);
        margin-bottom: 1rem;
        text-shadow: 0 0 10px var(--term-green);
        letter-spacing: 3px;
    }
    
    .category-divider {
        height: 2px;
        background: linear-gradient(90deg, var(--term-green) 0%, transparent 100%);
        margin-bottom: 2rem;
        box-shadow: 0 0 10px var(--term-green);
    }
    
    /* Row Layout - Full Width Horizontal (Readable) */
    .services-row-layout {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .service-card-row {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 30px;
        align-items: start;
    }
    
    .service-card-row .service-card-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        background: rgba(0, 255, 0, 0.03);
        border-right: 3px solid var(--term-green);
    }
    
    .service-card-row .service-card-header .service-icon {
        margin: 0;
        font-size: 60px;
    }
    
    .service-card-row .service-card-header h3 {
        margin: 0;
        font-size: 24px;
        line-height: 1.3;
    }
    
    .service-card-row .service-card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .service-card-row .service-card-footer {
        margin-top: auto;
        padding-top: 1.5rem;
    }
    
    /* Staggered Layout - Asymmetric Grid */
    .services-staggered {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 25px;
        padding: 30px 0;
    }
    
    .services-staggered .service-card-link:nth-child(odd) {
        grid-column: span 7;
    }
    
    .services-staggered .service-card-link:nth-child(even) {
        grid-column: span 5;
    }
    
    .services-staggered .service-card-link:nth-child(3n+1) {
        grid-column: span 5;
    }
    
    .services-staggered .service-card-link:nth-child(3n+2) {
        grid-column: span 7;
    }
    
    .services-staggered .service-card-link:nth-child(3n) {
        grid-column: span 12;
    }
    
    /* Service Card Structure */
    .service-card-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .service-card-body {
        flex: 1;
    }
    
    .service-card-footer {
        margin-top: auto;
    }
    
    /* Responsive Adjustments for New Layouts */
}

/* Form Styles - Terminal Input */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--term-green);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.form-group label::before {
    content: '# ';
    color: var(--hack-yellow);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: var(--bg-card);
    border: 2px solid var(--term-green-dim);
    color: var(--term-green);
    font-family: var(--font-code);
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--term-green);
    box-shadow:
        inset 0 0 10px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(0, 255, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-black);
    color: var(--term-green);
}

/* Alerts - Terminal Style */
.alert {
    padding: 15px 20px;
    margin-bottom: 25px;
    border: 2px solid;
    font-family: var(--font-code);
    font-size: 13px;
}

.alert strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.alert-success {
    background: rgba(0, 255, 0, 0.1);
    border-color: var(--term-green);
    color: var(--term-green);
}

.alert-success::before {
    content: '[OK] ';
    color: var(--term-green-bright);
    font-weight: bold;
}

.alert-error {
    background: rgba(255, 0, 0, 0.1);
    border-color: var(--hack-red);
    color: var(--hack-red);
}

.alert-error::before {
    content: '[ERROR] ';
    color: var(--hack-red);
    font-weight: bold;
}

/* Section */
.section {
    padding: 50px 0;
    width: 100%;
    overflow: visible;
    position: relative;
    z-index: 1;
    background: var(--bg-black);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    font-family: var(--font-code);
    color: var(--term-green);
    text-shadow: 0 0 15px var(--term-green);
    text-transform: uppercase;
    letter-spacing: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    padding: 0 15px;
    hyphens: auto;
}

.section-title::before {
    content: '====[ ';
    color: var(--term-green-dim);
}

.section-title::after {
    content: ' ]====';
    color: var(--term-green-dim);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-family: var(--font-code);
    font-size: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    padding: 0 15px;
}

.section-subtitle::before {
    content: '// ';
    color: var(--text-muted);
}

.section-subtitle::after {
    content: ' //';
    color: var(--text-muted);
}

/* Footer - Terminal Style */
.footer {
    background: var(--bg-black);
    border-top: 2px solid var(--term-green);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--term-green);
    font-family: var(--font-code);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-title::before {
    content: '[ ';
    color: var(--term-green-dim);
}

.footer-title::after {
    content: ' ]';
    color: var(--term-green-dim);
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 13px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 13px;
}

.footer-links a::before {
    content: '> ';
    color: var(--term-green-dim);
}

.footer-links a:hover {
    color: var(--term-green);
    text-shadow: 0 0 5px var(--term-green);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 13px;
}

.footer-contact i {
    color: var(--term-green);
    margin-top: 3px;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-contact a:hover {
    color: var(--term-green);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--term-green);
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--term-green-dim);
}

.social-link:hover {
    background: var(--term-green);
    color: var(--bg-black);
    border-color: var(--term-green);
    box-shadow: 0 0 10px var(--term-green);
}

.footer-bottom {
    border-top: 1px solid var(--term-green-dim);
    padding-top: 30px;
    text-align: center;
}

.educational-notice {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid var(--hack-red);
    padding: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.educational-notice h4 {
    color: var(--hack-red);
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.copyright {
    color: var(--text-muted);
    font-size: 11px;
    font-family: var(--font-code);
}

.copyright::before {
    content: '// ';
}

.copyright::after {
    content: ' //';
}

/* Glitch Effect */
@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.service-card:hover h3,
.hero-content h1 {
    animation: glitch 0.3s infinite;
}

/* Responsive Design */
/* Tablet: 2-column mega menu */
@media (max-width: 1024px) and (min-width: 769px) {
    .dropdown-menu {
        width: 650px !important;
        max-width: none !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
        max-width: 100%;
    }

    /* Hide desktop navigation - show only hamburger */
    .nav-menu:not(.active) {
        display: none !important;
    }

    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        background: transparent;
        border: 1px solid var(--term-green);
        padding: 5px;
        cursor: pointer;
        position: relative;
        z-index: 10001;
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
        border-radius: 3px;
    }

    .nav-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--term-green);
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.8);
        transition: all 0.3s ease;
    }

    .nav-toggle.active {
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    }

    /* Mobile Menu - Completely Redesigned */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 20, 0, 0.98) 100%);
        border-left: 2px solid var(--term-green);
        flex-direction: column;
        padding: 0;
        gap: 0;
        opacity: 0;
        pointer-events: none;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 255, 0, 0.3);
        z-index: 10000;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-menu.active {
        right: 0;
        opacity: 1;
        pointer-events: all;
    }

    /* Menu Header */
    .nav-menu::before {
        content: 'NAVIGATION';
        display: block;
        padding: 20px;
        background: rgba(0, 255, 0, 0.1);
        border-bottom: 2px solid var(--term-green);
        color: var(--term-green);
        font-size: 11px;
        letter-spacing: 3px;
        text-align: center;
        font-weight: bold;
        text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
    }

    /* Menu Items */
    .nav-menu > li {
        border-right: none;
        border-bottom: 1px solid rgba(0, 255, 0, 0.2);
        width: 100%;
        margin: 0;
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    /* Menu Links */
    .nav-menu > li > a {
        padding: 18px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        letter-spacing: 1.5px;
        color: var(--term-green);
        text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
        transition: all 0.3s ease;
        background: transparent;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        background: rgba(0, 255, 0, 0.15);
        padding-left: 30px;
        color: #fff;
    }

    /* Dropdown Arrow */
    .nav-menu .dropdown-arrow {
        font-size: 10px;
        transition: transform 0.3s ease;
        color: var(--term-green);
    }

    .nav-menu .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Services Submenu */
    .nav-menu .dropdown-menu {
        position: static;
        display: none;
        flex-direction: column;
        border: none;
        border-top: 1px solid rgba(0, 255, 0, 0.3);
        background: rgba(0, 0, 0, 0.6);
        box-shadow: inset 0 3px 10px rgba(0, 255, 0, 0.1);
        width: 100%;
        padding: 10px 0;
        margin: 0;
        transform: none;
        left: auto;
        gap: 0;
        max-height: 400px;
        overflow-y: auto;
        opacity: 1 !important;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        display: flex !important;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 400px;
        }
    }

    /* Submenu Items */
    .nav-menu .dropdown-menu li {
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 255, 0, 0.1);
        border: none !important;
        animation: none !important;
        animation-delay: 0s !important;
        display: block;
        opacity: 1 !important;
        transform: none !important;
        background: transparent;
        margin: 0;
    }

    .nav-menu .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu .dropdown-menu li:hover {
        transform: none !important;
        background: rgba(0, 255, 0, 0.08);
    }

    /* Submenu Links */
    .nav-menu .dropdown-menu a {
        padding: 14px 20px 14px 30px;
        font-size: 11px;
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        line-height: 1.5;
        word-wrap: break-word;
        white-space: normal;
        transition: all 0.3s ease;
        color: rgba(0, 255, 0, 0.9);
        text-shadow: 0 0 6px rgba(0, 255, 0, 0.3);
        letter-spacing: 0.5px;
        border-left: 3px solid transparent;
    }

    .nav-menu .dropdown-menu a:hover {
        background: rgba(0, 255, 0, 0.12);
        border-left-color: var(--term-green);
        padding-left: 35px;
        color: #fff;
    }

    /* Service Icons */
    .nav-menu .dropdown-menu a span {
        font-size: 18px;
        flex-shrink: 0;
        filter: drop-shadow(0 0 4px rgba(0, 255, 0, 0.6));
        display: inline-block;
        min-width: 20px;
        text-align: center;
    }

    /* Scrollbar Styling */
    .nav-menu::-webkit-scrollbar,
    .nav-menu .dropdown-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-track,
    .nav-menu .dropdown-menu::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.5);
    }

    .nav-menu::-webkit-scrollbar-thumb,
    .nav-menu .dropdown-menu::-webkit-scrollbar-thumb {
        background: var(--term-green);
        border-radius: 3px;
    }

    .nav-menu::-webkit-scrollbar-thumb:hover,
    .nav-menu .dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: #00ff00;
    }

    /* Close overlay when menu is open */
    .nav-menu.active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 280px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Service Card Layouts */
    .service-card-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-card-row .service-card-header {
        flex-direction: row;
        width: 100%;
        border-right: none;
        border-bottom: 3px solid var(--term-green);
        gap: 15px;
        padding: 15px;
    }

    .service-card-row .service-card-header .service-icon {
        font-size: 40px;
    }

    .service-card-row .service-card-header h3 {
        font-size: 18px;
    }

    .service-card-row .service-card-body {
        padding: 15px;
    }

    .services-staggered .service-card-link {
        grid-column: span 12 !important;
    }

    .category-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .hero {
        padding: 30px 0 0 0;
        min-height: 50vh;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    /* Hero Images - Mobile */
    .hero img,
    .hero-content img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 1.5rem auto 0 auto;
        border-radius: 6px;
        border: 1px solid rgba(0, 255, 0, 0.3);
        box-shadow: 0 3px 15px rgba(0, 255, 0, 0.2);
    }

    .hero-content h1 {
        font-size: 24px;
        letter-spacing: 0.5px;
        padding: 0 12px;
        margin-bottom: 10px;
        word-break: break-word;
        hyphens: auto;
    }

    .hero-content h1::before {
        margin-right: 4px;
    }

    .hero-content .tagline {
        font-size: 13px;
        padding: 0 12px;
        margin-bottom: 10px;
        word-break: break-word;
        letter-spacing: 0;
    }

    .hero-content .tagline::before {
        margin-right: 4px;
    }

    .hero-content p {
        font-size: 13px;
        padding: 0 12px;
        word-break: break-word;
        hyphens: auto;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 20px 12px;
    }

    .service-card {
        background: var(--bg-card);
        border: 2px solid var(--term-green-dim);
        padding: 18px 12px;
        margin-bottom: 15px;
        position: relative;
        box-shadow: inset 0 0 10px rgba(0, 255, 0, 0.05);
        display: flex;
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--term-green);
    }

    .service-card::after {
        content: '//----[ END ]----//';
        position: absolute;
        bottom: 10px;
        right: 15px;
        color: var(--text-muted);
        font-size: 10px;
    }

    .service-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .section {
        padding: 35px 0;
    }

    .section-title {
        font-size: 20px;
        letter-spacing: 0.5px;
        padding: 0 12px;
        margin-bottom: 8px;
        word-break: break-word;
        hyphens: auto;
    }

    .section-title::before,
    .section-title::after {
        font-size: 16px;
    }

    .section-subtitle {
        font-size: 13px;
        padding: 0 12px;
        margin-bottom: 15px;
        word-break: break-word;
        letter-spacing: 0;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        font-size: 12px;
    }

    .btn {
        display: inline-block;
        width: 100%;
        padding: 12px 15px;
        font-size: 12px;
        box-sizing: border-box;
        letter-spacing: 1px;
        text-decoration: none;
        border: 2px solid var(--term-green);
        background: var(--bg-black);
        color: var(--term-green);
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
        text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
        text-align: center;
        font-weight: bold;
        text-transform: uppercase;
        cursor: pointer;
    }

    .btn-primary {
        background: var(--bg-black);
        color: var(--term-green);
        border-color: var(--term-green);
    }

    .btn-outline {
        background: transparent;
        color: var(--hack-red);
        border-color: var(--hack-red);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
        text-shadow: 0 0 5px rgba(255, 0, 0, 0.4);
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 12px;
        width: 100%;
        box-sizing: border-box;
        margin-top: 15px;
    }

    .contact-form {
        padding: 40px 0;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        box-sizing: border-box;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
    }

    .nav-brand {
        font-size: 12px;
    }

    .nav-brand::before {
        content: 'root@hack:~# ';
    }

    .logo-text {
        font-size: 12px;
    }

    /* Service Cards - Extra Small Screens */
    .services-row-layout {
        gap: 15px;
    }

    .service-card-row .service-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-card-row .service-card-header .service-icon {
        font-size: 50px;
    }

    .service-card-row .service-card-header h3 {
        font-size: 16px;
    }

    .category-title {
        font-size: 16px;
    }

    .hero {
        padding: 20px 0 0 0;
        min-height: 45vh;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    /* Hero Images - Small Mobile */
    .hero img,
    .hero-content img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 1rem auto 0 auto;
        border-radius: 4px;
        border: 1px solid rgba(0, 255, 0, 0.25);
        box-shadow: 0 2px 10px rgba(0, 255, 0, 0.15);
    }

    .hero-content h1 {
        font-size: 18px;
        letter-spacing: 0;
        padding: 0 10px;
        margin-bottom: 8px;
        word-break: break-word;
        hyphens: auto;
    }

    .hero-content h1::before {
        margin-right: 3px;
    }

    .hero-content .tagline {
        font-size: 11px;
        margin-bottom: 8px;
        word-break: break-word;
        letter-spacing: 0;
    }

    .hero-content .tagline::before {
        margin-right: 3px;
    }

    .section-title::before,
    .section-title::after {
        font-size: 12px;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        font-size: 10px;
    }

    .hero-content p {
        font-size: 12px;
        padding: 0 10px;
        word-break: break-word;
        hyphens: auto;
    }

    .section {
        padding: 25px 0;
    }

    .section-title {
        font-size: 17px;
        letter-spacing: 0;
        padding: 0 10px;
        margin-bottom: 6px;
        word-break: break-word;
        hyphens: auto;
    }

    .section-subtitle {
        font-size: 12px;
        padding: 0 10px;
        margin-bottom: 12px;
        word-break: break-word;
        letter-spacing: 0;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
        padding: 15px 10px;
    }

    .service-card {
        background: var(--bg-card);
        border: 2px solid var(--term-green-dim);
        padding: 12px 10px;
        margin-bottom: 12px;
        position: relative;
        box-shadow: inset 0 0 10px rgba(0, 255, 0, 0.05);
        display: flex;
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--term-green);
    }

    .service-card::after {
        content: '//----[ END ]----//';
        position: absolute;
        bottom: 8px;
        right: 10px;
        color: var(--text-muted);
        font-size: 9px;
    }

    .service-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .service-card h3 {
        font-size: 14px;
        letter-spacing: 0.5px;
        word-break: break-word;
    }

    .service-card h3::before {
        font-size: 11px;
    }

    .service-card p,
    .service-features li {
        font-size: 12px;
        word-break: break-word;
    }

    .btn {
        display: inline-block;
        width: 100%;
        padding: 10px 12px;
        font-size: 11px;
        letter-spacing: 0.5px;
        text-decoration: none;
        border: 2px solid var(--term-green);
        background: var(--bg-black);
        color: var(--term-green);
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
        text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
        text-align: center;
        font-weight: bold;
        text-transform: uppercase;
        box-sizing: border-box;
        cursor: pointer;
    }

    .cta-buttons {
        padding: 0 10px;
        margin-top: 12px;
        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-desc,
    .footer-links,
    .footer-contact {
        font-size: 12px;
    }

    .educational-notice {
        padding: 15px;
        font-size: 11px;
    }

    .copyright {
        font-size: 10px;
    }

    /* Ensure visual effects are visible on mobile */
    #matrix-rain {
        opacity: 0.1 !important;
        z-index: -1 !important;
    }

    .lightning-flash,
    .lightning-bolt-container {
        display: block !important;
        z-index: 10000 !important;
    }

    body::before {
        z-index: 9999 !important;
    }

    body::after {
        z-index: 9998 !important;
    }
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                0 0 20px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6),
                0 0 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2DE371 0%, #14A88E 100%);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Pulse animation */
@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                    0 0 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6),
                    0 0 30px rgba(37, 211, 102, 0.5),
                    0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Ensure button stays above other elements */
.whatsapp-float {
    z-index: 999999 !important;
}

/* ==========================================
   Reviews Section Styles
   ========================================== */

.reviews-section {
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 2px solid rgba(0, 255, 0, 0.2);
    border-bottom: 2px solid rgba(0, 255, 0, 0.2);
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-title {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.aggregate-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    font-size: 2rem;
}

.star {
    color: #333;
    transition: color 0.3s ease;
}

.star.filled {
    color: var(--hack-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.star.half-filled {
    background: linear-gradient(90deg, var(--hack-yellow) 50%, #333 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.rating-text strong {
    color: var(--neon-green);
    font-size: 1.3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: rgba(0, 20, 0, 0.6);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--neon-cyan),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2),
                0 0 30px rgba(0, 255, 0, 0.1);
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon-cyan);
}

.reviewer-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.review-stars {
    display: flex;
    gap: 0.15rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-text::before {
    content: '"';
    color: var(--neon-green);
    font-size: 1.5rem;
    margin-right: 0.25rem;
}

.review-text::after {
    content: '"';
    color: var(--neon-green);
    font-size: 1.5rem;
    margin-left: 0.25rem;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    text-align: right;
}

/* Responsive Reviews */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-section {
        margin-top: 3rem;
        padding: 2rem 0;
    }

    .reviews-title {
        font-size: 1.5rem;
    }

    .rating-stars {
        font-size: 1.5rem;
    }

    .rating-text {
        font-size: 1rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .reviews-title {
        font-size: 1.3rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-stars {
        align-self: flex-end;
    }
}

/* High contrast for better terminal feel */
@media (prefers-contrast: high) {
    :root {
        --term-green: #00ff00;
        --term-green-dim: #00dd00;
        --bg-black: #000000;
    }
}

/* Print styles - Terminal printout */
@media print {
    body {
        background: white;
        color: black;
    }

    body::before,
    body::after,
    #matrix-rain {
        display: none;
    }

    .navbar,
    .footer {
        border-color: black;
    }

    * {
        color: black !important;
        background: white !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
}
