.main--flush {
    padding: 0;
    margin: 0;
}

.main--flush .hero {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=1200') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    margin-left: 15px;
    margin-right: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 10px;
    margin-left: 15px;
    margin-right: 15px;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 60px 40px;
    text-align: center;
    background-color: #f9f9f9;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

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

.service-icon-1 {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url('https://images.unsplash.com/photo-1588878309774-4b3f42a19a8f?q=80&w=780&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.service-icon-2 {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url('https://images.unsplash.com/photo-1754322449185-31f56117ed87?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.service-icon-3 {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url('https://images.unsplash.com/photo-1519567770579-c2fc5436bcf9?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

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

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card:nth-child(1) .service-icon {
    background-color: #2d8a3e;
}

.service-card:nth-child(2) .service-icon {
    background-color: #3da050;
}

.service-card:nth-child(3) .service-icon {
    background-color: #4db563;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

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

/* ── Why Choose Us ── */
.why-choose-us {
    background-color: #f0f7f0;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}

.why-container {
    max-width: 1000px;
    margin: 0 auto;
}

.why-title {
    font-size: 2rem;
    color: #2d5a27;
    margin-bottom: 40px;
}

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

.why-badge {
    background: white;
    border-radius: 12px;
    padding: 32px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-badge:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.why-badge h3 {
    font-size: 1.05rem;
    color: #2d5a27;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-badge p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 2rem;
    color: #2d5a27;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.testimonial-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2d5a27;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: #222;
    font-size: 0.95rem;
}

.author-info span {
    color: #888;
    font-size: 0.82rem;
}

/* ── Before / After ── */
.before-after {
    background: #f0f7f0;
    padding: 60px 20px;
    text-align: center;
}

.ba-container {
    max-width: 800px;
    margin: 0 auto;
}

.ba-title {
    font-size: 2rem;
    color: #2d5a27;
    margin-bottom: 10px;
}

.ba-subtitle {
    color: #666;
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.ba-slider-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    cursor: col-resize;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    user-select: none;
}

.ba-after, .ba-before {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.ba-after {
    background: #4a9e4a;
}

.ba-after img, .ba-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-before {
    width: 50%;
    overflow: hidden;
    background: #8B6914;
}

.ba-before img {
    width: auto;
    min-width: 800px;
}

.ba-label {
    position: absolute;
    top: 16px;
    background: rgba(0,0,0,0.55);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.before-label { left: 16px; }
.after-label  { right: 16px; }

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.ba-handle-line {
    flex: 1;
    width: 3px;
    background: white;
}

.ba-handle-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.ba-caption {
    margin-top: 16px;
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

/* MODAL WRAPPER */
.service-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

/* BACKGROUND OVERLAY + BLUR */
.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
}

/* POPUP CARD */
.service-modal-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 90%;
    margin: auto;
    margin-top: 10vh;

    background: white;
    border-radius: 16px;
    padding: 30px 25px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.2);

    text-align: center;

    animation: fadeInUp 0.25s ease;
}

/* TITLE */
.service-modal-content h3 {
    color: #1a6b2a;
    margin-bottom: 10px;
}

/* BODY TEXT */
.service-modal-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTON */
.service-modal-btn {
    background: #1a6b2a;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 600;
}

.service-modal-btn:hover {
    background: #14521f;
}

/* CLOSE BUTTON */
.service-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #888;
}

/* TOAST */
#service-toast .toast-inner {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    max-width: 1100px;
    width: 95%;
    display: flex;
    overflow: hidden;
    max-height: 90vh;
}

#service-toast .toast-image {
    width: 50%;
    flex-shrink: 0;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

#service-toast .toast-content {
    width: 50%;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

/* ANIMATION */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-subtitle   { font-size: 1rem; }

    .services { padding: 40px 16px; }

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

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

    .ba-slider-wrapper {
        height: 260px;
    }

    #service-toast .toast-inner {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    #service-toast .toast-image {
        width: 100%;
        min-height: 220px;
    }

    #service-toast .toast-content {
        width: 100%;
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .hero { height: 380px; }
    .hero-content h1 { font-size: 1.6rem; }

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

/* Hero CTA buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 200px;
    height: 52px;
    box-sizing: border-box;
    border: 2px solid transparent;
}

.hero-actions .btn-primary {
    background: #1a6b2a;
    color: #fff;
    border-color: #1a6b2a;
}

.hero-actions .btn-primary:hover {
    background: #145220;
    border-color: #145220;
    color: #fff;
    transform: translateY(-2px);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}
