:root {
    /* Studio-J Brand Colors */
    --studioj-red: #EF4444;
    --studioj-yellow: #FACC15;
    --studioj-blue: #1e73be;
    
    /* Tech/Cyber Colors */
    --primary: #00ff88;
    --secondary: #00d4ff;
    --accent: #FACC15;
    --success: #51cf66;
    --warning: #ffd43b;
    --danger: #ff4757;
    
    /* Backgrounds */
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-card: #0f1419;
    --bg-hover: #1a1f2e;
    --border: #1e293b;
    
    /* Text */
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Effects */
    --gradient-1: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    --gradient-2: linear-gradient(135deg, #EF4444, #FACC15, #1e73be);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.2);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 30px rgba(0,255,136,0.3);
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Bowlby One', cursive;
    --font-code: 'Fira Code', monospace;
    --font-tech: 'Orbitron', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

/* Grid background effect */
body::before {
    --size: 45px;
    --line: rgba(255, 255, 255, 0.03);
    content: '';
    height: 100vh;
    width: 100vw;
    position: fixed;
    background: 
        linear-gradient(90deg, var(--line) 1px, transparent 1px var(--size)) calc(var(--size) * 0.36) 50% / var(--size) var(--size),
        linear-gradient(var(--line) 1px, transparent 1px var(--size)) 0% calc(var(--size) * 0.32) / var(--size) var(--size);
    top: 0;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   LOADER SCREEN
============================================ */
.loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,255,136,0.05) 0%, var(--bg-darker) 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
    animation: autoHideLoader 2.5s forwards;
}

@keyframes autoHideLoader {
    0%, 85% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

.loader-screen.hidden {
    opacity: 0;
    visibility: hidden;
    animation: none;
}

.loader-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.hack-terminal {
    background: linear-gradient(135deg, rgba(0,255,136,0.05) 0%, rgba(0,212,255,0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,255,136,0.3), 0 0 60px rgba(0,212,255,0.2);
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
}

.terminal-header {
    background: linear-gradient(135deg, rgba(0,255,136,0.1) 0%, rgba(0,212,255,0.1) 100%);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid var(--primary);
}

.terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: var(--danger); }
.dot.yellow { background: var(--warning); }
.dot.green { background: var(--success); }

.terminal-title {
    color: var(--text-primary);
    font-family: var(--font-code);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.terminal-body {
    padding: 2rem 1.5rem;
    font-family: var(--font-code);
    font-size: 0.95rem;
    line-height: 1.9;
    min-height: 250px;
    background: rgba(0,0,0,0.2);
}

.terminal-line {
    margin-bottom: 0.5rem;
}

.prompt {
    color: var(--primary);
    margin-right: 0.5rem;
}

.command {
    color: var(--secondary);
}

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

.output.success {
    color: var(--success);
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--primary);
    animation: cursorBlink 1s infinite;
}

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

.loader-progress-container {
    position: relative;
    width: 100%;
    height: 30px;
    background: rgba(0,0,0,0.3);
    border: 2px solid var(--primary);
    border-radius: 15px;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: var(--gradient-1);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.loader-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progressShine 1.5s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loader-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-code);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    z-index: 1;
}

/* ============================================
   STUDIO-J LOGO
============================================ */
.studioj-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform var(--transition);
}

.studioj-logo:hover {
    transform: translateY(-2px);
}

.studioj-logo .text {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #EF4444, #FACC15, #1e73be, #EF4444);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sj-rainbow 8s ease-in-out infinite;
}

.studioj-logo .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EF4444, #FACC15, #1e73be, #EF4444);
    background-size: 300% 300%;
    border: 2px solid #414144;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.5), 0 0 15px rgba(250,204,21,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sj-circle 8s ease-in-out infinite;
}

.studioj-logo .cube-wrap {
    width: 30px;
    height: 30px;
    perspective: 150px;
}

.studioj-logo .cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(35deg);
    animation: sj-cube 12s ease-in-out infinite;
}

.studioj-logo .face {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
}

.studioj-logo .face.front {
    background: #FACC15;
    color: #494847;
    transform: translateZ(15px);
    font-size: 20px;
}

.studioj-logo .face.top {
    background: #F59E0B;
    transform: rotateX(90deg) translateZ(15px);
}

.studioj-logo .face.right {
    background: #FDE68A;
    transform: rotateY(90deg) translateZ(15px);
}

@keyframes sj-rainbow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes sj-circle {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes sj-cube {
    0%, 100% { transform: rotateX(-20deg) rotateY(35deg); }
    25% { transform: rotateX(-25deg) rotateY(45deg); }
    50% { transform: rotateX(-15deg) rotateY(25deg); }
    75% { transform: rotateX(-22deg) rotateY(40deg); }
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(0,255,136,0.1);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom-color: var(--primary);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.hamburger-menu {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1002;
}

.hamburger-button {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border: 3px solid #000;
    border-radius: 8px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.8);
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.hamburger-button:hover {
    background: #F59E0B;
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.8);
}

.hamburger-button span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-button.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(0,255,136,0.1);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--primary);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#matrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0,255,136,0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(0,212,255,0.03) 50%, transparent 100%);
    background-size: 50px 50px;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(0,255,136,0.1), rgba(0,212,255,0.1));
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    position: relative;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.title-word {
    display: inline-block;
    margin: 0 0.3rem;
    color: var(--text-primary);
}

.title-word.highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0,255,136,0.5);
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.subtitle-separator {
    color: var(--primary);
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
============================================ */
.btn,
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before,
.cta-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,
.cta-btn:hover::before {
    left: 100%;
}

.btn.primary,
.cta-btn.primary {
    background: var(--gradient-1);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0,255,136,0.3);
}

.btn.primary:hover,
.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0,255,136,0.5);
}

.btn.secondary,
.cta-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn.secondary:hover,
.cta-btn.secondary:hover {
    background: rgba(0,255,136,0.1);
    transform: translateY(-2px);
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ============================================
   SECTIONS
============================================ */
.section {
    position: relative;
    padding: 6rem 2rem;
    z-index: 1;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-transform: uppercase;
}

.title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    color: var(--bg-dark);
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   QUOTE CALCULATOR
============================================ */
.quote-form-container {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,255,136,0.1);
}

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

.field-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: var(--bg-darker);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0,255,136,0.2);
    transform: translateY(-2px);
}

.service-card.active {
    border-color: var(--primary);
    background: rgba(0,255,136,0.05);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.service-checkbox {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--primary);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    color: var(--bg-dark);
    font-size: 1.5rem;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    cursor: pointer;
    flex: 1;
}

.service-fields {
    display: none;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}

.service-card.active .service-fields {
    display: block;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
}

.checkbox-item:hover {
    border-color: var(--primary);
    background: rgba(0,255,136,0.05);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-item label {
    cursor: pointer;
    font-size: 0.9rem;
}

/* Loading Animation */
.loading {
    display: none;
    text-align: center;
    padding: 3rem;
}

.loading.active {
    display: block;
}

.spinner {
    border: 4px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

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

/* Quote Results */
.quote-results {
    display: none;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 0 40px rgba(0,255,136,0.3);
}

.quote-results.active {
    display: block;
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.results-subtitle {
    color: var(--text-secondary);
}

.quote-breakdown {
    margin-bottom: 3rem;
}

.service-item {
    background: var(--bg-darker);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-header-quote {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-price-header {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent);
}

.service-components {
    margin-top: 1rem;
}

.component-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.component-item:last-child {
    border-bottom: none;
}

.component-name {
    color: var(--text-secondary);
}

.component-price {
    color: var(--text-primary);
    font-weight: 600;
}

/* Charts */
.charts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.chart-section {
    background: var(--bg-darker);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.chart-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.chart-container {
    position: relative;
    height: 300px;
}

/* Quote Total */
.quote-total {
    text-align: center;
    padding: 2.5rem;
    background: var(--gradient-1);
    border-radius: 16px;
    margin: 3rem 0;
}

.total-label {
    font-size: 1.2rem;
    color: var(--bg-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.total-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--bg-dark);
}

.total-note {
    font-size: 0.85rem;
    color: var(--bg-dark);
    margin-top: 1rem;
    opacity: 0.8;
}

/* Next Steps */
.next-steps {
    background: rgba(0,255,136,0.05);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.next-steps h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.next-steps p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ============================================
   CONTACT FORM
============================================ */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
}

.success-message,
.error-message {
    display: none;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    align-items: center;
    gap: 1rem;
}

.success-message {
    background: rgba(81,207,102,0.1);
    border: 2px solid var(--success);
    color: var(--success);
}

.error-message {
    background: rgba(255,71,87,0.1);
    border: 2px solid var(--danger);
    color: var(--danger);
}

.success-message.active,
.error-message.active {
    display: flex;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    color: var(--bg-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.info-card a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

.info-card a:hover {
    color: var(--secondary);
}

.info-card small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.info-card.social .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--bg-darker);
    border: 2px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--border);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    max-width: 300px;
}

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

.footer-column h5 {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
    color: var(--text-muted);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 968px) {
    .hamburger-button {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 2rem 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
        z-index: 1001;
        border-left: 2px solid var(--primary);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 1.5rem 3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .quote-form-container,
    .quote-results,
    .contact-form-wrapper {
        padding: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .charts-container {
        grid-template-columns: 1fr;
    }

    .total-amount {
        font-size: 2.5rem;
    }
}
