﻿:root {
    --bg-dark: #020617;
    --accent-cyan: #00d4ff;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.7;
    text-align: center;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.italic { font-family: var(--font-serif); font-style: italic; color: var(--accent-cyan); }
.cyan { color: var(--accent-cyan); }

/* Sticky Utility Bar */
.top-utility {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.utility-text { font-size: 0.7rem; letter-spacing: 0.2rem; color: var(--text-dim); }
.phone-link-top { color: var(--accent-cyan); text-decoration: none; font-weight: 800; font-size: 1rem; }

/* Hero Section */
.hero { padding: 80px 0; }
.logo { font-size: 2.2rem; font-weight: 800; letter-spacing: 0.8rem; margin-bottom: 30px; }
.hero-h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 30px; }
.seo-intro { max-width: 800px; margin: 0 auto 40px; color: var(--text-dim); font-size: 1.1rem; }
.seo-intro p { margin-bottom: 20px; }
.seo-intro strong { color: var(--text-main); }

.btn-main {
    display: inline-block;
    padding: 20px 45px;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-main:hover { background: var(--accent-cyan); color: var(--bg-dark); box-shadow: 0 0 30px rgba(0, 212, 255, 0.3); }

/* Services Grid */
.services { padding: 100px 0; background: linear-gradient(180deg, var(--bg-dark), rgba(255,255,255,0.02)); }
.section-title { font-size: 2.8rem; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; }

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    transition: 0.3s ease;
}

.card:hover { border-color: var(--accent-cyan); transform: translateY(-5px); }
.card h3 { color: var(--accent-cyan); margin-bottom: 15px; font-size: 1.3rem; }
.card p { color: var(--text-dim); font-size: 0.95rem; }

/* Post-Service CTA */
.final-cta { margin-top: 100px; padding: 80px 40px; border-radius: 40px; border: 1px solid var(--glass-border); background: radial-gradient(circle, rgba(0, 212, 255, 0.05), transparent); }
.final-cta h3 { font-size: 2.5rem; margin-bottom: 10px; }
.cta-phone { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 800; color: var(--text-main); text-decoration: none; display: block; margin: 30px 0; }

/* Regions & Footer */
.hoods { padding: 60px 0; border-top: 1px solid var(--glass-border); }
.hood-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; color: var(--text-dim); font-size: 0.8rem; font-weight: 600; }
.footer { padding: 80px 0; border-top: 1px solid var(--glass-border); opacity: 0.7; }
.small { font-size: 0.7rem; margin-top: 20px; letter-spacing: 0.1rem; }

/* Mobile Optimization */
@media (max-width: 768px) {
    .utility-text { display: none; }
    .top-utility .container { justify-content: center; }
    .logo { font-size: 1.5rem; letter-spacing: 0.4rem; }
    .hero-h1 { font-size: 2.2rem; }
}