/*
    styles.css - Sid's Portfolio
    dark theme with that batman vibe
*/

:root {
    --bg: #0B0B0D;
    --bg-secondary: #111318;
    --accent: #F3C623;
    --accent-hover: #ffd449;
    --accent-muted: #1E293B;
    --text: #E6E7E9;
    --text-muted: #9CA3AF;
    --border: rgba(243, 198, 35, 0.1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* light mode if anyone wants it */
[data-theme="light"] {
    --bg: #f5f5f7;
    --bg-secondary: #ffffff;
    --text: #1a1a1a;
    --text-muted: #6b7280;
    --border: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* respect user preferences */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body { cursor: auto; }
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }
@media (max-width: 768px) { button { cursor: pointer; } }


/* -------------------- LOADER -------------------- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .5s, visibility .5s;
}
.loader.hidden { opacity: 0; visibility: hidden; }

/* loader */
.loader-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}


/* -------------------- CURSOR -------------------- */
.cursor-dot {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s;
    mix-blend-mode: difference;
}
.cursor-dot.hover {
    width: 40px; height: 40px;
    background: rgba(243, 198, 35, 0.2);
    border: 2px solid var(--accent);
}

.cursor-glow {
    position: fixed;
    width: 30px; height: 30px;
    background: radial-gradient(circle, rgba(243, 198, 35, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
}

.cursor-particles { position: fixed; pointer-events: none; z-index: 9996; }

.cursor-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--accent);
    border-radius: 50%;
    animation: particleFade 0.6s ease forwards;
}

@keyframes particleFade {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

/* hide cursor on mobile */
@media (max-width: 768px) {
    .cursor-dot, .cursor-glow, .cursor-particles { display: none; }
}


/* -------------------- BACKGROUND STUFF -------------------- */
.bg-gradient {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #0B0B0D 0%, #151519 50%, #0B0B0D 100%);
    z-index: -3;
}

.bg-texture {
    position: fixed;
    inset: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    z-index: -2;
    pointer-events: none;
}


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

.particle {
    position: absolute;
    width: 2px; height: 2px;
    background: rgba(243, 198, 35, 0.3);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}


/* -------------------- LAYOUT -------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}


/* -------------------- HEADER / NAV -------------------- */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s, padding 0.3s;
}

.header.scrolled {
    background: rgba(11, 11, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    transition: color 0.15s;
}
.nav-logo:hover { color: var(--accent); }
.nav-logo:hover .logo-bat { filter: drop-shadow(0 0 20px rgba(243, 198, 35, 0.3)); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 16px;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}
.nav-link:hover, .nav-link.active {
    color: var(--text);
    background: rgba(243, 198, 35, 0.1);
}
.nav-link.active { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-muted);
    transition: all 0.15s;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }

.sun-icon { display: none; }
[data-theme="light"] .sun-icon { display: block; }
[data-theme="light"] .moon-icon { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
}
.nav-toggle span {
    display: block;
    width: 20px; height: 2px;
    background: var(--text);
    transition: all 0.15s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* mobile nav */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(11, 11, 13, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; }
    .nav-toggle { display: flex; }
}


/* -------------------- BUTTONS -------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) { .btn { cursor: pointer; } }

/* that shiny hover effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.btn:hover::before { left: 100%; }

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}
.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 20px rgba(243, 198, 35, 0.3);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-full { width: 100%; }


/* -------------------- HERO -------------------- */
.hero {
    min-height: 100vh;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeUp 1s ease 0.5s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    padding: 8px 16px;
    background: rgba(243, 198, 35, 0.1);
    border: 1px solid var(--border);
    border-radius: 30px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title { margin-bottom: 20px; }

.hero-greeting {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.hero-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
    min-height: 36px;
}

.tagline-dynamic { color: var(--accent); font-weight: 600; }

.typewriter-cursor {
    color: var(--accent);
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta { display: flex; gap: 16px; margin-bottom: 40px; }

.hero-socials { display: flex; gap: 16px; }

.social-link {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.15s;
}
.social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 198, 35, 0.2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 1s ease 0.8s both;
}

.hero-image-wrapper {
    position: relative;
    width: 350px; height: 350px;
}

.hero-image-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(243, 198, 35, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-image-border {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px; height: 280px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-image-placeholder {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 250px; height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    box-shadow: 0 0 20px rgba(243, 198, 35, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeUp 1s ease 1.2s both;
}

.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* hero responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-cta, .hero-socials { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-image-wrapper { width: 280px; height: 280px; }
    .hero-image-glow { width: 240px; height: 240px; }
    .hero-image-border { width: 220px; height: 220px; }
    .hero-image-placeholder { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-tagline { flex-direction: column; gap: 4px; }
}


/* -------------------- ABOUT -------------------- */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(17, 19, 24, 0.5) 50%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* code card */
.about-card {
    background: rgba(17, 19, 24, 0.8);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.card-header {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.card-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}
.card-dot:nth-child(2) { background: #ffbd2e; }
.card-dot:nth-child(3) { background: #27ca40; }

.card-code {
    padding: 24px;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.8;
    overflow-x: auto;
}

.code-keyword { color: #c678dd; }
.code-variable { color: #e06c75; }
.code-property { color: #61afef; }
.code-string { color: #98c379; }
.code-boolean { color: #d19a66; }

@media (max-width: 968px) {
    .about-content { grid-template-columns: 1fr; }
    .about-stats { justify-content: center; }
}


/* -------------------- PROJECTS -------------------- */
.projects .container { max-width: 1400px; }

.project-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-muted);
    transition: all 0.15s;
    cursor: none;
}
@media (max-width: 768px) { .filter-btn { cursor: pointer; } }

.filter-btn:hover, .filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.project-card {
    background: rgba(17, 19, 24, 0.8);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(243, 198, 35, 0.3);
}

.project-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--accent-muted));
    overflow: hidden;
}

.project-placeholder {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 13, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}
.project-card:hover .project-overlay { opacity: 1; }

.project-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.15s;
}
.project-link:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.project-content { padding: 24px; }

.project-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tech { display: flex; flex-wrap: wrap; gap: 8px; }

.tech-tag {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(243, 198, 35, 0.1);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--accent);
}

@media (max-width: 480px) {
    .projects-grid { grid-template-columns: 1fr; }
}


/* -------------------- SKILLS -------------------- */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.skill-category {
    background: rgba(17, 19, 24, 0.8);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}
.skill-category:hover {
    border-color: rgba(243, 198, 35, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.skill-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.skill-items { display: flex; flex-direction: column; gap: 20px; }

.skill-item { display: flex; flex-direction: column; gap: 8px; }

.skill-name { font-size: 14px; font-weight: 500; }

.skill-bar {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 3px;
    width: 0;
    transition: width 1s ease;
}


/* -------------------- CONTACT -------------------- */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info { display: contents; }

.contact-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(17, 19, 24, 0.8);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.15s;
}
.contact-item:hover { border-color: rgba(243, 198, 35, 0.3); }

.contact-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 198, 35, 0.1);
    border-radius: 12px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-details { display: flex; flex-direction: column; gap: 4px; }
.contact-details h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }

.contact-link {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.15s;
}
.contact-link:hover { color: var(--accent); }

.copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-muted);
    margin-left: 8px;
    transition: all 0.15s;
    cursor: none;
}
@media (max-width: 768px) { .copy-btn { cursor: pointer; } }
.copy-btn:hover { color: var(--accent); border-color: var(--accent); }
.copy-btn.copied { color: #27ca40; border-color: #27ca40; }

/* form */
.contact-form {
    background: rgba(17, 19, 24, 0.8);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    transition: all 0.15s;
    cursor: none;
}
@media (max-width: 768px) {
    .form-group input, .form-group textarea { cursor: auto; }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(243, 198, 35, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 968px) {
    .contact-content { grid-template-columns: 1fr; }
}


/* -------------------- FOOTER -------------------- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
}

.footer-text { color: var(--text-muted); font-size: 14px; }

.footer-socials { display: flex; gap: 16px; }

.footer-socials a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.15s;
}
.footer-socials a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }


/* -------------------- UTILS -------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
