/*
Theme Name: LeadGen Emergency Theme
Version: 2.0
Author: Your Name
*/

/* =================================================
GLOBAL RESET
================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background: #f5f7fb;
    color: #1c1c1c;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

/* SECTION SPACING */
section {
    padding: 80px 0;
}

h1,h2,h3 {
    margin-top: 0;
}

/* =================================================
TOP TRUST BAR
================================================= */

.top-bar {
    background: #0a3d62;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* =================================================
HERO SECTION
================================================= */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
        url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c");
    background-size: cover;
    background-position: center;
}

.hero-inner {
    max-width: 820px;
    margin: auto;
    padding: 40px 20px;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-sub {
    margin-top: 18px;
    opacity: .9;
    font-size: 14px;
}

/* =================================================
BUTTONS
================================================= */

.cta-btn,
.primary-btn {
    display: inline-block;
    background: #e84118;
    color: #fff;
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.cta-btn:hover,
.primary-btn:hover {
    transform: translateY(-3px);
}

.call-btn {
    background: #0a3d62;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
}

.call-btn.large {
    font-size: 20px;
    padding: 18px 40px;
}

/* =================================================
CONTENT SECTIONS
================================================= */

.content {
    background: #ffffff;
    text-align: center;
}

.content.alt {
    background: #f6f9fc;
}

.content p {
    max-width: 760px;
    margin: 0 auto 20px;
    font-size: 17px;
}

/* =================================================
SERVICES
================================================= */

.services {
    background: #f3f6fb;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
    margin-top: 45px;
}

.service-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

/* =================================================
BENEFITS LIST
================================================= */

.benefits {
    list-style: none;
    padding: 0;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 30px;
}

/* =================================================
TESTIMONIALS
================================================= */

.testimonials {
    background: #ffffff;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 30px;
    margin-top: 45px;
}

.testimonial {
    background: #f9fbfd;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

/* =================================================
FINAL CTA
================================================= */

.final-cta {
    background: #0a3d62;
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(26px,4vw,36px);
}

/* =================================================
STICKY CALL BUTTON
================================================= */

.sticky-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e84118;
    color: #fff;
    padding: 15px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

/* =================================================
FOOTER (PRO DESIGN)
================================================= */

.site-footer {
    background: #0b1c2c;
    color: #cbd5e1;
    margin-top: 60px;
}

.footer-main {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
}

.footer-title {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-phone a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
}

.footer-phone a:hover {
    text-decoration: underline;
}

/* DISCLAIMER AREA */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 30px 0;
    text-align: center;
}

.footer-disclaimer {
    max-width: 850px;
    margin: 0 auto 15px;
    font-size: 13px;
    color: #9aa7b6;
}

.copyright {
    font-size: 12px;
    color: #7f8c9a;
}

/* =================================================
RESPONSIVE DESIGN
================================================= */

@media (max-width: 900px) {

    section {
        padding: 65px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .sticky-call {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: 90%;
        text-align: center;
    }
}

@media (max-width: 600px) {

    .hero-text {
        font-size: 16px;
    }

    .cta-btn,
    .primary-btn {
        width: 100%;
        max-width: 320px;
    }
}