﻿:root {
    --bg-dark: #0a0a0a;
    --text-light: #f4f4f4;
    --text-muted: #888;
    --neon-green: #00ff00;
    --gold: #d4af37;
    --accent-red: #ff3333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor */
}

/* Restore normal cursor on touch/mobile */
@media (max-width: 768px),
(pointer: coarse) {
    * {
        cursor: auto !important;
    }

    .custom-cursor {
        display: none !important;
    }
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Classes */
h1,
h2,
h3,
h4,
.roman-numeral,
.logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

p,
a,
span {
    font-family: 'Montserrat', sans-serif;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}

.custom-cursor.active {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 255, 0, 0.2);
    border-color: transparent;
}

/* Grain Overlay for Cinematic Feel */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Navigation */
.luxe-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 6%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 65px;
    width: auto;
    transition: filter 0.3s, transform 0.3s;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.nav-logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.4));
    transform: scale(1.05);
}

.menu-items {
    display: flex;
    gap: 3rem;
}

.menu-items a {
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    position: relative;
    padding: 10px;
}

.menu-items a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--neon-green);
    transition: width 0.3s ease, left 0.3s ease;
}

.menu-items a:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero-classic {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 6%;
    position: relative;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 10;
}

.hero-typography {
    flex: 1;
    max-width: 800px;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

.main-title {
    font-size: 5vw;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.title-line {
    overflow: hidden;
}

.reveal-text {
    display: inline-block;
    transform: translateY(100%);
}

.title-indent {
    padding-left: 10vw;
}

.neon-text {
    color: var(--bg-dark);
    text-shadow:
        -1px -1px 0 var(--neon-green),
        1px -1px 0 var(--neon-green),
        -1px 1px 0 var(--neon-green),
        1px 1px 0 var(--neon-green),
        0 0 20px var(--neon-green);
}

.hero-paragraph {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-left: 10vw;
    opacity: 0;
    transform: translateY(20px);
}

/* Cyber-Renaissance Portrait Framework */
.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* For absolute rope positioning */
}

/* --- Interactive Lamp Rope Switch --- */
.lamp-rope-container {
    position: absolute;
    top: -150px;
    /* Hang from "ceiling" above the viewport bounds */
    right: 2%;
    /* Position it nicely to the right of the portrait */
    height: 300px;
    /* Initial hanging length */
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-origin: top center;
    /* Pendulum swings from the top */
}

.rope {
    width: 3px;
    height: 100%;
    background: linear-gradient(to right, #2a2a2a, #555, #2a2a2a);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

.rope-handle {
    width: 25px;
    height: 45px;
    background: linear-gradient(to bottom, #d4af37, #8a6a1c);
    border-radius: 5px 5px 15px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
    top: -5px;
    /* overlap rope slightly */
    display: flex;
    justify-content: center;
    align-items: center;
}

.rope-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(90deg);
    /* Read vertically along handle */
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.2);
    /* Engraved effect */
    pointer-events: none;
}

/* --- Photo Light State Filtering --- */
#user-photo {
    /* Initial state: Black and White, dim */
    filter: grayscale(100%) brightness(0.6) contrast(1.1);
    transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light ON state */
.hero-visual.light-on #user-photo {
    filter: grayscale(0%) brightness(1.1) contrast(1.1);
}

.portrait-container {
    position: relative;
    width: 350px;
    height: 450px;
}

.classical-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    padding: 15px;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.classical-frame::before,
.classical-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold);
}

.classical-frame::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.classical-frame::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

.glitch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.2);
    position: relative;
    z-index: 2;
}

.neon-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border-radius: 50%;
    /* Dim initial state */
    background: radial-gradient(circle, rgba(0, 255, 0, 0.05) 0%, transparent 60%);
    filter: blur(20px);
    z-index: 1;
    transition: background 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
}

.hero-visual.light-on .neon-halo {
    /* Bright glowing state when lamp is pulled */
    background: radial-gradient(circle, rgba(0, 255, 0, 0.3) 0%, transparent 65%);
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.2);
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.95);
    }

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

/* Ticker */
.ticker-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    background: rgba(0, 255, 0, 0.02);
}

.ticker-wrapper {
    width: 100%;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 5px;
}

@keyframes ticker {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Section Globals */
.expertise,
.contact {
    padding: 10rem 6%;
    /* Increased padding for better separation */
}

.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.roman-numeral {
    font-size: 4rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-green);
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
}

/* Skills List */
.skills-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.skill-row {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.skill-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--neon-green);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.skill-row:hover {
    background: rgba(0, 255, 0, 0.02);
    border-color: rgba(0, 255, 0, 0.3);
    padding: 3.5rem 2rem;
}

.skill-row:hover::before {
    transform: scaleY(1);
}

.skill-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: transform 0.4s ease;
}

.skill-row:hover .skill-header {
    transform: translateX(20px);
}

.skill-num {
    color: var(--gold);
    font-size: 1rem;
    margin-right: 1.5rem;
    font-weight: 300;
}

.skill-name {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: text-shadow 0.4s ease, color 0.4s ease;
}

.skill-row:hover .skill-name {
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.skill-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
}

.skill-row:hover .skill-icon {
    color: var(--neon-green);
    transform: rotate(90deg) scale(1.5);
    text-shadow: 0 0 15px var(--neon-green);
}

/* Hidden Details Section */
.skill-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-left: 3.5rem;
    /* Aligns with the shifted text */
    padding-right: 2rem;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease 0.1s, padding-top 0.4s ease;
}

.skill-row:hover .skill-details {
    max-height: 400px;
    opacity: 1;
    padding-top: 2rem;
}

.skill-details p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tech-tags span {
    padding: 0.4rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.tech-tags span:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--neon-green));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 15px var(--neon-green);
}

.skill-row:hover .progress-bar {
    transform: scaleX(1);
}

/* --- Holographic Contact Portal --- */
.holographic-contact {
    padding: 10rem 6%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 1) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.holo-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.holo-glitch {
    font-size: 5rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    position: relative;
    margin-bottom: -1rem;
}

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

.holo-glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-green);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.holo-glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--gold);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
    }

    20% {
        clip-path: inset(60% 0 10% 0);
    }

    40% {
        clip-path: inset(40% 0 50% 0);
    }

    60% {
        clip-path: inset(80% 0 5% 0);
    }

    80% {
        clip-path: inset(10% 0 70% 0);
    }

    100% {
        clip-path: inset(30% 0 20% 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(10% 0 60% 0);
    }

    20% {
        clip-path: inset(30% 0 20% 0);
    }

    40% {
        clip-path: inset(70% 0 10% 0);
    }

    60% {
        clip-path: inset(20% 0 50% 0);
    }

    80% {
        clip-path: inset(50% 0 30% 0);
    }

    100% {
        clip-path: inset(5% 0 80% 0);
    }
}

.holo-title {
    font-size: 3.5rem;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.holo-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

/* 3D Portal Button */
.whatsapp-portal-wrapper {
    perspective: 1000px;
    margin-bottom: 3rem;
}

.whatsapp-portal {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transform: rotateX(20deg) rotateY(0deg);
    animation: floatPortal 6s ease-in-out infinite alternate;
}

@keyframes floatPortal {
    0% {
        transform: translateY(0) rotateX(20deg) rotateY(-5deg);
    }

    100% {
        transform: translateY(-20px) rotateX(25deg) rotateY(5deg);
    }
}

.portal-ring {
    position: absolute;
    border-radius: 50%;
    transform-style: preserve-3d;
}

.ring-ext {
    width: 250px;
    height: 250px;
    border: 1px solid rgba(0, 255, 0, 0.1);
    border-bottom-color: var(--neon-green);
    border-right-color: var(--gold);
    animation: spinRing 12s linear infinite;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.1), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.ring-mid {
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    animation: spinRing reverse 8s linear infinite;
}

.ring-int {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(0, 255, 0, 0.2);
    border-top-color: var(--neon-green);
    animation: spinRing 6s linear infinite;
    box-shadow: inset 0 0 40px rgba(0, 255, 0, 0.2);
}

@keyframes spinRing {
    100% {
        transform: rotateZ(360deg) rotateX(10deg);
    }
}

/* === ROCKET WHATSAPP BUTTON === */
.wa-rocket {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    margin: 3rem auto 1rem;
    transition: transform 0.4s ease;
    animation: rocketHover 2s ease-in-out infinite;
}

.wa-rocket:hover {
    transform: scale(1.1);
}

.wa-rocket:hover .flame-core {
    height: 70px;
}

.wa-rocket:hover .flame-outer {
    height: 90px;
}

@keyframes rocketHover {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.rocket-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.rocket-nose {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 40px solid #25D366;
    filter: drop-shadow(0 -5px 15px rgba(37, 211, 102, 0.5));
}

.rocket-middle {
    width: 60px;
    height: 80px;
    background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.2);
    position: relative;
}

.rocket-wa-icon {
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    z-index: 3;
}

.rocket-fins {
    position: absolute;
    bottom: -5px;
    width: 100px;
    height: 30px;
    display: flex;
    justify-content: space-between;
}

.fin {
    width: 20px;
    height: 30px;
    background: linear-gradient(180deg, #128C7E, #0d6b5e);
}

.fin-left {
    border-radius: 0 0 0 50%;
    transform: skewX(15deg);
}

.fin-right {
    border-radius: 0 0 50% 0;
    transform: skewX(-15deg);
}

/* === ROCKET FLAME === */
.rocket-flame {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: -2px;
}

.flame {
    border-radius: 0 0 50% 50%;
    position: absolute;
    top: 0;
}

.flame-core {
    width: 24px;
    height: 50px;
    background: linear-gradient(180deg, #fff 0%, #FFD700 30%, #FF6B00 70%, transparent 100%);
    animation: flameFlicker 0.1s ease-in-out infinite alternate;
    z-index: 3;
}

.flame-outer {
    width: 40px;
    height: 70px;
    background: linear-gradient(180deg, #FFD700 0%, #FF4500 40%, #FF0000 70%, transparent 100%);
    animation: flameFlicker 0.15s ease-in-out infinite alternate-reverse;
    z-index: 2;
    opacity: 0.8;
}

.flame-sparks {
    width: 50px;
    height: 85px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 69, 0, 0.3) 30%, rgba(255, 0, 0, 0.2) 60%, transparent 100%);
    animation: flameFlicker 0.2s ease-in-out infinite alternate;
    z-index: 1;
    opacity: 0.5;
}

@keyframes flameFlicker {
    0% {
        transform: scaleX(1) scaleY(1);
        opacity: 0.8;
    }

    25% {
        transform: scaleX(0.9) scaleY(1.05);
    }

    50% {
        transform: scaleX(1.1) scaleY(0.95);
        opacity: 1;
    }

    75% {
        transform: scaleX(0.85) scaleY(1.08);
    }

    100% {
        transform: scaleX(1.05) scaleY(0.98);
        opacity: 0.9;
    }
}

.rocket-label {
    margin-top: 80px;
}

.blink-text {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 3px;
    animation: blinker 1.5s step-start infinite;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Photo Upload Backup UI */
.photo-uploader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    color: var(--neon-green);
    z-index: 10;
    text-align: center;
    cursor: pointer;
    font-family: 'VT323', monospace;
}

.photo-uploader span {
    margin-bottom: 10px;
    font-weight: bold;
}

.photo-uploader input {
    display: none;
}


@media (max-width: 768px) {
    .main-title {
        font-size: 8vw;
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        margin-top: 50px;
        /* Reduced margin */
    }

    .title-indent {
        padding-left: 0;
    }

    .hero-paragraph {
        margin-left: 0;
        margin: 1.5rem auto 0;
        font-size: 1rem;
        /* Smaller paragraph */
    }

    .menu-items {
        display: none;
    }

    .skill-row {
        flex-direction: column;
        text-align: center;
    }

    .skill-line {
        display: none;
    }
}

/* Services Section */
.services {
    padding: 10rem 6%;
    background: var(--bg-dark);
    position: relative;
    /* Ensure it layers correctly below expertise */
    z-index: 1;
}

.services-accordion {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.acc-panel {
    position: relative;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s;
    cursor: pointer;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.acc-panel:hover {
    flex: 5;
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.15);
}

.acc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.acc-panel:hover .acc-bg {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Backgrounds */
.pixel-bg {
    background-image: radial-gradient(var(--neon-green) 1px, transparent 1px), radial-gradient(var(--neon-green) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.1;
}

.grid-bg {
    background-image: linear-gradient(rgba(0, 255, 0, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 0, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.abstract-bg {
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.1) 10px, rgba(212, 175, 55, 0.1) 20px);
}

.matrix-bg {
    background: linear-gradient(180deg, rgba(0, 255, 0, 0) 0%, rgba(0, 255, 0, 0.2) 50%, rgba(0, 255, 0, 0) 100%);
    background-size: 100% 10px;
}

.acc-icon-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity 0.6s ease, transform 0.6s ease, color 0.6s ease;
    z-index: 1;
}

.acc-img-large {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
}

.acc-panel:hover .acc-icon-large {
    opacity: 0;
    transform: translate(-50%, -100%);
}

.acc-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: flex-end;
}

.acc-panel:hover .acc-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.acc-icon-small {
    font-size: 2rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.acc-img-small {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.acc-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1.1;
    white-space: nowrap;
}

.acc-desc {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 400px;
}

.acc-btn {
    align-self: flex-start;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    margin-top: 1rem;
    transition: background 0.3s, color 0.3s;
}

.acc-btn:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
}

/* Classic Footer */
.classic-footer {
    background-color: #030303;
    padding: 6rem 6% 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 5px;
}

.footer-socials {
    display: flex;
    gap: 2rem;
}

.footer-socials a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {

    .footer-content,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

/* --- Why Us Universe --- */
.why-us {
    padding: 10rem 6%;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    perspective: 2000px;
}

.universe-scaler {
    width: 100%;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    margin-top: 5rem;
}

.why-us-universe {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.center-sun {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 10, 10, 0.9) 0%, rgba(0, 0, 0, 1) 100%);
    border: 2px solid var(--neon-green);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateZ(0);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2), inset 0 0 20px rgba(0, 255, 0, 0.2);
    transform-style: preserve-3d;
}

.sun-text {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
    text-align: center;
    letter-spacing: 2px;
}

.sun-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-5px);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: sunPulse 4s infinite alternate;
}

@keyframes sunPulse {
    0% {
        transform: translate(-50%, -50%) translateZ(-5px) scale(0.9);
        opacity: 0.6;
    }

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

.visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 0, 0.4);
    /* Brighter, solid green */
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.1), inset 0 0 15px rgba(0, 255, 0, 0.1);
    /* Subtle glowing track */
    transform-style: preserve-3d;
    pointer-events: none;
}

.planet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    z-index: 5;
}

/* Planet Sphere Aesthetics */
.planet-sphere {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle at 30% 30%, #fff, var(--gold) 60%, rgba(212, 175, 55, 0.4) 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6), inset -5px -5px 15px rgba(0, 0, 0, 0.8);
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.planet-sphere:hover {
    box-shadow: 0 0 25px var(--neon-green), inset -5px -5px 15px rgba(0, 0, 0, 0.8);
    background: radial-gradient(circle at 30% 30%, #fff, var(--neon-green) 60%, rgba(0, 255, 0, 0.4) 100%);
}

/* Planet Text Labels */
.planet-label {
    position: absolute;
    top: 20px;
    /* Offset below planet */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    padding: 6px 14px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    /* Let clicks pass through to the sphere */
    white-space: nowrap;
}

.planet-label span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* Base Spherical Ring visual tilts */
.ring-1 {
    width: 450px;
    height: 450px;
    margin: -225px 0 0 -225px;
    transform: rotateX(60deg) rotateY(20deg);
}

.ring-2 {
    width: 650px;
    height: 650px;
    margin: -325px 0 0 -325px;
    transform: rotateX(20deg) rotateY(60deg);
}

.ring-3 {
    width: 850px;
    height: 850px;
    margin: -425px 0 0 -425px;
    transform: rotateX(-45deg) rotateY(-45deg);
}

/* --- Extreme Creativity Work With Us Section --- */
.work-with-us {
    padding: 10rem 6%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, var(--bg-dark) 80%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}

/* Animated scanning laser background */
.work-with-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 0, 0.03) 2px,
            rgba(0, 255, 0, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

.work-with-us::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(212, 175, 55, 0.05) 90deg, transparent 180deg, rgba(0, 255, 0, 0.05) 270deg, transparent 360deg);
    animation: rotateConic 15s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes rotateConic {
    100% {
        transform: rotate(360deg);
    }
}

.work-container {
    max-width: 900px;
    z-index: 2;
    position: relative;
}

/* Glitch Title */
.work-with-us .section-title {
    margin-bottom: 4rem;
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    position: relative;
    animation: slightGlitch 4s infinite;
}

@keyframes slightGlitch {

    0%,
    96%,
    100% {
        transform: translate(0) skew(0);
    }

    97% {
        transform: translate(-2px, 2px) skew(-5deg);
        text-shadow: -2px 0 #ff5f56, 2px 0 #27c93f;
    }

    98% {
        transform: translate(2px, -2px) skew(5deg);
        text-shadow: 2px 0 #ff5f56, -2px 0 #27c93f;
    }

    99% {
        transform: translate(0) skew(0);
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    }
}

.work-btn-group {
    display: flex;
    justify-content: center;
    gap: 3rem;
    position: relative;
    height: 70px;
}

.answer-btn {
    padding: 1.2rem 4rem;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    height: 70px;
    background: transparent;
    z-index: 5;
}

/* === PHOTOREALISTIC GALAXY BUTTON (YES) === */
.galaxy-img-btn {
    width: 200px;
    height: 70px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    background-image: url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564?q=80&w=800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4), inset 0 0 30px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Internal dark overlay for text contrast */
.galaxy-img-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    transition: opacity 0.4s;
}

.galaxy-img-btn .btn-text {
    position: relative;
    z-index: 2;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 2px 2px 5px #000;
    transition: letter-spacing 0.3s;
}

.galaxy-img-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.galaxy-img-btn:hover::before {
    opacity: 0;
    /* Reveal more of the bright galaxy on hover */
}

.galaxy-img-btn:hover .btn-text {
    letter-spacing: 6px;
}


/* === PHOTOREALISTIC METEORITE BUTTON (NO) === */
.meteorite-img-btn {
    width: 200px;
    height: 70px;
    color: #fff;
    border: none;
    border-radius: 10px;
    background-image: url('https://images.unsplash.com/photo-1544256247-4f682d28f804?q=80&w=800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 20px rgba(255, 95, 86, 0.4);
    cursor: pointer;
    position: relative;
    /* Transition is kept short so it jumps away fast but smoothly */
    transition: left 0.15s cubic-bezier(0.25, 1, 0.5, 1), top 0.15s cubic-bezier(0.25, 1, 0.5, 1), transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fire gradient overlay mimicking atmospheric entry */
.meteorite-img-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 51, 0, 0.6), rgba(0, 0, 0, 0.4));
    border-radius: 10px;
    z-index: 1;
    transition: background 0.2s;
}

.meteorite-img-btn .btn-text {
    position: relative;
    z-index: 2;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px #000, 0 0 10px #ff3300;
}

/* Hover/Run-away state */
.meteorite-img-btn:hover {
    transform: scale(0.9) rotate(-15deg);
    /* Tilt as it flies */
    box-shadow: 0 0 40px rgba(255, 95, 86, 0.8), -20px 0 30px rgba(255, 153, 0, 0.6);
    /* Adds a fire trail glow effect */
}

.meteorite-img-btn:hover::after {
    background: linear-gradient(to right, rgba(255, 51, 0, 0.8), rgba(255, 204, 0, 0.4));
}



@media (max-width: 768px) {
    .why-us {
        padding: 4rem 2%;
        /* Reduced padding */
        min-height: 80vh;
    }

    .universe-scaler {
        transform: scale(0.40);
        /* Aggressive scale down for mobile screens */
        height: 400px;
        margin-top: 0;
    }

    .center-sun {
        width: 150px;
        height: 150px;
    }

    .sun-text {
        font-size: 1.5rem;
    }

    .planet-label span {
        font-size: 1.2rem;
        /* Larger text relatively on mobile so it's readable */
    }

    /* Make the rings a little bit tighter on mobile to stay on screen */
    .ring-1 {
        width: 350px;
        height: 350px;
        margin: -175px 0 0 -175px;
    }

    .ring-2 {
        width: 550px;
        height: 550px;
        margin: -275px 0 0 -275px;
    }

    .ring-3 {
        width: 750px;
        height: 750px;
        margin: -375px 0 0 -375px;
    }
}

/* Global Mobile Responsiveness for New Components */
@media (max-width: 768px) {

    /* Services Accordion - Stack vertically instead of horizontally */
    .services-accordion {
        flex-direction: column;
        height: 600px;
    }

    .acc-panel {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding-left: 1rem;
    }

    .acc-panel:hover {
        flex-direction: column;
        /* Revert back on open */
        justify-content: flex-end;
        padding-left: 0;
    }

    .acc-icon-large,
    .acc-img-large {
        position: relative;
        transform: translate(0, 0);
        left: auto;
        top: auto;
        margin-right: 1.5rem;
    }

    .acc-icon-large {
        font-size: 2rem;
    }

    .acc-img-large {
        width: 40px;
        height: 40px;
        border-width: 1px;
    }

    .acc-panel:hover .acc-icon-large,
    .acc-panel:hover .acc-img-large {
        opacity: 0;
        transform: translate(-50%, -100%);
        position: absolute;
        top: 50%;
        left: 50%;
    }

    .acc-content {
        padding: 1.5rem;
    }

    .acc-title {
        font-size: 1.3rem;
    }

    /* Skills - Reduce padding and font scale */
    .skill-row {
        padding: 1.5rem 0;
    }

    .skill-row:hover {
        padding: 2.5rem 1rem;
    }

    .skill-name {
        font-size: 1.5rem;
    }

    .skill-details {
        padding-left: 1.5rem;
    }

    /* Cyber Terminal - Scale down spacing and fonts */
    .contact {
        padding: 6rem 4%;
    }

    .terminal-body {
        padding: 1.5rem;
    }

    .term-text {
        font-size: 0.9rem;
    }

    .cyber-btn {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }

    .why-us {
        padding: 4rem 2%;
        /* Reduced padding */
        min-height: 80vh;
    }

    .universe-scaler {
        transform: scale(0.40);
        /* Aggressive scale down for mobile screens */
        height: 400px;
        margin-top: 0;
    }

    .center-sun {
        width: 150px;
        height: 150px;
    }

    .sun-text {
        font-size: 1.5rem;
    }

    .planet-label span {
        font-size: 1.2rem;
        /* Larger text relatively on mobile so it's readable */
    }

    /* Make the rings a little bit tighter on mobile to stay on screen */
    .ring-1 {
        width: 350px;
        height: 350px;
        margin: -175px 0 0 -175px;
    }

    .ring-2 {
        width: 550px;
        height: 550px;
        margin: -275px 0 0 -275px;
    }

    .ring-3 {
        width: 750px;
        height: 750px;
        margin: -375px 0 0 -375px;
    }
}

@media (max-width: 480px) {

    /* Extreme shrink for small phones */
    .universe-scaler {
        transform: scale(0.32);
        height: 350px;
    }

    .hero-visual {
        transform: scale(0.85);
        /* Shrink portrait frame slightly */
    }

    .lamp-rope-container {
        right: -5%;
        /* Keep right justified on narrow view */
    }

    /* Additional micro-adjustments for tiny screens */
    .skill-name {
        font-size: 1.2rem;
    }

    .roman-numeral {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Holographic Portal Mobile Scaling */
    .holographic-contact {
        padding: 5rem 2%;
        min-height: 60vh;
    }

    .holo-glitch {
        font-size: 3.5rem;
    }

    .holo-title {
        font-size: 2rem;
    }

    .holo-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .whatsapp-portal {
        transform: scale(0.7) rotateX(20deg) rotateY(0deg);
    }
}

/* ========================================
   MEGA FOOTER
======================================== */
.mega-footer {
    position: relative;
    background: #050505;
    padding: 0;
    overflow: hidden;
}

.footer-glow-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), var(--gold), var(--neon-green), transparent);
    opacity: 0.6;
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.8;
    }
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 6%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Branding Column */
.footer-brand-col {
    padding-right: 2rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: filter 0.3s, transform 0.3s;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.4));
    transform: scale(1.05);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.02);
}

.social-icon:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.15);
    background: rgba(0, 255, 0, 0.05);
}

/* Column Titles */
.footer-col-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--neon-green);
    border-radius: 2px;
}

/* Nav Lists */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 0.7rem;
}

.footer-nav-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-nav-list a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid var(--neon-green);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    opacity: 0;
    transition: all 0.3s;
}

.footer-nav-list a:hover {
    color: #fff;
    padding-left: 15px;
}

.footer-nav-list a:hover::before {
    opacity: 1;
    left: 0;
}

/* Contact List */
.footer-contact-list li {
    color: var(--text-muted);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact-list li i {
    color: var(--neon-green);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

/* Scrolling Marquee */
.footer-marquee-wrapper {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(0, 255, 0, 0.01);
    padding: 1rem 0;
}

.footer-marquee {
    display: flex;
    white-space: nowrap;
    animation: footerScroll 25s linear infinite;
}

.footer-marquee span {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.06);
    text-transform: uppercase;
    display: inline-block;
    min-width: 100%;
}

@keyframes footerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Copyright */
.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

.footer-credit {
    font-size: 0.8rem;
}

.credit-name {
    color: var(--neon-green);
    font-weight: 600;
}

/* ========================================
   FOOTER RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 5%;
    }

    .footer-logo-big {
        font-size: 2.2rem;
        letter-spacing: 5px;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* === WORK WITH US SECTION === */
.work-with-us {
    padding: 4rem 2rem;
    text-align: center;
}

.work-container {
    max-width: 800px;
    margin: 0 auto;
}

.work-with-us .section-title {
    font-size: clamp(1.3rem, 4vw, 2.2rem);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.work-btn-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.answer-btn {
    padding: 0.8rem 2.5rem;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    border: 2px solid var(--gold, #d4af37);
    background: transparent;
    color: var(--text-light, #f4f4f4);
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.answer-btn:hover {
    background: var(--gold, #d4af37);
    color: #0a0a0a;
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .work-with-us {
        padding: 2.5rem 1rem;
    }

    .work-with-us .section-title {
        font-size: 1.2rem;
    }

    .work-btn-group {
        gap: 1rem;
    }

    .answer-btn {
        padding: 0.7rem 2rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
}