/* ============================================
   Business Page - Self-contained styles
   Matches site design: #009B4D green, Poppins,
   same spacing and visual language
   ============================================ */

/* ---- Trust strip (self-contained, matches about-us inline styles) ---- */
.biz-trust-strip {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}
.biz-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.biz-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.biz-trust-icon {
    font-size: 1.5rem;
    color: #009B4D;
    margin-bottom: 0.5rem;
}
.biz-trust-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}
@media (max-width: 768px) {
    .biz-trust-strip { padding: 1.5rem 0; }
    .biz-trust-grid {
        gap: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .biz-trust-icon { font-size: 1.25rem; }
    .biz-trust-label { font-size: 1rem; }
}

/* ---- Card grids (even rows, no aspect-square) ---- */
.biz-card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.biz-card-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 992px) {
    .biz-card-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .biz-card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .biz-card-grid-3 { grid-template-columns: 1fr; }
    .biz-card-grid-4 { grid-template-columns: 1fr; }
}

/* ---- Individual cards ---- */
.biz-card {
    background: #FAF5E9;
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}
.biz-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.biz-card .biz-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(0,155,77,0.1);
    color: #009B4D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    flex-shrink: 0;
}
.biz-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* White variant for services section */
.biz-card-white {
    background: #fff;
    border: 1px solid #eee;
}

/* ---- How We're Different ---- */
.biz-different {
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f5e9 100%);
    padding: 3rem 0;
}
.biz-different-inner {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-left: 5px solid #009B4D;
}
.biz-different-inner p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.biz-different-inner p:last-child { margin-bottom: 0; }
.biz-different-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.6rem;
}
.biz-different-list li {
    padding: 0.4rem 0 0.4rem 1.75rem;
    position: relative;
    color: #333;
    font-size: 0.95rem;
}
.biz-different-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #009B4D;
    position: absolute;
    left: 0;
    top: 0.4rem;
}
@media (max-width: 768px) {
    .biz-different-inner { padding: 1.5rem; }
}

/* ---- CTA + Form ---- */
.biz-cta-box {
    background: linear-gradient(135deg, #007A3D 0%, #009B4D 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
}
.biz-cta-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.biz-cta-box > p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Multi-step form */
.biz-form-wrapper {
    max-width: 600px;
    margin: 2rem auto 0;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    color: #333;
}
.biz-form-step { display: none; }
.biz-form-step.active { display: block; }
.biz-form-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007A3D;
    margin-bottom: 1rem;
}
/* Override for new consistent step heading class */
.biz-form-step .biz-form-step-heading {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.biz-form-group { margin-bottom: 1rem; }
.biz-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: #333;
}
.biz-form-group input,
.biz-form-group textarea,
.biz-form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.biz-form-group input:focus,
.biz-form-group textarea:focus,
.biz-form-group select:focus {
    border-color: #009B4D;
    outline: none;
}
.biz-form-group .biz-hint {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.3rem;
}

/* Chip selectors */
.biz-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Visual icon cards (step 1 selection) */
.biz-icon-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.biz-icon-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.25rem 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    user-select: none;
}
.biz-icon-card:hover {
    border-color: #009B4D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.biz-icon-card.selected {
    border-color: #009B4D;
    background: rgba(0,155,77,0.05);
    box-shadow: 0 4px 12px rgba(0,155,77,0.15);
}
.biz-icon-card.selected .biz-icon-card-img {
    background: #009B4D;
    color: #fff;
}
.biz-icon-card-img {
    width: 52px;
    height: 52px;
    background: rgba(0,155,77,0.1);
    color: #009B4D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.biz-icon-card span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .biz-icon-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 380px) {
    .biz-icon-card-grid { grid-template-columns: 1fr; }
}
.biz-chip {
    padding: 0.6rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    color: #333;
    user-select: none;
}
.biz-chip:hover { border-color: #009B4D; }
.biz-chip.selected {
    background: #009B4D;
    color: #fff;
    border-color: #009B4D;
}

/* Progress dots */
.biz-form-progress {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}
.biz-progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: background 0.3s ease;
}
.biz-progress-dot.active { background: #009B4D; }
.biz-progress-dot.completed { background: #00B95B; }

/* Form buttons */
.biz-form-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.biz-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}
.biz-btn-next {
    background: #009B4D;
    color: #fff;
    flex: 1;
}
.biz-btn-next:hover { background: #007A3D; }
.biz-btn-back {
    background: #f0f0f0;
    color: #333;
}
.biz-btn-back:hover { background: #e0e0e0; }
.biz-btn-submit {
    background: #009B4D;
    color: #fff;
    flex: 1;
    font-size: 1.05rem;
}
.biz-btn-submit:hover { background: #007A3D; }
.biz-btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Form success */
.biz-form-success {
    text-align: center;
    padding: 1rem 0;
}
.biz-form-success .biz-success-icon {
    width: 64px;
    height: 64px;
    background: #27AE60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}
.biz-form-success h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}
.biz-form-success p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Summary box in step 4 */
.biz-summary-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* ---- Homepage business section ---- */
.business-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f5e9 50%, #FAF5E9 100%);
    padding: 3rem 0;
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .biz-form-wrapper { padding: 1.5rem 1rem; }
    .biz-chip-group { gap: 0.4rem; }
    .biz-chip { padding: 0.5rem 1rem; font-size: 0.85rem; }
    .biz-cta-box { padding: 2rem 1rem; }
    .biz-cta-box h2 { font-size: 1.4rem; }
    .biz-form-row-2 { grid-template-columns: 1fr; }
    .biz-form-trustbar-inner { flex-direction: column; gap: 0.5rem; }
}

/* ---- Form trust bar ---- */
.biz-form-trustbar {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}
.biz-form-trustbar-inner {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.biz-form-trustbar-item {
    font-size: 0.9rem;
    color: #555;
}
.biz-form-trustbar-item i {
    color: #009B4D;
    margin-right: 0.3rem;
}

/* ---- Form headings ---- */
.biz-form-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #007A3D;
    margin-bottom: 0.5rem;
    text-align: center;
}
.biz-form-subheading {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}
.biz-form-step-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #007A3D;
    margin-bottom: 0.75rem;
}
.biz-form-optional {
    font-size: 0.75rem;
    font-weight: 400;
    color: #999;
    font-style: italic;
}

/* ---- Required asterisk ---- */
.biz-req {
    color: #e74c3c;
}

/* ---- Field errors ---- */
.biz-field-error {
    display: none;
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* ---- Two-column form row ---- */
.biz-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ---- Step label ---- */
.biz-step-label {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
}

/* ---- Step hint ---- */
.biz-step-hint {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.75rem;
    margin-top: -0.5rem;
}

/* ---- Cross-sell ---- */
.biz-crosssell {
    background: #f0f9ff;
    border: 1px solid #b8e0f5;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}
.biz-crosssell-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #007A3D;
    margin-bottom: 0.5rem;
}
.biz-crosssell-title i {
    color: #f39c12;
}
.biz-crosssell-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.biz-crosssell-chip {
    background: #fff;
    border: 1px solid #009B4D;
    color: #007A3D;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ---- Consent checkbox ---- */
.biz-consent-group {
    margin-top: 1.5rem;
}
.biz-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}
.biz-consent-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #009B4D;
}

/* ---- Form switch link ---- */
.biz-form-switch {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #888;
}
.biz-form-switch a {
    color: #009B4D;
    font-weight: 600;
    text-decoration: none;
}
.biz-form-switch a:hover {
    text-decoration: underline;
}

/* ---- Success extra ---- */
.biz-success-extra {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #666;
}
.biz-success-extra a {
    color: #009B4D;
    font-weight: 600;
}

/* ---- FAQ section ---- */
.biz-faq {
    background: #fff;
    padding: 3rem 0;
}
.biz-faq-grid {
    max-width: 800px;
    margin: 2rem auto 0;
}
.biz-faq-item {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}
.biz-faq-item summary {
    font-weight: 600;
    color: #333;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.biz-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: #009B4D;
    transition: transform 0.2s ease;
}
.biz-faq-item[open] summary::after {
    transform: rotate(180deg);
}
.biz-faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
}

/* ---- Pricing strip ---- */
.biz-pricing {
    background: #f8f9fa;
    padding: 2.5rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}
.biz-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 2rem auto 0;
}
.biz-pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-top: 3px solid #009B4D;
}
.biz-pricing-card .biz-pricing-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,155,77,0.1);
    color: #009B4D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 0.75rem;
}
.biz-pricing-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}
.biz-pricing-card .biz-pricing-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #009B4D;
    margin-bottom: 0.25rem;
}
.biz-pricing-card .biz-pricing-desc {
    font-size: 0.85rem;
    color: #888;
}
@media (max-width: 768px) {
    .biz-pricing-grid { grid-template-columns: 1fr; }
}

/* ---- Testimonials ---- */
.biz-testimonials {
    background: #f0f9ff;
    padding: 3rem 0;
}
.biz-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}
.biz-testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.biz-testimonial-stars {
    color: #f39c12;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.biz-testimonial-text {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}
.biz-testimonial-author {
    font-weight: 600;
    color: #007A3D;
    font-size: 0.9rem;
}
.biz-testimonial-role {
    font-size: 0.8rem;
    color: #888;
}
