/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --primary: #D32F2F;       /* Brand Red */
    --primary-dark: #b71c1c;
    --secondary: #0D47A1;     /* Trust Blue */
    --accent: #FFEB3B;        /* High-Vis Yellow */
    --text-dark: #222222;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--white);
    padding-bottom: 60px; /* Space for Mobile Sticky Footer */
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 600; font-size: 16px; color: var(--text-dark); }
.nav-links a:hover { color: var(--primary); }

.cta-btn {
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(211, 47, 47, 0.3);
}

.cta-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* =========================================
   3. HERO SECTION (LEAD ENGINE)
   ========================================= */
.hero {
    background: linear-gradient(rgba(13, 71, 161, 0.85), rgba(13, 71, 161, 0.8)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&w=1200');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: var(--white);
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.95; }

.trust-badges span {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 15px;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
}

/* --- LEAD FORM STYLING --- */
.lead-form {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.lead-form h3 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 800;
    font-size: 1.5rem;
}

.form-group { margin-bottom: 15px; }

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #fdfdfd;
}

.form-control:focus { border-color: var(--secondary); outline: none; }

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.submit-btn:hover { background: var(--primary-dark); }

/* =========================================
   4. STATS BAR & CONTENT
   ========================================= */
.stats-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item h2 { font-size: 3rem; color: var(--accent); margin-bottom: 5px; font-weight: 800; }
.stat-item p { font-size: 1.1rem; font-weight: 500; }

.section { padding: 80px 20px; }
.bg-light { background-color: var(--bg-light); }

.container { max-width: 1200px; margin: 0 auto; }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 60px;
    font-weight: 800;
    position: relative;
}

/* =========================================
   5. SERVICES GRID
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--primary);
    transition: var(--transition);
}

.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.service-card h3 { color: var(--secondary); margin-bottom: 15px; font-size: 1.4rem; font-weight: 700; }

/* =========================================
   6. PRICING TABLE & PROCESS
   ========================================= */
.table-wrapper { overflow-x: auto; margin-top: 30px; }

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
    min-width: 600px; /* Forces scroll on mobile */
}

.price-table th, .price-table td {
    border: 1px solid #eee;
    padding: 18px;
    text-align: left;
}

.price-table th { background: var(--secondary); color: var(--white); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
.price-table tr:nth-child(even) { background: #f9f9f9; }

/* Process Steps */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 50px; }
.step-card { text-align: center; padding: 30px 20px; background: var(--white); border-radius: 10px; border: 1px solid #eee; }
.step-number { 
    background: var(--primary); 
    color: var(--white); 
    width: 50px; 
    height: 50px; 
    line-height: 50px; 
    border-radius: 50%; 
    margin: 0 auto 20px; 
    font-weight: bold; 
    font-size: 1.2rem; 
}

/* =========================================
   7. CONTENT BLOCKS & FAQ
   ========================================= */
.content-block { max-width: 900px; margin: 0 auto; padding: 60px 20px; }
.content-block h2 { color: var(--secondary); margin-bottom: 25px; font-size: 2.2rem; }
.content-block h3 { color: var(--primary); margin-top: 35px; margin-bottom: 15px; font-size: 1.5rem; }
.content-block p { margin-bottom: 20px; font-size: 1.1rem; }

/* FAQ */
.faq-item { background: var(--white); border: 1px solid #e0e0e0; margin-bottom: 15px; border-radius: 8px; overflow: hidden; }
.faq-question {
    padding: 20px;
    cursor: pointer;
    background: #fdfdfd;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
    position: relative;
}
.faq-question:after { content: '+'; position: absolute; right: 20px; font-size: 1.5rem; color: var(--primary); }
.faq-answer { padding: 25px; color: #666; border-top: 1px solid #eee; line-height: 1.7; display: none; } /* JS would toggle this, simplistic CSS hover below */
.faq-item:hover .faq-answer { display: block; }

/* =========================================
   8. FOOTER & STICKY MOBILE
   ========================================= */
footer { background: #1a1a1a; color: #aaa; padding: 80px 20px 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; max-width: 1200px; margin: 0 auto 50px; }
.footer-col h4 { color: var(--white); margin-bottom: 25px; font-size: 1.3rem; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 2000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}
.sticky-btn {
    flex: 1;
    padding: 16px;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-call { background: var(--secondary); }
.btn-whatsapp { background: #25D366; }

/* =========================================
   9. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Hide Desktop Menu on Mobile */
    .hero-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .hero-text { text-align: center; }
    .hero-text h1 { font-size: 2.4rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 2rem; }
    .content-block h2 { font-size: 1.8rem; }
}
/* Homepage Specific Styles */
        .city-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .city-card {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            text-align: center;
            transition: 0.3s;
            border: 1px solid #eee;
        }
        .city-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
        }
        .city-card h3 { color: var(--primary); margin-bottom: 10px; }
        .city-links a {
            display: block;
            margin: 5px 0;
            color: #555;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .city-links a:hover { color: var(--secondary); text-decoration: underline; }