/* Global Design Tokens & Variables */
:root {
    --bg-primary: #0B0B0C;
    --bg-secondary: #121214;
    --bg-tertiary: #1A1A1E;
    
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    --accent-cyan: #00ffcc;
    --accent-cyan-glow: rgba(0, 255, 204, 0.4);
    --accent-purple: #8b5cf6;
    --accent-purple-glow: rgba(139, 92, 246, 0.4);
    --accent-red: #ff3366;
    
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-snappy: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --shadow-neon: 0 0 20px var(--accent-cyan-glow);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-tertiary) var(--bg-primary);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body.loading {
    overflow: hidden; /* Prevent scrolling during landing puzzle */
}

/* Custom Cursor */
#custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    display: none;
}

@media (pointer: fine) {
    #custom-cursor {
        display: block;
    }
}

/* 1. Landing Puzzle Overlay (Rhythm Box) */
#landing-puzzle-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #16161a 0%, #080809 100%);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

#landing-puzzle-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Screen pixelation canvas */
#dissolve-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1001;
    display: none;
}

.puzzle-container {
    width: 90%;
    max-width: 460px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Glitch Title */
.glitch-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
    margin-bottom: 0.5rem;
}

.puzzle-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Synth Box Visual */
.synth-box {
    background: var(--bg-secondary);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.synth-screen {
    background: #060608;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.synth-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    pointer-events: none;
}

#visualizer-canvas {
    width: 100%;
    height: 60px;
    display: block;
}

.status-indicator {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.75rem;
    margin-top: 10px;
    color: #4b5563;
}

#status-text {
    color: var(--accent-cyan);
    text-shadow: 0 0 5px var(--accent-cyan-glow);
}

.beat-progress {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #27272a;
    transition: background 0.1s ease, box-shadow 0.1s ease;
}

.dot.active {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.dot.correct {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.dot.failed {
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
}

.synth-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.synth-btn {
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition-snappy);
    text-transform: uppercase;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: var(--border-glass);
}

.btn-secondary:hover {
    background: #222227;
    color: #fff;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00b8ff 100%);
    color: #080809;
    box-shadow: 0 4px 15px rgba(0, 255, 204, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 255, 204, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.pad-led {
    position: absolute;
    right: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #080809;
    transition: background 0.1s ease;
}

.btn-primary.active-pad .pad-led {
    background: #fff;
    box-shadow: 0 0 10px #fff;
}

.puzzle-tip {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    letter-spacing: 1px;
}

.icon {
    width: 18px;
    height: 18px;
}

/* 2. Main Portfolio Site */
#main-portfolio {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#main-portfolio.visible {
    opacity: 1;
}

/* Navigation */
#global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 11, 12, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.nav-logo span {
    color: var(--accent-cyan);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-snappy);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-cyan);
    transition: var(--transition-snappy);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

/* Section: About & Kinetic Header */
#about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 160px 0 100px 0;
    background: var(--bg-primary);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 5;
}

.organic-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 2;
}

.organic-divider.top {
    bottom: 100%;
    transform: translateY(2px);
}

.organic-divider.bottom {
    top: 100%;
    transform: translateY(-2px);
}

.organic-divider svg {
    width: 100%;
    height: 100%;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Kinetic Typography styles */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    position: relative;
    cursor: pointer;
}

.hero-title span {
    background: linear-gradient(90deg, #fff 0%, var(--accent-cyan) 50%, var(--accent-purple) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-title:hover span {
    transform: scale(1.02) skewX(-2deg);
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.4;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-bio p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.skills-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.skills-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
}

.skill-tag {
    background: var(--bg-secondary);
    border: var(--border-glass);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-snappy);
    position: relative;
    overflow: hidden;
}

.skill-tag:hover {
    border-color: var(--accent-cyan);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-cyan-glow);
    transform: translateY(-3px);
}

/* 3. Performance Slider Project Showcase */
#projects {
    min-height: 100vh;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slider-wrapper {
    width: 100%;
    position: relative;
}

.slider-container {
    display: flex;
    width: 500%; /* 5 slides */
    height: 100vh;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    padding: 100px 80px 60px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .slide {
        padding: 100px 24px 60px 24px;
    }
}

/* Slide backgrounds */
.slide-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .slide-bg {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, var(--bg-secondary) 100%);
}

.slide-content {
    position: relative;
    z-index: 5;
    max-width: 650px;
    width: 100%;
}

.slide-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.1;
}

.slide-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.slide-actions {
    display: flex;
    gap: 20px;
}

/* Split screen grids for mockups */
.slide-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    z-index: 5;
}

.slide-grid.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

@media (max-width: 992px) {
    .slide-grid, .slide-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.slide-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Device Mockups styling */
.device-frame {
    width: 280px;
    height: 570px;
    border: 12px solid #1c1c1f;
    border-radius: 36px;
    background: #000;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.device-screen {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--bg-primary);
}

.device-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Browser Mockup */
.browser-frame {
    width: 100%;
    max-width: 580px;
    background: var(--bg-tertiary);
    border: var(--border-glass);
    border-radius: 12px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.browser-header {
    height: 38px;
    background: #141417;
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: relative;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }

.browser-url {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
    background: #1c1c20;
    padding: 4px 20px;
    border-radius: 4px;
    width: 50%;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.browser-screen {
    width: 100%;
    height: 320px;
    background: var(--bg-primary);
    overflow: hidden;
}

.browser-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Interactive Calculator Widget */
.calculator-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(26, 26, 30, 0.85);
    backdrop-filter: blur(15px);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 20px;
    width: 240px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    z-index: 10;
}

@media (max-width: 576px) {
    .calculator-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        width: 100%;
    }
}

.calc-header {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 12px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calc-row label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.calc-row input {
    width: 70px;
    background: #0f0f11;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 6px;
    border-radius: 4px;
    text-align: right;
}

.calc-row input:focus {
    border-color: var(--accent-cyan);
    outline: none;
}

.calc-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 12px 0;
}

.calc-row.result {
    font-weight: 700;
    font-size: 0.95rem;
}

#calc-total {
    color: #fff;
    text-shadow: 0 0 5px var(--accent-cyan-glow);
}

/* Gamified Code Learning Widget */
.code-interactive-card {
    background: var(--bg-tertiary);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.code-card-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.xp-gain {
    color: var(--accent-cyan);
    font-family: var(--font-heading);
}

.code-editor-mock {
    background: #0c0c0e;
    border-radius: 8px;
    padding: 16px;
    font-family: monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.line-num {
    color: #4b5563;
    text-align: right;
    user-select: none;
}

.code-line {
    color: #e5e7eb;
}

.c-keyword { color: #f472b6; }
.c-string { color: #34d399; }

.code-drop-target {
    display: inline-block;
    background: #1f1f23;
    border: 1px dashed rgba(255,255,255,0.25);
    border-radius: 4px;
    min-width: 60px;
    height: 20px;
    text-align: center;
    vertical-align: middle;
    line-height: 18px;
    color: var(--accent-cyan);
    font-weight: 700;
    transition: var(--transition-snappy);
}

.code-options {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.code-opt {
    flex: 1;
    background: var(--bg-secondary);
    border: var(--border-glass);
    border-radius: 8px;
    padding: 10px 0;
    color: #fff;
    cursor: pointer;
    font-family: monospace;
    font-size: 0.8rem;
    transition: var(--transition-snappy);
}

.code-opt:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 255, 204, 0.05);
}

.code-progress-bar {
    height: 6px;
    background: #111113;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.code-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.quiz-feedback {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    transition: color 0.3s ease;
}

.quiz-feedback.success {
    color: #10b981;
}

.quiz-feedback.error {
    color: var(--accent-red);
}

.project-features {
    list-style: none;
    margin-bottom: 30px;
}

.project-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
}

/* Button systems */
.project-btn {
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.play-store-btn {
    background: #fff;
    color: #0b0b0c;
}

.play-store-btn:hover {
    background: var(--accent-cyan);
    color: #0b0b0c;
    box-shadow: 0 5px 20px var(--accent-cyan-glow);
    transform: translateY(-3px);
}

.external-btn {
    background: transparent;
    border: var(--border-glass);
    color: #fff;
}

.external-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 5px 20px rgba(0, 255, 204, 0.1);
    transform: translateY(-3px);
}

.icon-small {
    width: 14px;
    height: 14px;
}

/* Slider navigation layout */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 768px) {
    .slider-nav {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-snappy);
}

.slider-arrow:hover {
    background: var(--accent-cyan);
    color: #0b0b0c;
    border-color: var(--accent-cyan);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition-snappy);
}

.slider-dot.active {
    background: var(--accent-cyan);
    width: 20px;
    border-radius: 4px;
}

/* 4. Section 3: Contact & Immersive CTA (The Digital Hub) */
#contact {
    min-height: 100vh;
    background: var(--bg-primary);
    position: relative;
    padding: 160px 0 100px 0;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
}

.contact-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Social Bar */
.social-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    border: var(--border-glass);
    padding: 18px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: var(--transition-smooth);
}

.social-name {
    font-weight: 600;
    font-size: 1rem;
}

.social-icon {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    width: 32px;
    height: 32px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    transition: var(--transition-snappy);
}

.social-link:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 255, 204, 0.03);
    transform: translateX(8px);
}

.social-link:hover .social-icon {
    background: var(--accent-cyan);
    color: #0b0b0c;
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* Direct Contact Buttons Container */
.contact-buttons-container {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.contact-btn-direct {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.contact-btn-direct i {
    font-size: 1.25rem;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

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

.instagram-btn {
    background: #E1306C;
    color: #fff;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}

.instagram-btn:hover {
    background: #ca255d;
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .contact-buttons-container {
        flex-direction: column;
    }
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-secondary);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.form-group input, .form-group textarea {
    background: var(--bg-tertiary);
    border: var(--border-glass);
    color: #fff;
    padding: 14px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-snappy);
    width: 100%;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #4b5563;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.05);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00b8ff 100%);
    border: none;
    color: #080809;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    box-shadow: 0 5px 20px var(--accent-cyan-glow);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.icon-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .icon-arrow {
    transform: translateX(4px);
}

.form-status {
    margin-top: 15px;
    font-size: 0.85rem;
    text-align: center;
    transition: color 0.3s ease;
}

.form-status.success {
    color: #10b981;
}

.form-status.error {
    color: var(--accent-red);
}

/* Footer styling */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
    padding-top: 40px;
    text-align: center;
}

.site-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}
