@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@700;800&family=Sora:wght@400;500;600&display=swap');

:root {
    --primary: #E31E24;
    --dark-bg: #111111;
    --dark-surface: #1a1a1a;
    --light-bg: #FFFFFF;
    --light-surface: #f7f7f7;
    --text-dark: #111111;
    --text-muted: #555555;
    --text-light: #FFFFFF;
    --text-light-muted: #cccccc;
    
    --font-heading: 'Epilogue', sans-serif;
    --font-body: 'Sora', sans-serif;
    
    --radius-sm: 5px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 50px rgba(227, 30, 36, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 24px;
}

h1 {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.5px;
}

h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
}

p {
    margin-bottom: 24px;
    font-size: 1.125rem;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }

.bg-dark { background-color: var(--dark-bg); color: var(--text-light); }
.bg-light { background-color: var(--light-bg); color: var(--text-dark); }
.bg-surface { background-color: var(--light-surface); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #c91a1f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-white {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.btn-white:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Urgency Bar */
.urgency-bar {
    background-color: var(--primary);
    color: var(--text-light);
    text-align: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    z-index: 100;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px;
    background-color: var(--dark-bg);
    color: var(--text-light);
    display: flex;
    align-items: center;
    min-height: 90vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('hero-01.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content p {
    color: var(--text-light-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
}

.trust-bar {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-light-muted);
}

.trust-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-container {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    color: var(--text-dark);
}

.google-reviews-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    width: max-content;
}

.google-reviews-badge img {
    height: 24px;
}

.google-reviews-badge .stars {
    color: #ffb400;
    letter-spacing: 2px;
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background: var(--light-surface);
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.social-proof p {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.logo-grid:hover {
    opacity: 1;
}

.logo-grid img {
    height: 70px;
    object-fit: contain;
}

/* Header & Phone */
.header-logo {
    height: 50px;
    margin-bottom: 40px;
    display: block;
}

.phone-link {
    color: inherit;
    text-decoration: none;
    font-size: 1.25em;
    font-weight: 800;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.phone-link:hover {
    color: var(--primary);
}

/* Mobile Sticky Call */
.mobile-sticky-call {
    display: none;
}

/* Sections General */
.section {
    padding: 120px 0;
}

/* Results Full Width Block */
.results-block {
    background-color: var(--dark-bg);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 80px;
    margin: 60px 0;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.results-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.2;
    border-radius: 50%;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 60px;
}

.stat-item h4 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    background: linear-gradient(270deg, var(--primary), #ff6b6b, #b31215, var(--primary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-gradient-shift 6s ease infinite;
}

@keyframes text-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.stat-item p {
    color: var(--text-light-muted);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 60px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.comparison-table th, .comparison-table td {
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}

.comparison-table th {
    background: var(--light-surface);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-table td:nth-child(2) {
    background: rgba(227, 30, 36, 0.05);
    font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid #eaeaea;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
}

/* Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -20px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--light-surface);
    padding: 40px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--primary);
}

/* Accordion FAQ */
.faq-grid {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--light-surface);
    border-radius: var(--radius-sm);
    padding: 30px;
}

.faq-item h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Footer & Final CTA */
.final-cta {
    background-color: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 100px 24px;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('hero-02.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: var(--text-light);
}

.final-cta .phone-link {
    color: var(--text-light);
}
.final-cta .phone-link:hover {
    color: #ffb400; /* Yellow contrast for dark background */
}

.final-cta .btn {
    margin-top: 30px;
    background: var(--dark-bg);
    color: var(--text-light);
}

.final-cta .btn:hover {
    background: var(--light-bg);
    color: var(--dark-bg);
}

.site-footer {
    background: var(--dark-bg);
    color: var(--text-light-muted);
    padding: 60px 0 40px;
    text-align: center;
}

.site-footer .trust-bar {
    justify-content: center;
    margin-bottom: 40px;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        padding-top: 150px;
    }
    
    .google-reviews-badge, .trust-bar {
        justify-content: center;
    }
    
    .results-block {
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .comparison-table th, .comparison-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .comparison-table th {
        font-size: 1rem;
    }

    .trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .logo-grid {
        gap: 25px;
    }

    .logo-grid img {
        height: 50px;
    }

    .stat-item h4 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .mobile-sticky-call {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--primary);
        color: var(--text-light);
        padding: 14px 24px;
        border-radius: 50px;
        font-weight: 700;
        font-family: var(--font-heading);
        box-shadow: 0 10px 25px rgba(227, 30, 36, 0.4);
        z-index: 9999;
        text-decoration: none;
        font-size: 1.1rem;
        animation: pulse-ring 2s infinite;
    }
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(227, 30, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0); }
}
