/* ===================================
   CSS VARIABLES & RESET
   =================================== */
:root {
    /* Neon Colors */
    --neon-cyan: #00F0FF;
    --neon-pink: #FF006E;
    --neon-purple: #8B00FF;
    --neon-green: #39FF14;
    --neon-blue: #4D4DFF;
    
    /* Background */
    --bg-dark: #0A0A0F;
    --bg-darker: #050508;
    --bg-card: rgba(20, 20, 30, 0.6);
    --bg-card-hover: rgba(30, 30, 45, 0.8);
    
    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8D1;
    --text-muted: #6B6B8C;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    --gradient-accent: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    --gradient-dark: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    
    /* Shadows & Glows */
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5);
    --glow-pink: 0 0 20px rgba(255, 0, 110, 0.5);
    --glow-purple: 0 0 20px rgba(139, 0, 255, 0.5);
    
    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.logo-bracket {
    color: var(--neon-cyan);
    font-size: 28px;
}

.logo-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(var(--glow-cyan));
}

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

.nav-link {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-secondary);
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-cyan);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.glow-orb-1 {
    width: 300px;
    height: 300px;
    background: var(--neon-cyan);
    top: 20%;
    left: 10%;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

.glow-orb-3 {
    width: 250px;
    height: 250px;
    background: var(--neon-pink);
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
}

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

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

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

.title-line {
    display: block;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    letter-spacing: 8px;
    text-shadow: var(--glow-cyan);
}

.title-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 10px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.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 ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--neon-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

/* ===================================
   SCROLL INDICATOR
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
}

/* ===================================
   SECTIONS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-decoration {
    color: var(--neon-cyan);
    font-size: 36px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: var(--section-padding);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out backwards;
}

.feature-card[data-delay="0"] { animation-delay: 0.1s; }
.feature-card[data-delay="1"] { animation-delay: 0.2s; }
.feature-card[data-delay="2"] { animation-delay: 0.3s; }

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

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--neon-cyan);
    transform: translateY(-10px);
    box-shadow: var(--glow-cyan);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    margin-bottom: 30px;
    color: var(--neon-cyan);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   FEATURED PROJECT SECTION
   =================================== */
.featured-project {
    padding: var(--section-padding);
    background: var(--gradient-dark);
}

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

.featured-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-pink);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid var(--neon-pink);
    border-radius: 4px;
}

.featured-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.featured-features {
    list-style: none;
    margin-bottom: 40px;
}

.featured-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
}

.featured-features li svg {
    color: var(--neon-green);
    flex-shrink: 0;
}

.featured-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 20px;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-cyan);
}

.frame-corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.frame-corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.frame-corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.frame-corner-br { bottom: 0; right: 0; border-left: none; border-top: none; }

.project-preview {
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.preview-header {
    background: rgba(20, 20, 30, 0.8);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.preview-dots {
    display: flex;
    gap: 8px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.preview-dots span:nth-child(1) { background: #FF5F57; }
.preview-dots span:nth-child(2) { background: #FFBD2E; }
.preview-dots span:nth-child(3) { background: #28CA42; }

.preview-title {
    font-size: 12px;
    color: var(--text-muted);
    font-family: monospace;
}

.preview-content {
    padding: 40px;
    text-align: center;
}

.preview-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.preview-elements {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.preview-btn {
    padding: 8px 16px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 4px;
    font-size: 12px;
    color: var(--neon-cyan);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

/* ===================================
   PAGE HEADER (for inner pages)
   =================================== */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 150px 20px 100px;
    text-align: center;
}

.page-header-content {
    z-index: 1;
}

.page-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

/* ===================================
   PROJECTS PAGE
   =================================== */
.projects-section {
    padding: var(--section-padding);
}

.projects-category {
    margin-bottom: 80px;
}

.category-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-icon {
    color: var(--neon-cyan);
    font-size: 20px;
}

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

.project-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.6s ease-out backwards;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.project-card-coming {
    opacity: 0.6;
}

.project-card-coming:hover {
    opacity: 1;
}

.project-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.project-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
}

.status-live {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
}

.status-dev {
    background: rgba(255, 165, 0, 0.1);
    color: #FFA500;
    border: 1px solid #FFA500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

.project-category-badge {
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(139, 0, 255, 0.1);
    color: var(--neon-purple);
    border: 1px solid var(--neon-purple);
    border-radius: 4px;
}

.project-content {
    padding: 30px;
    flex-grow: 1;
}

.project-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.tech-tag {
    font-size: 11px;
    padding: 6px 12px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 4px;
    font-weight: 600;
}

.project-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-item svg {
    color: var(--neon-cyan);
}

.project-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-main);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

.project-meta {
    display: flex;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.project-status-text {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-section {
    padding: var(--section-padding);
}

.about-block {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    margin-bottom: 100px;
    animation: fadeIn 0.8s ease-out backwards;
}

.about-block[data-delay="0"] { animation-delay: 0.2s; }
.about-block[data-delay="1"] { animation-delay: 0.4s; }

.about-block-reverse {
    grid-template-columns: 1fr 200px;
}

.about-label {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.label-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-label {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 600;
}

.about-content {
    max-width: 800px;
}

.about-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
}

.about-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    margin-top: 100px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out backwards;
}

.value-card[data-delay="0"] { animation-delay: 0.1s; }
.value-card[data-delay="1"] { animation-delay: 0.2s; }
.value-card[data-delay="2"] { animation-delay: 0.3s; }
.value-card[data-delay="3"] { animation-delay: 0.4s; }

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    margin-bottom: 25px;
    color: var(--neon-cyan);
}

.value-title {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 15px;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.tech-stack-section {
    margin-top: 100px;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-category {
    animation: fadeIn 0.6s ease-out backwards;
}

.tech-category[data-delay="0"] { animation-delay: 0.1s; }
.tech-category[data-delay="1"] { animation-delay: 0.2s; }
.tech-category[data-delay="2"] { animation-delay: 0.3s; }

.tech-category-title {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: var(--section-padding);
}

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

.contact-info-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-info-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out backwards;
}

.info-card[data-delay="0"] { animation-delay: 0.1s; }
.info-card[data-delay="1"] { animation-delay: 0.2s; }
.info-card[data-delay="2"] { animation-delay: 0.3s; }

.info-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.info-content {
    flex-grow: 1;
}

.info-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-detail {
    color: var(--text-secondary);
}

.contact-note {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 240, 255, 0.05);
    border-left: 3px solid var(--neon-cyan);
    border-radius: 8px;
}

.note-icon {
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.contact-note p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-cyan);
}

.form-input,
.form-select,
.form-textarea {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

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

.form-submit {
    align-self: flex-start;
    margin-top: 10px;
}

.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
   .about-block-reverse {
    grid-template-columns: 1fr 200px;
}

.about-block-reverse .about-label {
    order: 2;
}

.about-block-reverse .about-content {
    order: 1;
}
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        width: 250px;
        height: calc(100vh - 70px);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        border-left: 1px solid rgba(0, 240, 255, 0.2);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .title-main {
        font-size: 48px;
        letter-spacing: 4px;
    }
    
    .title-subtitle {
        font-size: 18px;
    }
    
    .page-title {
        font-size: 42px;
        flex-direction: column;
    }
    
    .section-title {
        font-size: 36px;
        flex-direction: column;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 36px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .featured-title {
        font-size: 32px;
    }
    
    .about-title {
        font-size: 28px;
    }
}
