/* Poison Ivy Removal - Main Stylesheet */
/* Color Scheme: Forest Green Theme */

:root {
    --primary-green: #279f16;
    --secondary-green: #47773d;
    --accent-lime: #01FE00;
    --dark-bg: #202738;
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-gray: #666666;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Roboto', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(39, 159, 22, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

/* Header & Navigation */
@keyframes btn-bounce {
    0%, 45%, 100% { transform: translateY(0); }
    20%           { transform: translateY(-9px); }
    35%           { transform: translateY(-4px); }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--secondary-green);
    padding: 10px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background-color: #2e5e25;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo — circular image */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 72px;
    width: 72px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Hide text logo — image only, like the GHL header */
.logo-text {
    display: none;
}

/* Nav links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    padding: 6px 0;
    position: relative;
    transition: color 0.25s ease;
    text-decoration: none;
}

/* Underline on hover / active */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-lime);
    transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent-lime);
}

/* FREE ESTIMATE button */
.nav-menu a.nav-cta {
    background-color: var(--primary-green);
    color: var(--white);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 22px;
    border-radius: 8px;
    animation: btn-bounce 2s ease-in-out infinite;
    white-space: nowrap;
}

.nav-menu a.nav-cta::after {
    display: none;
}

.nav-menu a.nav-cta:hover {
    background-color: #1d7d0e;
    color: var(--white);
    animation-play-state: paused;
    transform: translateY(-2px);
}

/* Phone link */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-lime);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
                url('../images/hero-bg.jpg') center center / cover no-repeat fixed;
    color: var(--white);
    padding: 140px 20px 60px;
}

.hero-content {
    max-width: 960px;
    width: 100%;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.hero-seal {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-seal img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.6));
}

.hero-tagline {
    margin-bottom: 36px;
}

.hero-tagline .hero-chemical {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.hero-tagline .hero-guarantee {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    font-style: italic;
}

.hero-body {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 36px;
    align-items: center;
    text-align: left;
    margin-bottom: 36px;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.93);
    margin: 0;
}

.hero-circle-slash img {
    width: 100%;
    border-radius: 14px;
    border: 3px solid var(--primary-green);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    display: block;
}

.hero-cta {
    margin-bottom: 28px;
}

.hero-footnote {
    max-width: 720px;
    margin: 0 auto;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
}

.hero-footnote a {
    color: var(--accent-lime);
    text-decoration: underline;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--primary-green);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(39, 159, 22, 0.2);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    color: var(--dark-bg);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    border: 4px solid var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary-green);
    border-radius: 10px;
    z-index: -1;
}

.about-text h2 {
    color: var(--dark-bg);
}

.about-text h2 span {
    color: var(--primary-green);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-list {
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--dark-bg);
}

.about-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg), var(--black));
    color: var(--white);
}

.services .section-header h2 {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(39, 159, 22, 0.1);
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
}

.service-card ul {
    margin-top: 1.5rem;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.service-card li i {
    color: var(--accent-lime);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-phone {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-phone i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-green);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 20px;
}

.process-step h4 {
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--black);
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
}

.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.author-info h5 {
    color: var(--white);
    margin-bottom: 0;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--primary-green);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--dark-bg);
    margin-bottom: 2rem;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--dark-bg);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--dark-bg);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-bg);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

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

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--primary-green);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section i {
    color: var(--primary-green);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-step::after {
        display: none;
    }

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

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .nav-menu {
        position: fixed;
        top: 92px;
        left: 0;
        right: 0;
        background: #2e5e25;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px 28px;
        gap: 18px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu a.nav-cta {
        animation: none;
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        background-attachment: scroll;
        padding: 120px 16px 50px;
    }

    .hero h1 {
        font-size: 2.6rem;
        letter-spacing: 1px;
    }

    .hero-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-body .hero-text {
        order: 2;
    }

    .hero-body .hero-circle-slash {
        order: 1;
    }

    .hero-seal img {
        width: 160px;
    }

    .about-content,
    .services-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .hero-seal img {
        width: 130px;
    }

    .hero-tagline .hero-chemical,
    .hero-tagline .hero-guarantee {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .cta-phone {
        font-size: 1.5rem;
        flex-direction: column;
    }
}

/* ── Guarantee Badge ─────────────────────────────────────── */
.guarantee-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    z-index: 2;
}

.guarantee-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* ── Plants We Remove Section ────────────────────────────── */
.plants-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.plants-section .section-header h2 {
    color: var(--dark-bg);
}

.plants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.plant-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid var(--primary-green);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(39,159,22,0.25);
}

.plant-img {
    height: 160px;
    overflow: hidden;
    background: #e8f5e9;
}

.plant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
}

.plant-label {
    padding: 10px 12px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-bg);
    text-align: center;
    background: var(--white);
}

.plants-cta {
    text-align: center;
    margin-top: 16px;
}

.plants-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* ── Service Areas Section ───────────────────────────────── */
.service-areas {
    padding: 80px 0;
    background: var(--white);
}

.service-areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-areas-text h2 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.service-areas-text h2 span {
    color: var(--primary-green);
}

.service-areas-text > p {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.areas-column h4 {
    color: var(--primary-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 6px;
}

.areas-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.areas-column li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.areas-column li i {
    color: var(--primary-green);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.areas-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.areas-note i {
    color: var(--primary-green);
    margin-right: 6px;
}

.service-areas-map {
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--primary-green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-areas-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Form helpers (homepage contact section) ─────────────── */
.btn-full {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.form-error {
    background: #fff0f0;
    border: 1px solid #ffcccc;
    border-radius: 6px;
    padding: 12px 16px;
    color: #c0392b;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.sending-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
}

.sending-modal {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 340px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sending-modal i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.sending-modal h3 {
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.sending-modal p {
    color: #666;
    font-size: 0.9rem;
}

/* ── Responsive additions ────────────────────────────────── */
@media (max-width: 1100px) {
    .plants-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .plants-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-areas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-areas-map {
        order: -1;
    }
}

@media (max-width: 600px) {
    .plants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .guarantee-badge {
        width: 90px;
        height: 90px;
        bottom: -10px;
        right: -10px;
    }
}
