:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(22, 22, 26, 0.7);
    --accent: #007bff;
    --accent-glow: rgba(0, 123, 255, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a5;
    --nav-height: 80px;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* Premium Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        radial-gradient(circle at center, transparent 0%, var(--bg-dark) 100%),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    z-index: -2;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--nav-height);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 8%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.3s;
}

.nav-cta:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Hero Video Section */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    margin-top: var(--nav-height);
    overflow: hidden;
}

/* SEO H1 — visually overlaid on hero video, readable by Google */
.hero-h1 {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.92);
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    white-space: nowrap;
    background: rgba(0,0,0,0.45);
    padding: 10px 28px;
    border-radius: 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    pointer-events: none;
}


.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 1024px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; }
}


/* Static Content Sections */
.content-section {
    position: relative;
    background: var(--bg-dark);
    padding: 120px 8%;
    z-index: 100; /* Above the hero elements */
}

.section-header { margin-bottom: 60px; }
.section-header h3 { font-size: 1.2rem; letter-spacing: 5px; color: var(--accent); margin-bottom: 15px; }
.header-line { width: 80px; height: 2px; background: var(--accent); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px 40px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.service-icon { font-size: 2.5rem; margin-bottom: 25px; }
.service-card h4 { font-size: 1.4rem; margin-bottom: 15px; letter-spacing: 1px; }
.service-card p { color: var(--text-secondary); line-height: 1.6; }

/* About Section */
.about-content {
    display: flex; gap: 80px; align-items: center;
}

.about-text { flex: 1.5; }
.about-text h3 { font-size: 2.5rem; margin-bottom: 30px; font-weight: 900; }
.about-text p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 25px; line-height: 1.7; }

.about-stats {
    flex: 1;
    display: flex; flex-direction: column; gap: 30px;
}

.stat {
    background: var(--bg-card);
    padding: 30px; border-radius: 8px;
    display: flex; flex-direction: column;
    font-size: 0.9rem; color: var(--text-secondary);
}

.stat span {
    font-size: 2.5rem; font-weight: 900; color: var(--accent); margin-bottom: 5px;
}

/* Contact Section */
.contact-container {
    display: flex; gap: 100px;
}

.contact-info { flex: 1; }
.contact-info h3 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 900; }
.contact-info p { color: var(--text-secondary); margin-bottom: 40px; }

.contact-details { list-style: none; display: flex; flex-direction: column; gap: 20px; }

.contact-form.map-container {
    flex: 1.5;
    display: flex; flex-direction: column; gap: 20px;
}

.action-btn {
    flex: 1;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.email-btn { background: var(--accent); }
.email-btn:hover { background: #0056b3; }

.phone-btn { background: #28a745; }
.phone-btn:hover { background: #218838; }

.price-tag {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin: 15px 0;
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

/* Sticky Contact for All Devices */
.sticky-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.sticky-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.6);
    background: #0056b3;
}

/* Footer */
.main-footer {
    padding: 80px 8% 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo { font-size: 1.2rem; font-weight: 900; margin-bottom: 20px; letter-spacing: 1px; }
.footer-logo span { color: var(--accent); }
.main-footer p { font-size: 0.8rem; color: var(--text-secondary); }

@media (max-width: 900px) {
    .about-content, .contact-container { flex-direction: column; gap: 40px; }
    .text-section h1, .text-section h2 { font-size: 2.5rem; }
}

/* Scroll Indicator Animation */
@keyframes scrollBounce {
    0% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 15px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 0; }
}

@media (max-width: 600px) {
    .content-section {
        padding: 60px 5%;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card {
        padding: 30px 20px;
    }
    .about-text h3 {
        font-size: 2rem;
    }
    .stat {
        padding: 20px;
    }
    .contact-info h3 {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .main-nav {
        padding: 0 5%;
    }
    .nav-logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    .nav-cta {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
}

/* Doorstep Mobile Service Section */
.doorstep-section {
    background: linear-gradient(180deg, #070709 0%, #0d0e12 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 8%;
}

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

.section-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin-top: 15px;
    line-height: 1.6;
}

.doorstep-section .section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 10px 0;
    color: #fff;
    letter-spacing: 1px;
}

.doorstep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.doorstep-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 40px 30px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.doorstep-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.15);
    background: rgba(0, 123, 255, 0.03);
}

.doorstep-card.highlight {
    border-color: rgba(0, 123, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 123, 255, 0.15);
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.doorstep-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.doorstep-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #fff;
}

.doorstep-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 4-Step Process */
.doorstep-process {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    backdrop-filter: blur(15px);
}

.process-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 35px;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.step-text strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
}

.step-text span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
}

.step-arrow {
    color: var(--accent);
    font-size: 1.4rem;
    opacity: 0.6;
}

/* Doorstep CTA Banner */
.doorstep-cta-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(10, 10, 12, 0.9) 100%);
    border: 1px solid rgba(0, 123, 255, 0.4);
    border-radius: 16px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.cta-text h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 800;
}

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

.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.doorstep-btn {
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.phone-cta {
    background: #28a745;
    color: #fff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.phone-cta:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
}

.message-cta {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.message-cta:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
}

@media (max-width: 900px) {
    .step-arrow { display: none; }
    .doorstep-cta-banner {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        width: 100%;
        justify-content: center;
    }
}

