/* ================================================
   PetCare Local — Colored Sections
   Author: PetCare Local
   Order: Green → White → Purple → Responsive
   ================================================ */

/* ════════════════════════════════════════════════
   1. GREEN SECTION
   ════════════════════════════════════════════════ */

.section-green {
    background: var(--brand-green);
    padding: 48px 20px;
    width: 100%;
}

.section-green h2 {
    color: #fff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.section-green p.subtitle {
    color: var(--brand-green-light);
    text-align: center;
    margin-bottom: 32px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════
   2. REGION CARDS — inside green section
   ════════════════════════════════════════════════ */

.region-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    padding: 16px;
    cursor: pointer;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: background var(--transition-fast);
}

.region-card:hover {
    background: rgba(255, 255, 255, 0.25);
}

.region-card-icon {
    font-size: 1.5rem;
    margin-bottom: 6px;
    display: block;
}

.region-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.region-card-sub {
    font-size: 0.75rem;
    color: var(--brand-green-light);
    line-height: 1.4;
}


/* ════════════════════════════════════════════════
   3. WHITE SECTION
   ════════════════════════════════════════════════ */

.section-white {
    background: var(--brand-white);
    padding: 48px 20px;
    width: 100%;
}

.section-white h2 {
    color: var(--brand-dark);
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.section-white p.subtitle {
    color: var(--brand-mid);
    text-align: center;
    margin-bottom: 32px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════
   4. HOW IT WORKS STEPS — inside white section
   ════════════════════════════════════════════════ */

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-rust);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    flex-shrink: 0;
}

.step-title {
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.step-text {
    color: var(--brand-body-black);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════
   5. TESTIMONIAL CARDS — inside white section
   ════════════════════════════════════════════════ */

.testimonial-card {
    background: var(--brand-lightest);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    border: 0.5px solid var(--brand-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: var(--brand-green);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--brand-mid);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.testimonial-biz {
    color: var(--brand-accent);
    font-size: 0.8rem;
}


/* ════════════════════════════════════════════════
   6. PURPLE SECTION
   ════════════════════════════════════════════════ */

.section-purple {
    background: var(--brand-dark);
    padding: 100px 20px;
    width: 100%;
}

.section-purple h1 {
    color: #fff !important;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-purple h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-purple p {
    color: var(--brand-accent);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}


/* ════════════════════════════════════════════════
   7. CTA BUTTON — inside purple section
   ════════════════════════════════════════════════ */

.btn-cta {
    background: var(--brand-rust);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--border-radius-xl);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition-fast);
}

.btn-cta:hover {
    background: #0F6E56;
    color: #fff;
    text-decoration: none;
}

.btn-cta-sub {
    color: var(--brand-accent);
    font-size: 0.8rem;
    margin-top: 8px;
    display: block;
}


/* ════════════════════════════════════════════════
   8. RESPONSIVE — ALWAYS LAST
   ════════════════════════════════════════════════ */

@media (max-width: 992px) {
    .section-green,
    .section-white,
    .section-purple {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .section-green,
    .section-white,
    .section-purple {
        padding: 32px 16px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .btn-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
