/*
Theme Name: Mamero Digital
Theme URI: https://mamero.co.za
Author: Hassan Mwasisebe
Description: A high-converting, retro-tech custom WordPress theme.
Version: 1.0.29
Text Domain: mamero
*/

/* =========================================================
   RESET & VARIABLES
========================================================= */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family:'Space Mono', monospace;
    background:#010101;
    color:#fff;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    position:relative;
}

:root {
    --bg-base:#010101;
    --bg-surface:#101010;
    --text-main:#ffffff;
    --text-terminal:#00ffcc;
    --text-muted:#808080;
    --accent:#ff9900;
    --accent-light:#ffb366;
    --glass-bg:rgba(255,255,255,0.02);
    --glass-border:rgba(255,255,255,0.08);
    --gradient-primary: linear-gradient(135deg, #ff9900 0%, #ffb366 100%);
    --pixel-font: 'Silkscreen', cursive;
}

/* =========================================================
   LOGO STYLES (HANDLES BOTH IMAGE AND TEXT)
========================================================= */
.logo { 
    display: flex;
    align-items: center;
    text-decoration: none; 
    color: var(--text-terminal); 
    font-size: 1.1rem; 
    font-weight: 800; 
    font-family: var(--pixel-font); 
}

.logo img {
    max-height: 35px; /* Keeps the uploaded logo from breaking the header */
    width: auto;
    display: block;
    filter: drop-shadow(0 0 5px rgba(0, 255, 204, 0.4)); /* Retro glow */
    transition: filter 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.8));
}

/* =========================================================
   DYNAMIC BACKGROUND ELEMENTS
========================================================= */
.scanlines { position: fixed; inset: 0; width: 100%; height: 100%; background: linear-gradient(transparent, transparent 50%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.04)); background-size: 100% 4px; z-index: 9997; pointer-events: none; mask-image: radial-gradient(circle at center, black 10%, transparent 90%); }
.noise-overlay { position: fixed; inset: 0; background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E'); opacity: 0.05; pointer-events: none; z-index: 9998; mix-blend-mode: color-burn; }
.cursor-glow { position: fixed; top: 0; left: 0; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,255,204,0.08) 0%, transparent 60%); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: -1; transition: transform 0.05s ease; }
body::before { content:''; position:fixed; inset:0; background-image: linear-gradient(rgba(0,255,204,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,255,204,0.03) 1px, transparent 1px); background-size:80px 80px; mask-image:radial-gradient(circle at center, black 20%, transparent 80%); -webkit-mask-image:radial-gradient(circle at center, black 20%, transparent 80%); pointer-events:none; z-index:-2; animation: panGrid 20s linear infinite; }
@keyframes panGrid { 0% { background-position: 0 0; } 100% { background-position: 0 80px; } }
.bg-blobs { position: fixed; inset: 0; pointer-events: none; z-index: -3; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.6; }
.blob-1 { width: 600px; height: 600px; background: rgba(0,255,204,0.1); top: -10%; left: -10%; animation: float 20s infinite alternate ease-in-out; }
.blob-2 { width: 700px; height: 700px; background: rgba(147, 51, 234, 0.08); bottom: -20%; right: -10%; animation: float 25s infinite alternate-reverse ease-in-out; }
.blob-3 { width: 500px; height: 500px; background: rgba(236, 72, 153, 0.06); top: 40%; left: 30%; animation: float 22s infinite alternate ease-in-out; }
@keyframes float { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(50px, 80px) scale(1.1); } 100% { transform: translate(-30px, -50px) scale(0.9); } }

/* =========================================================
   LENIS SMOOTH SCROLLING
========================================================= */
html.lenis{ height:auto; }
.lenis.lenis-smooth{ scroll-behavior:auto !important; }
.lenis.lenis-smooth [data-lenis-prevent]{ overscroll-behavior:contain; }
.lenis.lenis-stopped{ overflow:hidden; }

/* =========================================================
   UTILITIES
========================================================= */
.container{ width:100%; max-width:1200px; margin:auto; padding:0 20px; }
.section-title{ font-size:clamp(2rem,4vw,3rem); font-weight:700; text-align:center; margin-bottom:15px; color: var(--text-terminal); font-family:var(--pixel-font); }
.section-subtitle{ color:var(--text-muted); text-align:center; max-width:700px; margin:auto; line-height:1.7; margin-bottom:70px; }
.badge{ display:inline-flex; align-items:center; justify-content:center; padding:8px 18px; border-radius:0px; background:rgba(0,255,204,0.08); border:1px solid rgba(0,255,204,0.25); color:var(--text-terminal); font-size:0.8rem; font-family:var(--pixel-font); margin-bottom:25px; text-transform: uppercase; }
.gradient-text{ background:linear-gradient(135deg, #ffff00, #33ff33); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.glass-card{ background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.3)); border:1px solid rgba(255,255,255,0.08); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); border-radius:0px; transition: transform .4s ease, border .4s ease; }
.glass-card:hover{ transform:translateY(0px); border-color:rgba(254,167,0,0.5); animation: glitchCard 0.2s linear 2; }
@keyframes glitchCard { 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); } }

/* =========================================================
   BUTTONS
========================================================= */
.btn{ display:inline-flex; align-items:center; justify-content:center; padding:14px 30px; border-radius:0px; text-decoration:none; transition:.2s ease; font-weight:700; cursor:pointer; font-family: var(--pixel-font); font-size:0.9rem; text-transform:uppercase; }
.btn-primary{ position:relative; overflow:hidden; background:var(--accent) !important; color:#000 !important; box-shadow: 0 4px 0px rgba(0,0,0,0.3); }
.btn-primary::before{ content:''; position:absolute; top:0; left:-120%; width:100%; height:100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition:.8s; }
.btn-primary:hover::before{ left:120%; }
.btn-primary:hover{ transform:translateY(-2px); box-shadow: 0 6px 0px rgba(0,0,0,0.3), 0 0 10px rgba(254,167,0,0.3); }
.btn-secondary{ background:transparent; color:var(--text-terminal); border:2px solid rgba(0,255,204,0.3); }
.btn-secondary:hover{ background:rgba(0,255,204,0.05); border-color:var(--text-terminal); }

/* =========================================================
   HEADER & DROPDOWN MENU
========================================================= */

header{
    position:fixed; top:20px; left:50%; transform:translateX(-50%);
    width:92%; max-width:1100px; z-index:999; display:flex; align-items:center;
    justify-content:space-between; padding:12px 26px; border-radius:0px;
    background:rgba(5,5,5,0.7); backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.08); box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.logo{ text-decoration:none; color:var(--text-terminal); font-size:1.1rem; font-weight:800; font-family: var(--pixel-font); }

.nav-links{ display:flex; gap:35px; align-items: center; }

/* Wrapper for items that have a dropdown */
.nav-item { position: relative; display: flex; align-items: center; height: 100%; padding: 10px 0; }

.nav-links a { 
    color:var(--text-muted); 
    text-decoration:none; 
    transition:.3s; 
    font-size:0.95rem; 
    font-weight:700; 
    display: flex; 
    align-items: center; 
    gap: 8px; /* Space for the dropdown arrow */
}

.nav-links a:hover { color:var(--text-terminal); text-shadow: 0 0 5px var(--text-terminal); }

/* The Dropdown Container */
.dropdown {
    position: absolute;
    top: 100%; /* Positions it directly below the parent link */
    left: 0;
    margin-top: 10px; /* Spacing below the header */
    background: rgba(5,5,5,0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0,255,204,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    min-width: 220px;
    
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.2s ease;
    
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    z-index: 1000;
}

/* Invisible bridge so the hover state doesn't break when moving the mouse down */
.dropdown::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Link Styles (Terminal Prompt style) */
.dropdown a {
    padding: 12px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-left: 4px solid transparent; /* Prepare for hover effect */
}

.dropdown a:hover {
    background: rgba(0,255,204,0.05);
    color: var(--text-terminal);
    border-left-color: var(--text-terminal); /* Terminal cursor effect */
    text-shadow: none; /* Keep it clean inside the menu */
}

/* =========================================================
   MOBILE NAVIGATION ARCHITECTURE
========================================================= */

/* Hide toggle on desktop */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.mobile-toggle .bar {
    height: 2px;
    width: 100%;
    background-color: var(--text-terminal); /* Inherits your cyan accent */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Mobile Media Query Breakpoint */
@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    /* Hide the desktop call button on mobile to save space */
    .desktop-btn {
        display: none !important;
    }

    /* Turn nav into an off-canvas glass panel */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(15px);
        border-left: 1px solid rgba(0, 255, 204, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        margin: 0;
        padding: 40px;
    }

    .nav-links.active .nav-item {
        height: auto;
        width: 100%;
    }

    /* Active state when menu is open */
    .nav-links.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }

    /* Stack links vertically */
    .nav-links > li,
    .nav-links > a {
        margin: 15px 0;
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
    }

    /* Hamburger to 'X' Animation */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

/* =========================================================
   HERO
========================================================= */
.hero{ position:relative; min-height:100vh; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; padding:180px 20px 100px; }
.hero-content{ position:relative; z-index:5; }
.hero h1{ font-size:clamp(2.5rem,7vw,5.5rem); line-height:1.05; max-width:1100px; margin:auto auto 30px; font-weight:700; font-family: 'Space Mono', monospace; color: var(--text-terminal); }
.hero p{ max-width:700px; margin:0 auto 40px; color:var(--text-muted); font-size:1.1rem; line-height:1.8; }
.hero-btns{ display:flex; justify-content:center; gap:20px; flex-wrap:wrap; }
.hero-rotating-bg{ position:absolute; width:1300px; height:1300px; border-radius:50%; background: conic-gradient(from 0deg, transparent, rgba(0,255,204,0.1), transparent, rgba(255,255,255,0.03), transparent); filter:blur(60px); animation:rotateBanner 22s linear infinite; z-index:1; }
@keyframes rotateBanner{ from{ transform:rotate(0deg) scale(1); } to{ transform:rotate(360deg) scale(1.1); } }
.rotating-text{ position:absolute; bottom:35px; white-space:nowrap; color:rgba(0,255,204,0.1); letter-spacing:5px; font-size:0.9rem; font-weight:700; animation:marquee 20s linear infinite; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* =========================================================
   TECH STACK & ADVANTAGES
========================================================= */
.tech-stack{ padding:90px 0; }
.tech-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:20px; }
.tech-item{ padding:14px 28px; border-radius:0px; border:2px solid rgba(0,255,204,0.2); background:rgba(255,255,255,0.02); color:var(--text-muted); font-weight:700; font-size:0.9rem; text-transform: uppercase; }
.tech-item:hover{ border-color: var(--text-terminal); color: var(--text-terminal); }
.advantages{ padding:120px 0; text-align: center; }
.adv-grid{ display:grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap:30px; }
.adv-card{ padding:40px; text-align:left; }
.adv-icon{ width:70px; height:70px; margin-bottom:25px; border-radius:0px; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, rgba(0,255,204,0.1), rgba(0,255,204,0.03)); border:2px solid rgba(0,255,204,0.2); font-size:1.8rem; color: var(--text-terminal); }
.adv-card h3{ margin-bottom:15px; color: var(--text-terminal); }
.adv-card p{ color:var(--text-muted); line-height:1.7; }

/* =========================================================
   SERVICES (GSAP HORIZONTAL SCROLL)
========================================================= */
#services { padding: 120px 0; overflow: hidden; }
.service-wrapper { width: 100%; overflow: hidden; }
.service-grid { display: flex; gap: 30px; width: max-content; padding: 0 5vw; }
.svc-card { padding: 40px; display: flex; flex-direction: column; text-align: left; width: 450px; max-width: 85vw; }
.svc-card h3 { font-size:1.4rem; margin-bottom:25px; color: var(--text-terminal); }
.svc-list { list-style:none; margin-bottom:35px; flex-grow:1; }
.svc-list li { margin-bottom:16px; color:var(--text-muted); display:flex; align-items:center; }
.svc-list li::before { content:'> '; color:var(--accent); margin-right:12px; font-weight: 700;}

/* =========================================================
   SINGLE SERVICE PAGE
========================================================= */
.service-header { padding-top: 180px; padding-bottom: 60px; text-align: left; }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); font-family: var(--pixel-font); margin-bottom: 30px; text-transform: uppercase; }
.breadcrumb a { color: var(--text-terminal); text-decoration: none; transition: 0.3s; }
.breadcrumb a:hover { text-shadow: 0 0 5px var(--text-terminal); }
.breadcrumb span { color: var(--text-muted); }
.service-title { font-size: clamp(3rem, 6vw, 5rem); line-height: 1.1; margin-bottom: 30px; color: var(--text-terminal); font-family: 'Space Mono', monospace; font-weight: 700; }
.service-intro { font-size: 1.2rem; color: var(--text-muted); max-width: 800px; line-height: 1.8; }

.detail-layout { display: grid; grid-template-columns: 300px 1fr; gap: 60px; padding-bottom: 120px; align-items: start; }
.detail-sidebar { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 35px; position: sticky; top: 120px; }
.sidebar-title { color: var(--text-terminal); font-family: var(--pixel-font); text-transform: uppercase; margin-bottom: 25px; font-size: 0.95rem; }

.tech-list { list-style: none; }
.tech-list li { color: var(--text-muted); margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; }
.tech-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.tech-list li::before { content: '>'; color: var(--accent); font-weight: bold; margin-right: 12px; font-family: var(--pixel-font); }

.detail-content { display: flex; flex-direction: column; gap: 40px; }
.feature-block { background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); border-left: 2px solid var(--text-terminal); padding: 40px; transition: 0.3s; }
.feature-block:hover { background: rgba(0,255,204,0.02); box-shadow: 10px 0 30px rgba(0,255,204,0.05) inset; border-left-color: var(--accent); }
.feature-block h3 { color: var(--text-main); margin-bottom: 20px; font-size: 1.4rem; }
.feature-block p { color: var(--text-muted); line-height: 1.8; }

@media(max-width: 900px) {
    .detail-layout { grid-template-columns: 1fr; }
    .detail-sidebar { position: relative; top: 0; }
}

/* =========================================================
   SERVICES ARCHIVE GRID
========================================================= */
.archive-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

@media(max-width: 768px) {
    .archive-service-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SERVICES LANDING PAGE GRID
========================================================= */
.services-landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-grid-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 40px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.1);
    border-color: var(--text-terminal);
}

.service-grid-card h3 {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: var(--pixel-font);
}

.service-grid-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-grid-link {
    color: var(--text-terminal);
    font-family: var(--pixel-font);
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: gap 0.3s ease;
    gap: 0px;
}

.service-grid-card:hover .service-grid-link {
    gap: 10px;
}

/* =========================================================
   TERMINAL CALL TO ACTION
========================================================= */
.cta-terminal {
    padding: 0;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 10px 40px rgba(0, 255, 204, 0.05);
}

.cta-terminal-header {
    background: rgba(0, 0, 0, 0.8);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-terminal-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-title {
    margin-left: auto;
    margin-right: auto;
    font-family: var(--pixel-font);
    color: var(--text-muted);
    font-size: 0.85rem;
    transform: translateX(-24px); /* Offsets the dots to keep text centered */
}

.cta-terminal-body {
    padding: 80px 40px;
    background: linear-gradient(180deg, rgba(10,10,15,0.4), rgba(0,255,204,0.02));
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media(max-width: 768px) {
    .cta-terminal-body { padding: 50px 20px; }
    .cta-actions { flex-direction: column; gap: 15px; }
    .cta-actions .btn { width: 100%; text-align: center; justify-content: center; }
    .terminal-title { display: none; } /* Hides command line text on tiny screens */
}

/* =========================================================
   PROJECTS (GSAP HORIZONTAL SCROLL)
========================================================= */
#projects { padding: 120px 0; overflow: hidden;}
.proj-wrapper { width: 100%; overflow: hidden; }
.proj-grid { display: flex; gap: 30px; width: max-content; padding: 0 5vw; }
.proj-card { overflow:hidden; position:relative; text-align: left; width: 500px; max-width: 85vw; }
.proj-card::before{ content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent, rgba(254,167,0,0.1)); opacity:0; transition:.4s; z-index:1; }
.proj-card:hover::before{ opacity:1; }
.proj-img{ height:280px; background-size:cover !important; background-position:center !important; transition: filter 0.4s ease;}
.proj-card:hover .proj-img{ filter: blur(10px) contrast(200%); mask-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 2 2" xmlns="http://www.w3.org/2000/svg"%3E%3Crect width="1" height="1"/%3E%3Crect x="1" y="1" width="1" height="1"/%3E%3C/svg%3E'); mask-size: 8px 8px;}
.proj-info{ padding:25px; }
.proj-info span{ color:var(--accent); font-size:0.8rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; font-family: var(--pixel-font); }
.proj-info h4{ margin-top:10px; margin-bottom:10px; font-size:1.2rem; color: var(--text-terminal); }
.proj-info p{ color:var(--text-muted); }

/* =========================================================
   PROJECTS ARCHIVE GRID
========================================================= */
.archive-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

@media(max-width: 768px) {
    .archive-project-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PROJECTS LANDING PAGE GRID
========================================================= */
.project-landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-grid-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.project-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.1);
    border-color: rgba(0, 255, 204, 0.4);
}

.project-grid-img-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.project-grid-img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(80%) contrast(1.1);
}

.project-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(3px);
}

.project-grid-card:hover .project-grid-img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1);
}

.project-grid-card:hover .project-grid-overlay {
    opacity: 1;
}

.project-grid-overlay .view-btn {
    color: var(--text-terminal);
    font-family: var(--pixel-font);
    border: 1px solid var(--text-terminal);
    padding: 10px 20px;
    background: rgba(0, 255, 204, 0.1);
    text-transform: uppercase;
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-grid-card:hover .project-grid-overlay .view-btn {
    transform: translateY(0);
}

.project-grid-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-grid-info h3 {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: var(--pixel-font);
}

.project-grid-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* =========================================================
   CONTACT & FOOTER
========================================================= */
.contact{ padding:30px 0; }
.contact form{ max-width:700px; margin:auto; display:grid; gap:20px; text-align: left;}
.contact-row{ display:flex; gap:20px; }
.contact input, .contact textarea{ width:100%; padding:18px; border-radius:0px; border:2px solid rgba(0,255,204,0.2); background:rgba(0,0,0,0.3); color:#fff; font-size:1rem; font-family: 'Space Mono', monospace; transition: 0.2s;}
.contact input:focus, .contact textarea:focus{ outline:none; border-color:rgba(0,255,204,0.5); box-shadow: 0 0 10px rgba(0,255,204,0.2); border-left-width: 8px; border-left-color: var(--text-terminal);}
.contact textarea{ height:160px; resize:none; }
footer{ padding:70px 20px; border-top:2px solid rgba(0,255,204,0.2); text-align: left; }
.footer-content{ max-width:1200px; margin:auto; display:flex; justify-content:space-between; flex-wrap:wrap; gap:40px; }
.footer-col h4{ margin-bottom:20px; color: var(--text-terminal); font-family: var(--pixel-font); text-transform: uppercase; }
.footer-col a{ display:block; margin-bottom:12px; text-decoration:none; color:var(--text-muted); transition:.3s; font-weight: 700;}
.footer-col a:hover{ color:var(--text-terminal); text-shadow: 0 0 5px var(--text-terminal); }

/* =========================================================
   RESPONSIVE
========================================================= */
/*@media(max-width:768px){
    header{ display:none; }
    .contact-row{ flex-direction:column; }
    .hero h1{ font-size:2.8rem; }
    .hero{ padding-top:140px; }
}*/

/* =========================================================
    content:'';

    position:fixed;
    inset:-200px;

    background:
        radial-gradient(circle, rgba(254,167,0,0.15), transparent 40%),
        radial-gradient(circle, rgba(255,255,255,0.05), transparent 40%);

    filter:blur(120px);

    animation:bgMove 20s linear infinite alternate;

    z-index:-3;
}

@keyframes bgMove{

    0%{
        transform:translate(0,0) scale(1);
    }

    50%{
        transform:translate(100px,-50px) scale(1.2);
    }

    100%{
        transform:translate(-100px,50px) scale(1);
    }

}

/* Floating particles */

.particles{
    position:fixed;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:-1;
}

.particle{
    position:absolute;
    width: 30px;
    height: 30px;
    border-radius:0%;
    background:rgba(254,167,0,0.80);
    animation:particleFloat linear infinite;
}

@keyframes particleFloat{

    from{
        transform:translateY(100vh) scale(0);
        opacity:0;
    }

    10%{
        opacity:1;
    }

    to{
        transform:translateY(-100vh) scale(1);
        opacity:0;
    }

}

/* =========================================================
   INFINITE CLIENT CAROUSEL
========================================================= */
.client-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Fades out the left and right edges for a smooth entrance/exit */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.client-carousel-track {
    display: flex;
    width: max-content;
    gap: 40px;
    align-items: center;
    /* The animation duration (30s) controls the speed */
    animation: marqueeLogos 30s linear infinite;
}

/* Pause the stream when the user hovers over it */
.client-carousel-track:hover {
    animation-play-state: paused;
}

.client-logo-item {
    font-family: var(--pixel-font);
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 40px;
    border: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    transition: 0.3s ease;
    white-space: nowrap;
    cursor: default;
}

.client-logo-item:hover {
    color: var(--text-terminal);
    border-color: var(--text-terminal);
    box-shadow: 0 0 15px rgba(0,255,204,0.1) inset;
    transform: translateY(-2px);
}

.client-logo-item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.5);
    transition: 0.3s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes marqueeLogos {
    0% { transform: translateX(0); }
    /* Moves exactly half the width to seamlessly restart the duplicate loop */
    100% { transform: translateX(calc(-50% - 20px)); } 
}

/* =========================================================
   TECH STACK LOGO CAROUSEL
========================================================= */
.tech-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Fades the left and right edges for a smooth entrance/exit */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-carousel-track {
    display: flex;
    width: max-content;
    gap: 80px; /* Wider gap as per your screenshot */
    align-items: center;
    animation: marqueeTech 35s linear infinite;
}

.tech-carousel-track:hover {
    animation-play-state: paused;
}

.tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: default;
}

.tech-logo-item img {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.tech-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    transition: color 0.4s ease;
}

/* Hover Effects */
.tech-logo-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-3px);
}
.tech-logo-item:hover .tech-title {
    color: var(--text-terminal);
}

@keyframes marqueeTech {
    0% { transform: translateX(0); }
    /* Moves exactly half the track width plus half the gap to seamlessly loop */
    100% { transform: translateX(calc(-50% - 40px)); } 
}

@media(max-width: 768px) {
    .tech-carousel-track { gap: 50px; }
    @keyframes marqueeTech {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 25px)); } 
    }
}

/* =========================================================
   FLOATING ACTION BUTTONS (FAB)
========================================================= */
.mamero-fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.fab-btn svg {
    width: 26px;
    height: 26px;
    transition: transform 0.3s ease;
}

/* Phone Button: Cyan Border, Orange Icon */
.fab-phone {
    border: 1.5px solid var(--text-terminal); /* Cyan */
}

.fab-phone svg {
    color: var(--accent); /* Orange */
}

.fab-phone:hover {
    background: rgba(0, 255, 204, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
    border-color: var(--text-terminal);
    transform: translateY(-4px);
}

.fab-phone:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* WhatsApp Button: Green Border, Green Icon */
.fab-whatsapp {
    border: 1.5px solid #25D366; /* WhatsApp Green */
}

.fab-whatsapp svg {
    color: #25D366; 
}

.fab-whatsapp:hover {
    background: rgba(37, 211, 102, 0.08);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    border-color: #25D366;
    transform: translateY(-4px);
}

.fab-whatsapp:hover svg {
    transform: scale(1.1);
}

@media(max-width: 768px) {
    .mamero-fab-container {
        bottom: 20px;
        right: 20px;
        gap: 15px;
    }
    .fab-btn {
        width: 50px;
        height: 50px;
    }
    .fab-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* =========================================================
   PRICING TABLE ARCHITECTURE
========================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 12px; /* Slight rounding as per screenshot */
    background: linear-gradient(180deg, rgba(20,20,25,0.8), rgba(10,10,15,0.9));
}

.pricing-highlight {
    border: 1px solid rgba(0, 255, 204, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.05);
    transform: scale(1.02); /* Pops out slightly */
    z-index: 2;
}

.pricing-icon-wrap {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent); /* Yellow/Orange icons */
}

.pricing-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.pricing-highlight .pricing-icon-wrap {
    border-color: rgba(0, 255, 204, 0.3);
    color: var(--text-terminal); /* Cyan icon for middle tier */
}

.pricing-tier-name {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-family: var(--pixel-font);
}

.pricing-price-wrap {
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-terminal);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 70px; /* Keeps buttons aligned */
}

.pricing-features {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.pricing-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent); /* Orange checkmarks */
    margin-top: 1px;
}

@media(max-width: 900px) {
    .pricing-highlight { transform: scale(1); }
}

/* =========================================================
   PRICING PAGE: RETAINERS & FAQS
========================================================= */

/* Retainer Grid */
.retainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.retainer-card {
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.retainer-card .tech-list {
    list-style: none;
    padding: 0;
}

.retainer-card .tech-list li {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.retainer-card .tech-list li::before {
    content: "▹";
    color: var(--text-terminal);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* FAQ Terminal Accordion */
.faq-container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 0;
    font-size: 1.1rem;
    color: var(--text-main);
    font-family: var(--pixel-font);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--text-terminal);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--text-terminal);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    border-left: 2px solid rgba(0, 255, 204, 0.3);
    padding-left: 20px;
    margin-left: 5px;
}

/* =========================================================
   RETRO PORTFOLIO CAROUSEL
========================================================= */
.mamero-carousel-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.mamero-carousel {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.mamero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(120px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mamero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* LEFT SIDE: PREVIEW */
.mamero-preview {
    position: relative;
    overflow: hidden;
    padding: 0; /* Override default glass-card padding */
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: 1s ease;
    height: 450px;
    display: flex;
    align-items: center;
    border-radius: 12px;
}

.mamero-slide.active .mamero-preview {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.mamero-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Terminal Sweep Effect */
.mamero-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(0, 255, 204, 0.15) 45%, transparent 100%);
    transform: translateX(-100%);
    animation: sweep 4s infinite;
    pointer-events: none;
}
@keyframes sweep { 100% { transform: translateX(100%); } }

/* RIGHT SIDE: CONTENT */
.mamero-content {
    position: relative;
}

.mamero-tag {
    color: var(--text-terminal);
    font-family: var(--pixel-font);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease 0.2s;
}

.mamero-slide.active .mamero-tag {
    opacity: 1;
    transform: translateY(0);
}

.mamero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-main);
    font-family: var(--pixel-font);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease 0.3s;
}

.mamero-slide.active .mamero-title {
    opacity: 1;
    transform: translateY(0);
}

.mamero-description {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 620px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease 0.45s;
}

.mamero-slide.active .mamero-description {
    opacity: 1;
    transform: translateY(0);
}

.mamero-stack {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease 0.6s;
}

.mamero-slide.active .mamero-stack {
    opacity: 1;
    transform: translateY(0);
}

.mamero-stack span {
    border: 1px solid rgba(0, 255, 204, 0.2);
    padding: 8px 16px;
    color: var(--text-terminal);
    background: rgba(0, 255, 204, 0.05);
    font-size: 0.8rem;
    font-family: var(--pixel-font);
    text-transform: uppercase;
}

/* BUTTONS */
.mamero-buttons {
    position: absolute;
    bottom: 20px;
    right: 0;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.mamero-buttons button {
    width: 50px;
    height: 50px;
    border-radius: 0;
    border: 2px solid rgba(0, 255, 204, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-terminal);
    font-size: 1.2rem;
    font-family: var(--pixel-font);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mamero-buttons button:hover {
    background: rgba(0, 255, 204, 0.1);
    border-color: var(--text-terminal);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
    transform: translateY(-2px);
}

/* CRT FLICKER */
.flicker { animation: flicker 0.15s infinite alternate; }
@keyframes flicker {
    from { opacity: 0.97; }
    to { opacity: 1; }
}

@media(max-width: 1100px) {
    .mamero-slide { grid-template-columns: 1fr; gap: 40px; }
    .mamero-carousel { height: auto; min-height: 800px; }
    .mamero-preview { height: 300px; }
    .mamero-buttons { position: relative; bottom: 0; margin-top: 30px; justify-content: flex-start; }
}

/* =========================================================
   BLOG / TRANSMISSION LOGS ARCHITECTURE
========================================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.blog-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.1);
    border-color: rgba(0, 255, 204, 0.4);
}

.blog-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: block;
}

.blog-img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    filter: grayscale(80%);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.blog-overlay-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--text-terminal);
    color: var(--text-terminal);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-family: var(--pixel-font);
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.blog-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 0.85rem;
    font-family: var(--pixel-font);
    margin-bottom: 15px;
}

.blog-meta svg {
    width: 14px;
    height: 14px;
}

.blog-info h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    line-height: 1.3;
}

.blog-info h3 a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-info h3 a:hover {
    color: var(--text-terminal);
}

.blog-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-terminal);
    font-family: var(--pixel-font);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    gap: 15px;
}

/* Single Article Content Styling */
.blog-content h2, .blog-content h3, .blog-content h4 {
    color: var(--text-main);
    margin: 40px 0 20px;
    font-family: var(--pixel-font);
}

.blog-content p {
    margin-bottom: 25px;
}

.blog-content ul, .blog-content ol {
    margin: 0 0 25px 20px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 10px;
}

.blog-content blockquote {
    border-left: 4px solid var(--text-terminal);
    padding: 20px;
    background: rgba(0,255,204,0.05);
    margin: 30px 0;
    font-style: italic;
    color: #fff;
}

/* WP Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a, .pagination span {
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.5);
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--pixel-font);
    transition: 0.3s;
}

.pagination span.current, .pagination a:hover {
    border-color: var(--text-terminal);
    color: var(--text-terminal);
    background: rgba(0,255,204,0.05);
}

/* =========================================================
   404 ERROR GLITCH EFFECT
========================================================= */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before, 
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch-text::before {
    left: 3px;
    text-shadow: -2px 0 #ff5f56; /* Red channel offset */
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -3px;
    text-shadow: -2px 0 var(--text-terminal); /* Cyan channel offset */
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(15px, 9999px, 71px, 0); }
    20% { clip: rect(32px, 9999px, 12px, 0); }
    40% { clip: rect(98px, 9999px, 83px, 0); }
    60% { clip: rect(4px, 9999px, 51px, 0); }
    80% { clip: rect(64px, 9999px, 92px, 0); }
    100% { clip: rect(22px, 9999px, 11px, 0); }
}

/* =========================================================
   FOOTER SOCIAL MATRIX
========================================================= */
.footer-socials {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    border-color: var(--text-terminal);
    color: var(--text-terminal);
    background: rgba(0, 255, 204, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
    transform: translateY(-3px);
}

.social-link:hover svg {
    transform: scale(1.1);
}