/* Palette: Midnight (#0b0b0d), Electric Blue (#00a3ff), Lime (#dfff00) */
:root {
    --bg: #0b0b0d;
    --sidebar-bg: #141416;
    --blue: #00a3ff;
    --lime: #dfff00;
    --white: #ffffff;
    --grey: #232326;
    --text-muted: #888888;
    
    --font-head: 'Syncopate', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    display: flex;
}

/* Sidebar Navigation */
.side-bar {
    width: 300px;
    height: 100vh;
    background-color: var(--sidebar-bg);
    position: fixed;
    left: 0;
    top: 0;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--grey);
    z-index: 1000;
}

.logo { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.2rem; text-decoration: none; }
.logo span { color: var(--lime); }

.side-nav { margin-top: 80px; flex-grow: 1; }
.side-nav a { display: block; color: var(--text-muted); text-decoration: none; font-family: var(--font-head); font-size: 0.75rem; margin-bottom: 30px; transition: 0.3s; }
.side-nav a:hover, .side-nav a.active { color: var(--lime); transform: translateX(10px); }

.side-footer { font-size: 0.8rem; border-top: 1px solid var(--grey); padding-top: 30px; }
.side-footer a { display: block; color: var(--blue); font-weight: 700; margin-top: 5px; }

.mobile-toggle { display: none; background: var(--lime); color: black; border: none; padding: 10px; font-family: var(--font-head); font-size: 0.7rem; position: fixed; top: 20px; right: 20px; }

/* Main Area */
.main-wrapper { margin-left: 300px; width: calc(100% - 300px); }

.section-padding { padding: 100px 60px; }

/* Hero */
.hero-urban { height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 1; opacity: 0.5; }
.hero-overlay { position: relative; z-index: 2; padding: 0 60px; }

.tag { color: var(--lime); font-family: var(--font-head); font-size: 0.7rem; letter-spacing: 3px; }
.hero-text h1 { font-family: var(--font-head); font-size: 6rem; line-height: 0.9; margin: 20px 0; letter-spacing: -3px; }
.hero-text p { max-width: 450px; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; }

.btn-neon { background: var(--lime); color: black; padding: 15px 40px; text-decoration: none; font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; transition: 0.3s; }
.btn-neon:hover { box-shadow: 0 0 20px var(--lime); }
.btn-ghost { border: 1px solid var(--white); color: var(--white); padding: 14px 40px; text-decoration: none; font-family: var(--font-head); font-size: 0.7rem; margin-left: 20px; }

/* Grid Info */
.grid-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--grey); padding: 0 !important; }
.info-card { background: var(--bg); padding: 60px; }
.info-card.highlight { border-top: 2px solid var(--blue); }
.info-card h3 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 20px; color: var(--lime); }
.info-card p { color: var(--text-muted); font-size: 0.9rem; }

/* About */
.neon-line { width: 100px; height: 5px; background: var(--lime); margin: 20px 0 40px; }
.big-text { font-size: 2rem; line-height: 1.3; margin-bottom: 40px; font-weight: 300; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.stat strong { display: block; font-size: 3rem; font-family: var(--font-head); color: var(--blue); }
.stat span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }

/* Masonry Testimonials */
.masonry-grid { columns: 2; column-gap: 20px; }
.m-card { background: var(--sidebar-bg); padding: 30px; border: 1px solid var(--grey); break-inside: avoid; margin-bottom: 20px; }
.m-card.highlight { border-color: var(--blue); }
.m-card p { font-style: italic; margin-bottom: 20px; }
.m-card strong { color: var(--lime); font-size: 0.8rem; }

/* Contact Form */
.contact-box { max-width: 800px; }
.forge-form { margin-top: 40px; }
.forge-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.forge-form input, .forge-form select, .forge-form textarea { width: 100%; background: var(--grey); border: none; padding: 20px; color: white; margin-bottom: 20px; font-family: var(--font-body); }
.forge-form input:focus { outline: 1px solid var(--lime); }
.contact-footer { margin-top: 40px; color: var(--text-muted); }

/* Mini Footer */
.mini-footer { padding: 40px 60px; border-top: 1px solid var(--grey); display: flex; justify-content: space-between; align-items: center; font-size: 0.7rem; color: var(--text-muted); }
.footer-links a { margin-right: 20px; text-decoration: none; color: var(--text-muted); }

/* Responsive */
@media (max-width: 1100px) {
    .side-bar { width: 100%; height: auto; position: relative; padding: 20px; flex-direction: row; justify-content: space-between; align-items: center; }
    .side-nav, .side-footer { display: none; }
    .main-wrapper { margin-left: 0; width: 100%; }
    .mobile-toggle { display: block; }
    .hero-text h1 { font-size: 3.5rem; }
    .grid-info, .stats-grid, .masonry-grid { grid-template-columns: 1fr; columns: 1; }
    .forge-form .row { grid-template-columns: 1fr; }
}