/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/

body {
    margin: 0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e40af;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1e40af;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f97316;
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #1e40af;
    border-radius: 2px;
    transition: transform 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    gap: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 12px;
    border-radius: 6px;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: #f3f4f6;
}

.mobile-menu-phone {
    background: #f97316;
    color: white !important;
    text-align: center;
    font-weight: 700;
    padding: 16px !important;
}

/* Mobile Sticky Call Button */
.mobile-call-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 16px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #f97316;
    color: white;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    transition: transform 0.2s;
}

.sticky-call-btn:active {
    transform: scale(0.98);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cta-primary {
    background: #f97316;
    color: white;
    padding: 18px 48px;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.cta-secondary {
    background: white;
    color: #1e40af;
    padding: 18px 48px;
    font-size: 1.25rem;
    font-weight: 700;
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, background 0.2s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

.trust-badges {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.badge svg {
    opacity: 0.95;
}

.badge span {
    font-weight: 600;
    font-size: 1rem;
}

/* Emergency Section */
.emergency-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.emergency-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.emergency-text p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.emergency-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.emergency-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 16px;
}

.emergency-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.emergency-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #f9fafb;
    padding: 40px 32px;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.15);
    border-color: #1e40af;
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 12px;
}

.service-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
}

.why-icon {
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 12px;
}

.why-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Service Areas Section */
.service-areas-section {
    padding: 80px 20px;
    background: white;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.areas-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.areas-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author strong {
    color: #1e40af;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author span {
    display: block;
    color: #6b7280;
    font-size: 0.95rem;
    margin-top: 4px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f9fafb;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e40af;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(30, 64, 175, 0.05);
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.final-cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-urgency {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.urgency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.urgency-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-large {
    font-size: 1.5rem !important;
    padding: 22px 60px !important;
}

.cta-note {
    margin-top: 2rem;
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #f97316;
}

.footer-phone {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 12px 0;
}

.footer-phone a {
    color: #f97316;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid,
    .why-us-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emergency-content,
    .areas-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-call-sticky {
        display: block;
    }
    
    .hero {
        padding: 80px 20px 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid,
    .why-us-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-text h2,
    .section-header h2,
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .areas-list {
        grid-template-columns: 1fr;
    }
    
    .emergency-image img,
    .areas-image img {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    body {
        padding-bottom: 90px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .trust-badges {
        gap: 24px;
    }
    
    .badge span {
        font-size: 0.9rem;
    }
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue:        #1e40af;
    --blue-dark:   #1e3a8a;
    --blue-light:  #3b82f6;
    --orange:      #f97316;
    --orange-h:    #ea6c0a;
    --white:       #ffffff;
    --gray-50:     #f8fafc;
    --gray-100:    #f1f5f9;
    --gray-200:    #e2e8f0;
    --gray-600:    #475569;
    --gray-700:    #334155;
    --gray-800:    #1e293b;
    --navy:        #0f172a;
    --text:        #1f2937;
    --radius:      8px;
    --shadow:      0 4px 16px rgba(0,0,0,.08);
    --shadow-md:   0 8px 28px rgba(0,0,0,.12);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

/* ============================================================
   LAYOUT HELPERS
============================================================ */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .6rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 580px;
    margin: 0 auto;
}

/* ============================================================
   BUTTONS / CTAs
============================================================ */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .18s, transform .18s, box-shadow .18s;
    line-height: 1.2;
}

.cta-primary:hover {
    background: var(--orange-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(249,115,22,.4);
}

.cta-large {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1rem 1.8rem;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,.45);
    text-decoration: none;
    transition: border-color .18s, background .18s;
}

.cta-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
}

/* ============================================================
   MOBILE STICKY CALL BUTTON
============================================================ */
.mobile-call-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

.sticky-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: 100%;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1rem;
    text-decoration: none;
    letter-spacing: .3px;
    box-shadow: 0 -4px 18px rgba(0,0,0,.25);
}

@media (max-width: 767px) {
    .mobile-call-sticky { display: block; }
    body { padding-bottom: 62px; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: #fff;
    padding: 7rem 1.25rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 50px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.82);
    max-width: 600px;
    margin: 0 auto 2.2rem;
}

.hero-cta {
    display: flex;
    gap: .9rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Trust badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    font-weight: 600;
    max-width: 120px;
    text-align: center;
}

.badge svg {
    opacity: .9;
}

/* ============================================================
   EMERGENCY SECTION
============================================================ */
.emergency-section {
    background: var(--navy);
    padding: 5rem 1.25rem;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.emergency-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.emergency-text > p {
    color: rgba(255,255,255,.72);
    margin-bottom: 1.6rem;
    font-size: .98rem;
}

.emergency-list {
    margin-bottom: 2rem;
}

.emergency-list li {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    font-weight: 500;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.emergency-list li:last-child { border-bottom: none; }

.emergency-image img {
    border-radius: 10px;
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services-section {
    padding: 5rem 1.25rem;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    border-left: 4px solid var(--blue);
    transition: box-shadow .2s, transform .2s;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}

.service-card p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-us-section {
    padding: 5rem 1.25rem;
    background: #fff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1.5rem;
}

.why-card {
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: background .2s, border-color .2s;
}

.why-card:hover {
    background: var(--navy);
    border-color: var(--navy);
}

.why-card:hover h3,
.why-card:hover p { color: #fff; }

.why-card:hover p { color: rgba(255,255,255,.72); }

.why-icon {
    margin-bottom: .9rem;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
    transition: color .2s;
}

.why-card p {
    font-size: .87rem;
    color: var(--gray-600);
    line-height: 1.6;
    transition: color .2s;
}

/* ============================================================
   SERVICE AREAS
============================================================ */
.service-areas-section {
    padding: 5rem 1.25rem;
    background: var(--gray-50);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-700);
    padding: .8rem 1rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: border-color .18s, color .18s;
}

.area-item:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.areas-image img {
    border-radius: 10px;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section {
    padding: 5rem 1.25rem;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
}

.stars {
    color: #f59e0b;
    font-size: 1.3rem;
    margin-bottom: .9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: .92rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.testimonial-author strong {
    font-size: .95rem;
    color: var(--navy);
}

.testimonial-author span {
    font-size: .82rem;
    color: #94a3b8;
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section {
    padding: 5rem 1.25rem;
    background: var(--gray-50);
}

.faq-container {
    max-width: 740px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

/* Native <details> used — no JS required */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.2rem 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
    flex-shrink: 0;
    transition: transform .25s;
}

details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding-bottom: 1.1rem;
}

.faq-answer p {
    font-size: .93rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--blue);
    text-decoration: underline;
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta-section {
    padding: 5.5rem 1.25rem;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem;
    line-height: 1.2;
}

.final-cta-content > p {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 2.2rem;
}

.cta-urgency {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

.urgency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.9);
    font-weight: 600;
    font-size: .9rem;
}

.cta-note {
    margin-top: 1.1rem;
    color: rgba(255,255,255,.65);
    font-size: .88rem;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
    .emergency-content,
    .areas-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .emergency-image,
    .areas-image { order: -1; }
    .emergency-image img,
    .areas-image img { height: 260px; }
}

@media (max-width: 600px) {
    .hero { padding: 5.5rem 1.1rem 4rem; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .cta-primary, .cta-secondary { justify-content: center; }
    .why-us-grid { grid-template-columns: 1fr 1fr; }
    .areas-list { grid-template-columns: 1fr; }
    .trust-badges { gap: 1.2rem; }
}

@media (max-width: 400px) {
    .why-us-grid { grid-template-columns: 1fr; }
}


