/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ── Google Reviews Section V2 ── */
.google-reviews {
    padding: 100px 0;
    background: #f8fafa;
    position: relative;
    z-index: 10;
}

/* SEO Footer Grid */
.footer-areas-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-top: 40px;
}

.footer-areas-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.areas-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px 24px;
}

.areas-link-grid a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.areas-link-grid a:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
}

.areas-link-grid a:hover {
    color: white;
    padding-left: 4px;
}

@media (max-width: 768px) {
    .areas-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .areas-link-grid {
        grid-template-columns: 1fr;
    }
}

.rg-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.rg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.rg-content {
    position: relative;
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: rg-slideIn 0.3s ease-out;
}

@keyframes rg-slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.rg-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.rg-step h3 {
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 12px;
}

.rg-step p {
    color: #666;
    margin-bottom: 24px;
}

.rg-stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rg-star {
    font-size: 40px;
    color: #ddd;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
}

.rg-star:hover {
    transform: scale(1.2);
}

.rg-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.rg-btn {
    display: inline-block;
    background: #1a5c34;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    font-size: 1rem;
}

.rg-btn:hover {
    background: #144627;
    transform: translateY(-2px);
}

.rg-btn-google {
    background: #4285F4;
}

.rg-btn-google:hover {
    background: #357ae8;
}

#rg-feedback-form textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    font-family: inherit;
    resize: none;
}

#rg-feedback-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 20px;
}

#rg-feedback-form textarea:focus,
#rg-feedback-form input:focus {
    border-color: #1a5c34;
    outline: none;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.reviews-header-left {
    flex: 1;
    min-width: 300px;
}

.reviews-header-right {
    display: flex;
    gap: 12px;
}

.google-badge-large {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #e8ecef;
    margin-top: 20px;
    width: fit-content;
}

.google-logo-wrapper {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.google-logo-wrapper svg {
    width: 40px !important;
    height: 40px !important;
    display: block !important;
}

.google-rating-big {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.google-stars-big {
    color: #f59e0b;
    font-size: 1.2rem;
    margin: 4px 0;
}

.google-count-big {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.btn-review-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid #e8ecef;
    background: white;
    color: #333;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.btn-review-outline:hover {
    border-color: #1a5c34;
    color: #1a5c34;
    background: #f0fdf4;
}

.reviews-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card-v2 {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e8ecef;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #1a5c34;
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar-img {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
}

.review-avatar-text {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0fdf4;
    color: #1a5c34;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-user-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.review-user-info span {
    font-size: 0.8rem;
    color: #888;
}

.google-icon-small {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.review-stars-v2 {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.review-content-v2 {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .reviews-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .reviews-grid-v2 {
        grid-template-columns: 1fr;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-header-right {
        width: 100%;
        flex-direction: column;
    }

    .reviews-header-right .btn-review-outline {
        justify-content: center;
    }
}

/* ── End Google Reviews Section V2 ── */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 24px;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Button Styles */
.cta-button,
.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button,
.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.cta-button:hover,
.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a2412 0%, #1a5c34 60%, #236b3d 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
}

.urgency {
    color: #ffd166 !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

/* Before/After Slider Styles */
.ba-sliders-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .ba-sliders-row {
        grid-template-columns: 1fr;
    }
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    cursor: col-resize;
    user-select: none;
    background: #111;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-before {
    width: 50%;
    z-index: 2;
}

.ba-before img,
.ba-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-after img {
    width: 100%;
}

.ba-label {
    position: absolute;
    bottom: 12px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.ba-label-before {
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.ba-label-after {
    right: 12px;
    background: rgba(44, 95, 45, 0.9);
    color: #fff;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: col-resize;
    touch-action: none;
    transition: left 0s;
}

.ba-handle-line {
    flex: 1;
    width: 3px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.ba-handle-circle {
    width: 42px;
    height: 42px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    flex-shrink: 0;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    font-size: 18px;
    font-weight: 500;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.urgency {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: bold;
}

/* Trust Badges */
.trust-badges {
    background: var(--bg-light);
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.badge {
    font-weight: 600;
    color: var(--primary-color);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Service Areas */
.service-areas {
    background: var(--bg-light);
    padding: 80px 0;
}

.service-areas h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.area-column h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    margin-bottom: 10px;
}

.area-column a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.area-column a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.phone-large {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-features p {
    margin-bottom: 10px;
    font-weight: 500;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--bg-light);
}

.gallery h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   PREMIUM V2 REDESIGN — New component styles
   Added: 2026-03-02
═══════════════════════════════════════════════════════ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Base overrides ── */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Shared section header ── */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #1a5c34;
    background: #e8f5e9;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Sticky Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-top-bar {
    background: #1a5c34;
    color: white;
    font-size: 0.82rem;
    padding: 6px 0;
}

.header-top-bar a {
    color: white;
}

.main-nav {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-menu a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #1a5c34;
}

.nav-cta-btn {
    background: #1a5c34 !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    transition: background 0.2s !important;
}

.nav-cta-btn:hover {
    background: #236b3d !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

/* ── Mobile Sticky Button ── */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #e85d04;
    color: white;
    text-align: center;
    padding: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }
}

/* ── Hero V2 ── */
.hero-v2 {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
}

.hero-v2-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(5, 20, 10, 0.9) 0%, rgba(10, 36, 18, 0.82) 50%, rgba(26, 92, 52, 0.7) 100%);
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.hero-v2-eyebrow {
    display: inline-block;
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #4ade80;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-v2-headline {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 900;
    color: white;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-v2-sub {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.hero-v2-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e85d04;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(232, 93, 4, 0.4);
}

.hero-btn-primary:hover {
    background: #d04e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 93, 4, 0.5);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.hero-v2-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-v2-urgency {
    display: inline-block;
    background: rgba(232, 93, 4, 0.2);
    border: 1px solid rgba(232, 93, 4, 0.4);
    color: #ffa569;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
}

/* ── Stats Strip ── */
.stats-strip {
    background: #1a5c34;
    padding: 32px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Services V2 ── */
.services-v2 {
    padding: 100px 0;
    background: #fff;
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card-v2 {
    background: white;
    border: 1px solid #e8ecef;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: #1a5c34;
}

.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-v2 h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.service-card-v2 p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-learn-more {
    color: #1a5c34;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.service-learn-more:hover {
    gap: 8px;
}

/* ── CTA Strips ── */
.cta-strip {
    background: #1a5c34;
    padding: 48px 0;
}

.cta-strip-alt {
    background: #111;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-strip h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.cta-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e85d04;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.35);
}

.cta-strip-btn:hover {
    background: #d04e00;
    transform: translateY(-2px);
}

.cta-strip-btn-alt {
    background: #1a5c34;
    box-shadow: 0 4px 16px rgba(26, 92, 52, 0.35);
}

.cta-strip-btn-alt:hover {
    background: #236b3d;
}

/* ── Before & After V2 layout ── */
.ba-section {
    padding: 100px 0;
    background: #f8fafa;
}

.ba-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ba-sliders-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ba-bullets-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.ba-bullets-group h3.ba-bullets-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.ba-before-title {
    color: #dc2626;
}

.ba-after-title {
    color: #16a34a;
}

.ba-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ba-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.97rem;
    color: #444;
    padding: 10px 14px;
    border-radius: 8px;
}

.ba-list-bad li {
    background: #fef2f2;
    color: #7f1d1d;
}

.ba-list-bad li::before {
    content: '✕';
    color: #dc2626;
    font-weight: 700;
    flex-shrink: 0;
}

.ba-list-good li {
    background: #f0fdf4;
    color: #14532d;
}

.ba-list-good li::before {
    content: '✓';
    color: #16a34a;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Existing BA slider styles preserved ── */
.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: ew-resize;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    user-select: none;
    height: 220px;
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
}

.ba-before {
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-after img {
    min-width: 100%;
}

.ba-label {
    position: absolute;
    bottom: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 4;
}

.ba-label-before {
    left: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
}

.ba-label-after {
    right: 8px;
    background: rgba(26, 92, 52, 0.85);
    color: white;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: ew-resize;
}

.ba-handle-line {
    flex: 1;
    width: 3px;
    background: white;
}

.ba-handle-circle {
    width: 44px;
    height: 44px;
    background: #1a5c34;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    border: 3px solid white;
}

/* ── Why Choose Us ── */
.why-us {
    padding: 100px 0;
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-us-card {
    padding: 36px 28px;
    border: 1px solid #e8ecef;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.why-us-card:hover {
    border-color: #1a5c34;
    box-shadow: 0 8px 32px rgba(26, 92, 52, 0.1);
    transform: translateY(-4px);
}

.why-us-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-us-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.why-us-card p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials {
    padding: 100px 0;
    background: #0f2d1a;
}

.testimonials .section-eyebrow {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.15);
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}

.rating-stars {
    color: #f59e0b;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a5c34;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

/* ── Service Areas V2 ── */
.service-areas-v2 {
    padding: 100px 0;
    background: #f8fafa;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.area-column h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a5c34;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e9;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    margin-bottom: 8px;
}

.area-column a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: color 0.2s;
}

.area-column a::before {
    content: '→';
    color: #1a5c34;
    font-size: 0.8rem;
}

.area-column a:hover {
    color: #1a5c34;
}

/* ── FAQ Accordion V2 ── */
.faq-v2 {
    padding: 100px 0;
    background: white;
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e8ecef;
    border-radius: 16px;
    overflow: hidden;
}

.faq-item-v2 {
    border-bottom: 1px solid #e8ecef;
}

.faq-item-v2:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 22px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafa;
}

.faq-question[aria-expanded="true"] {
    background: #f0fdf4;
    color: #1a5c34;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: #1a5c34;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-answer {
    padding: 0 28px 22px;
    background: #f0fdf4;
}

.faq-answer p {
    color: #444;
    font-size: 0.97rem;
    line-height: 1.7;
}

.faq-answer a {
    color: #1a5c34;
    font-weight: 600;
}

/* ── Contact V2 ── */
.contact-v2 {
    padding: 100px 0;
    background: #0f2d1a;
}

.contact-v2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-v2-info {
    color: white;
}

.contact-v2-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    margin-top: 12px;
}

.contact-v2-info>p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.contact-v2-phone {
    margin-bottom: 16px;
}

.contact-v2-phone a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-v2-phone a:hover {
    color: #4ade80;
}

.contact-v2-hours {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.contact-v2-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-badge {
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
}

.contact-v2-form {
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

/* ── Footer ── */
.site-footer {
    background: #0a1a0e;
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-section h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #4ade80;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-bar a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
}

.footer-bottom-bar a:hover {
    color: white;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-layout {
        grid-template-columns: 1fr;
    }

    .contact-v2-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        padding: 14px 0;
    }

    .hero-v2 {
        min-height: 100vh;
    }

    .hero-v2-content {
        padding: 50px 20px;
    }

    .hero-v2-ctas {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .services-grid-v2 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .services-v2,
    .why-us,
    .ba-section,
    .testimonials,
    .service-areas-v2,
    .faq-v2,
    .contact-v2 {
        padding: 64px 0;
    }
}

@media (max-width: 480px) {
    .hero-v2-headline {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .testimonials-grid {
        gap: 16px;
    }

    .footer-grid {
        gap: 20px;
    }
}

/* ── Google Reviews Section V2 ── */
.google-reviews {
    padding: 100px 0;
    background: #f8fafa;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* End of styles.css */