:root {
    --bg-deep-black: #060606;
    --accent-neon: #E6192B; /* Al Rengi / Crimson Red */
    --accent-hover: #C51624; /* Darker Red */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-highlight: rgba(230, 25, 43, 0.08); /* Crimson tint */
    --font-primary: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep-black); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-neon); }

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

body {
    background-color: var(--bg-deep-black);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 70px; /* Space for mobile bar */
    overflow-x: hidden;
    position: relative;
}

/* Animated Ambient Glows */
body::before, body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    animation: drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
body::before {
    top: -100px;
    left: -200px;
    background: var(--accent-neon);
}
body::after {
    bottom: -200px;
    right: -100px;
    background: #FF3344; /* Brighter red glow */
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

/* Typography */
h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 2rem; letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.5rem; }
a { text-decoration: none; color: inherit; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.justify-center { justify-content: center; }

/* Premium Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.6rem;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
    border-radius: 16px;
}

.btn-primary {
    background: var(--accent-neon);
    color: #fff; /* Red looks better with white text */
    box-shadow: 0 0 20px rgba(230, 25, 43, 0.3);
}
.btn-primary:after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}
@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 40px rgba(230, 25, 43, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-neon);
    color: var(--accent-neon);
}
.btn-outline:hover {
    background: rgba(230, 25, 43, 0.15);
    box-shadow: 0 0 20px rgba(230, 25, 43, 0.2);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}
.btn-glass:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.2);
}

.pulse-btn {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 25, 43, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(230, 25, 43, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 25, 43, 0); }
}

/* Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-radius: 0;
    border-top: none; left: none; right: none;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(6, 6, 6, 0.7);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.logo span {
    color: var(--accent-neon);
}
.header-ctas {
    display: flex;
    gap: 1rem;
}

/* Hero */
.hero {
    padding: 200px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-content {
    max-width: 800px;
}
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--accent-neon);
    border: 1px solid var(--glass-highlight);
    background: rgba(230, 25, 43, 0.05);
}
.pulse {
    width: 10px;
    height: 10px;
    background: var(--accent-neon);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-neon);
    animation: blink 1.5s infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 650px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.trust-chips {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.chip {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    font-weight: 600;
}
.chip::before {
    content: "✓";
    color: var(--accent-neon);
    margin-right: 6px;
    font-weight: bold;
}

/* Services */
.services {
    padding: 100px 0;
}
.grid {
    display: grid;
    gap: 2rem;
}
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature-card {
    padding: 2.5rem;
    transition: var(--transition);
}
.feature-card:hover {
    border-color: var(--accent-neon);
    background: var(--glass-highlight);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 25, 43, 0.1);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* SEO Districts */
.seo-districts {
    padding: 60px 0;
}
.seo-desc-text {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.district-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.glass-tag {
    background: var(--glass-bg);
    border: 1px solid rgba(230, 25, 43, 0.2);
    color: var(--text-main);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}
.glass-tag:hover {
    background: rgba(230, 25, 43, 0.15);
    border-color: var(--accent-neon);
    color: var(--accent-neon);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(230, 25, 43, 0.2);
}

/* Regions */
.regions {
    padding: 80px 0;
}
.provinces-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.province-card {
    padding: 1.5rem 2rem;
    border: 1px solid var(--glass-border);
}
.province-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}
.province-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.25rem;
}
.province-body {
    display: none;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 0.7rem;
}
.province-body.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.district-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.district-btn:hover {
    background: rgba(230, 25, 43, 0.1);
    color: var(--accent-neon);
    border-color: rgba(230, 25, 43, 0.4);
    transform: translateY(-2px);
}

/* FAQ */
.faq {
    padding: 80px 0;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
}
.faq-item {
    padding: 2rem;
    border: 1px solid var(--glass-border);
}
.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}
.faq-item p {
    color: var(--text-muted);
    margin-top: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
}
.final-glass {
    padding: 5rem 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(230, 25, 43,0.08) 100%);
    border: 1px solid rgba(230, 25, 43, 0.2);
}
.final-glass p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.25rem;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    z-index: 100;
    padding: 1rem 0.75rem;
    gap: 1rem;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
.bottom-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}
.call-btn {
    background: var(--accent-neon);
    color: #fff; /* Red looks better with white text */
}
.wa-btn {
    background: #25D366; 
    color: #fff;
}

/* Generic Pages (404 etc) */
.page-center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.neon-error {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    color: var(--accent-neon);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(230, 25, 43, 0.4);
}
.error-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .header-ctas { display: none; }
    .hero { padding: 140px 0 60px; text-align: center; }
    .hero-ctas { justify-content: center; }
    .trust-chips { justify-content: center; }
    .mobile-bottom-bar { display: flex; }
    .location-badge { margin: 0 auto 2rem; }
    .hero-subtitle { margin: 0 auto 2.5rem; }
    .district-tags { padding: 0 1rem; }
}
