/* Business Growth and Coaching Page Styles */

/* Base & Typography */
.service-page-wrapper {
    color: #2c3e50;
    font-family: 'Montserrat', sans-serif;
}

/* Hero Section */
.coaching-hero {
    background: linear-gradient(135deg, #1e293b 0%, #2c3e50 50%, #1e3a5f 100%);
    color: #ffffff;
    padding: 85px 0 70px;
    position: relative;
    overflow: hidden;
}

.coaching-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(243, 101, 34, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.coaching-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -5%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.coaching-hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 101, 34, 0.18);
    border: 1px solid rgba(243, 101, 34, 0.4);
    color: #ff9160;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.hero-subhead {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    color: #f1f5f9;
    margin-bottom: 24px;
}

.hero-lead-text {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* Hero Stats Counter Row */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 24px 0;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(243, 101, 34, 0.4);
    transform: translateY(-2px);
}

.hero-stat-number {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ff9160;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: #e2e8f0;
    line-height: 1.35;
    font-weight: 500;
}

.hero-callout-note {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #cbd5e1;
    border-left: 3px solid #f36522;
    padding-left: 14px;
}

/* Hero Right Snapshot Card */
.hero-snapshot-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.96) 0%, rgba(15, 23, 42, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(243, 101, 34, 0.12);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.hero-snapshot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f36522 0%, #ff8650 50%, #3b82f6 100%);
}

.snapshot-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #60a5fa;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.snapshot-title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.3;
}

.snapshot-subtitle {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.snapshot-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.snapshot-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon-wrap {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-content strong {
    display: block;
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2px;
}

.check-content span {
    display: block;
    color: #94a3b8;
    font-size: 0.84rem;
    line-height: 1.4;
}

.snapshot-footer {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.snapshot-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.86rem;
    line-height: 1.4;
}

.snapshot-guarantee i {
    color: #f36522;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Call to Action Buttons */
.btn-brand-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #f36522 0%, #ff7b3d 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 15px 34px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(243, 101, 34, 0.35);
}

.btn-brand-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(243, 101, 34, 0.45);
    color: #ffffff !important;
}

.btn-brand-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.btn-brand-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.btn-brand-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: #f36522 !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #f36522;
    transition: all 0.3s ease;
}

.btn-brand-outline:hover {
    background: #f36522;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 101, 34, 0.25);
}

/* Content Sections */
.content-section {
    padding: 85px 0;
}

.content-section-light {
    background-color: #ffffff;
}

.content-section-alt {
    background-color: #f8fafc;
}

.section-h2-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.section-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

.section-body-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
}

.text-link-primary {
    color: #f36522;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.text-link-primary:hover {
    color: #d44d0d;
}

/* Callout Info Box */
.highlight-info-box {
    background: linear-gradient(135deg, #f0f7ff 0%, #e2eeff 100%);
    border-left: 4px solid #0284c7;
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 30px 0 10px;
}

.highlight-info-box p {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.75;
    color: #0c4a6e;
}

/* Small Business Administration / Planning Box */
.planning-warning-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #3b82f6;
    border-radius: 12px;
    padding: 28px 30px;
    margin-top: 45px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.planning-warning-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.planning-warning-box h4 i {
    color: #3b82f6;
}

.planning-warning-box p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
}

/* Service Pillars (6 Areas) */
.service-pillar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 26px;
    height: 100%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
    border-color: #cbd5e1;
}

.pillar-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(243, 101, 34, 0.12) 0%, rgba(243, 101, 34, 0.22) 100%);
    color: #f36522;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.35;
}

.pillar-desc {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Growth Drivers Cards (4 Areas) */
.dep-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px 24px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.dep-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.dep-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.dep-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(243, 101, 34, 0.1);
    color: #f36522;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.dep-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.dep-desc {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

/* Process Step Timeline Cards (7 Steps) */
.process-step-card {
    display: flex;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
    align-items: flex-start;
}

.process-step-card:hover {
    border-color: #cbd5e1;
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.step-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f36522 0%, #ff7b3d 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(243, 101, 34, 0.3);
}

.step-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Audience Cards (4 Groups) */
.audience-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 22px;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.audience-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(243, 101, 34, 0.12) 0%, rgba(243, 101, 34, 0.22) 100%);
    color: #f36522;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.audience-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.audience-card p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Deliverables Box */
.deliverables-box {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 44px 38px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}

.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.02rem;
    color: #334155;
    font-weight: 500;
    margin-bottom: 14px;
}

.deliverable-item i {
    color: #10b981;
    font-size: 1.25rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Why Choose Features */
.why-choose-feature {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 24px;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.why-choose-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.why-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(243, 101, 34, 0.12) 0%, rgba(243, 101, 34, 0.22) 100%);
    color: #f36522;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.why-choose-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.35;
}

.why-choose-feature p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

/* Trust Proof & Credentials Row */
.trust-proof-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 28px;
    margin-top: 35px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.trust-proof-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.5;
}

.trust-proof-item i {
    font-size: 1.35rem;
    color: #f36522;
    flex-shrink: 0;
}

/* About Focus Card */
.about-focus-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 44px 38px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

/* Related Services Cards (9 Items) */
.related-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.related-service-header h4 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.35;
}

.related-service-header p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 18px;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.94rem;
    color: #f36522 !important;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.learn-more-link:hover {
    gap: 12px;
    color: #d44d0d !important;
}

/* FAQ Section & Accordion */
.faq-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: border-color 0.2s ease;
}

.faq-item-card:hover {
    border-color: #cbd5e1;
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    gap: 14px;
}

.faq-question-btn h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.faq-icon-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.faq-question-btn:not(.collapsed) .faq-icon-arrow {
    transform: rotate(180deg);
    background: #f36522;
    color: #ffffff;
}

.faq-answer-body {
    padding: 0 26px 24px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #475569;
}

/* Final Bottom CTA Banner */
.coaching-bottom-cta {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 85px 0;
    position: relative;
    overflow: hidden;
}

.coaching-bottom-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(243, 101, 34, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.coaching-bottom-cta .container {
    position: relative;
    z-index: 1;
}

.coaching-bottom-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.coaching-bottom-cta p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.cta-phone-callout {
    font-size: 1.05rem;
    color: #cbd5e1;
}

.cta-phone-link {
    color: #ff9160;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cta-phone-link:hover {
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    .coaching-hero {
        padding: 60px 0 50px;
    }
    .section-h2-title {
        font-size: 1.85rem;
    }
    .content-section {
        padding: 60px 0;
    }
    .deliverables-box,
    .about-focus-card {
        padding: 30px 22px;
    }
}

@media (max-width: 575.98px) {
    .hero-main-title {
        font-size: 2rem;
    }
    .hero-subhead {
        font-size: 1.15rem;
    }
    .hero-stats-row {
        grid-template-columns: 1fr;
    }
    .btn-brand-primary,
    .btn-brand-ghost {
        width: 100%;
        text-align: center;
    }
    .process-step-card {
        flex-direction: column;
        gap: 12px;
    }
    .section-h2-title {
        font-size: 1.65rem;
    }
}
