/*
Theme Name: To The Rescue LLC
Theme URI: https://therescuefl.com
Author: Custom Build for To The Rescue LLC
Author URI: https://therescuefl.com
Description: A professional, mobile-first WordPress theme for To The Rescue LLC — a licensed handyman, remodeling, painting, tile, tree service, and electrical contractor serving Hernando County, Tampa, Pasco County, and surrounding areas in Florida.
Version: 1.0
License: Proprietary
Tags: responsive, mobile-first, service-business, local-seo
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222222;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #cc0000;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #990000;
}

ul {
    list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #111111;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p {
    margin-bottom: 1rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-pad {
    padding: 70px 0;
}

.section-pad-sm {
    padding: 40px 0;
}

.text-center { text-align: center; }
.text-white { color: #ffffff; }

.section-title {
    text-align: center;
    margin-bottom: 15px;
    color: #111111;
}

.section-subtitle {
    text-align: center;
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width: 60px;
    height: 4px;
    background: #cc0000;
    margin: 15px auto 30px;
    border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: #cc0000;
    color: #ffffff;
    border-color: #cc0000;
}

.btn-primary:hover {
    background: #990000;
    border-color: #990000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204,0,0,0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #cc0000;
    transform: translateY(-2px);
}

.btn-dark {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.btn-dark:hover {
    background: #333333;
    border-color: #333333;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #111111;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo img {
    height: 70px;
    width: auto;
}

/* Desktop Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 3px;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: #cc0000;
    color: #ffffff;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    color: #cc0000;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.header-phone:hover {
    color: #ff3333;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    background: #1a1a1a;
    border-top: 2px solid #cc0000;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    color: #ffffff;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #333333;
    transition: background 0.2s ease;
}

.mobile-nav a:hover {
    background: #cc0000;
    color: #ffffff;
}

.mobile-nav .mobile-phone {
    display: block;
    color: #cc0000;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px solid #333333;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 60%, rgba(180,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: #cc0000;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero h1 {
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stars {
    margin-top: 30px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.hero-stars span {
    color: #ffd700;
    font-size: 1.1rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: #cc0000;
    padding: 18px 0;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.trust-item .icon {
    font-size: 1.3rem;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section {
    background: #f8f8f8;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-body {
    padding: 22px;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #111111;
}

.service-card p {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
    background: #111111;
    color: #ffffff;
}

.why-us .section-title {
    color: #ffffff;
}

.why-us .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.why-item:hover {
    border-color: #cc0000;
    background: rgba(204,0,0,0.08);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.why-item h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.why-item p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.testimonial-card {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 28px;
    border-left: 4px solid #cc0000;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #444444;
    font-style: italic;
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.testimonial-author {
    font-weight: 700;
    color: #111111;
    font-size: 0.95rem;
}

.testimonial-source {
    color: #999999;
    font-size: 0.8rem;
    margin-top: 3px;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
    background: linear-gradient(135deg, #cc0000 0%, #880000 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-strip h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-strip p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone-big {
    display: block;
    color: #ffffff;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta-phone-big:hover {
    color: #ffcccc;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
    background: #f8f8f8;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.area-badge {
    background: #ffffff;
    border: 2px solid #cc0000;
    color: #111111;
    text-align: center;
    padding: 14px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.area-badge:hover {
    background: #cc0000;
    color: #ffffff;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4/3;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: #555555;
    margin-bottom: 16px;
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111111;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid #eeeeee;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-detail-text h2 {
    margin-bottom: 15px;
    color: #111111;
}

.service-detail-text p {
    color: #555555;
    margin-bottom: 15px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info-block {
    background: #111111;
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.contact-info-block h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail-text strong {
    display: block;
    color: #cc0000;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-detail-text a,
.contact-detail-text span {
    color: #ffffff;
    font-size: 1rem;
}

.contact-detail-text a:hover {
    color: #cc0000;
}

.hours-list {
    margin-top: 5px;
}

.hours-list li {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    padding: 3px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-form-block {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
}

.contact-form-block h2 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333333;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dddddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: #333333;
    background: #ffffff;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cc0000;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.map-embed {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, #111111 0%, #2a0000 100%);
    padding: 70px 0;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #cc0000;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: #0d0d0d;
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #cc0000;
}

.footer-col ul li {
    padding: 5px 0;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #cc0000;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item .icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
}

.footer-contact-item a:hover {
    color: #cc0000;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    transition: background 0.2s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #cc0000;
    color: #ffffff;
}

.footer-bottom {
    background: #080808;
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
    color: #cc0000;
}

.license-footer {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-inner {
        padding: 10px 16px;
    }

    .site-logo img {
        height: 55px;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-bar-inner {
        gap: 20px;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-block,
    .contact-form-block {
        padding: 25px;
    }

    .section-pad {
        padding: 50px 0;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        font-size: 0.7rem;
    }
}

/* ============================================================
   SERVICE AREAS PAGE — AREA GRID, ZIP CODES, FAQ, CTA
   ============================================================ */

/* Area Cards Grid */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #e63329;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.area-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.65;
}

.pin {
    font-size: 1.1rem;
}

/* Zip Codes Section */
.zip-section {
    background: #1a1a1a;
    padding: 60px 20px;
    color: #fff;
}

.zip-section .section-title,
.zip-section .section-subtitle {
    color: #fff;
}

.zip-section .divider {
    background: #e63329;
}

.zip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.zip-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.zip-badge:hover {
    background: #e63329;
    border-color: #e63329;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 50px 20px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    position: relative;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    transition: color 0.2s ease;
    display: block;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #e63329;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-question.open::after {
    content: '\2212';
    transform: translateY(-50%) rotate(0deg);
}

.faq-question:hover {
    color: #e63329;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: #555;
    font-size: 0.97rem;
    line-height: 1.7;
    padding: 0;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 20px;
}

/* Estimate CTA Section */
.estimate-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0000 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.estimate-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.estimate-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 36px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e63329;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta-call-btn:hover {
    background: #c0271e;
    transform: translateY(-2px);
    color: #fff;
}

.cta-message-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 36px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.5);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cta-message-btn:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.trust-note {
    margin-top: 25px;
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
}

/* Map Embed */
.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    margin-top: 30px;
}

.map-embed iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .estimate-cta h2 { font-size: 1.5rem; }
    .cta-call-btn { font-size: 1rem; padding: 16px 24px; width: 100%; justify-content: center; }
    .cta-message-btn { width: 100%; justify-content: center; }
    .area-grid { grid-template-columns: 1fr; }
    .map-embed iframe { height: 280px; }
}
