/* Forms, Templates and Resources Page Styles */

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

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

.resources-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;
}

.resources-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;
}

.resources-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%, #ff9160 50%, #3b82f6 100%);
}

.snapshot-header {
    margin-bottom: 22px;
}

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

.snapshot-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

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

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

.snapshot-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.snapshot-checklist li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(243, 101, 34, 0.3);
    transform: translateX(3px);
}

.check-icon-wrap {
    width: 26px;
    height: 26px;
    background: rgba(243, 101, 34, 0.2);
    border: 1px solid rgba(243, 101, 34, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9160;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.check-content strong {
    font-size: 0.94rem;
    font-weight: 600;
    color: #f1f5f9;
}

.check-content span {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.45;
}

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

.snapshot-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
}

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

/* Brand Buttons */
.btn-brand-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f36522;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 14px rgba(243, 101, 34, 0.35);
}

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

.btn-brand-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #e2e8f0 !important;
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

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

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

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

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

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

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

.section-h2-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 18px;
}

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

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

/* Highlight Box (PAS training / notes) */
.highlight-info-box {
    background: #f1f5f9;
    border-left: 4px solid #f36522;
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 28px 0 10px;
}

.highlight-info-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 0;
}

.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: #d85416;
}

/* Service Pillars (6 Cards) */
.service-pillar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 30px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

.pillar-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #f36522 0%, #ff9160 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 10px;
    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;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Document Work Pieces (4 Cards) */
.dep-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px 22px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
}

.dep-card:hover {
    border-color: #f36522;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -4px rgba(243, 101, 34, 0.12);
}

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

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

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

.dep-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
}

/* Callout Box (Warning/Planning/Survey Info) */
.survey-info-callout-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 5px solid #3b82f6;
    border-radius: 10px;
    padding: 24px 28px;
    margin-top: 36px;
}

.survey-info-callout-box h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.survey-info-callout-box p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #1e3a8a;
    margin-bottom: 0;
}

/* Process Steps (7 Steps) */
.process-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

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

.step-badge {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ff9160;
    border: 1px solid rgba(243, 101, 34, 0.3);
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

/* Deliverables Box */
.deliverables-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 38px 34px;
    box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.06);
}

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.deliverable-item i {
    color: #f36522;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.deliverable-item span {
    font-size: 1.02rem;
    color: #334155;
    font-weight: 500;
}

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

.audience-card:hover {
    border-color: #f36522;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -4px rgba(243, 101, 34, 0.12);
}

.audience-icon {
    width: 48px;
    height: 48px;
    background: rgba(243, 101, 34, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f36522;
    font-size: 1.3rem;
}

.audience-card h4 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

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

/* Why Choose Features */
.why-choose-feature {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

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

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

.why-choose-feature h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

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

.trust-proof-box {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.trust-proof-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.trust-proof-item strong {
    color: #1e293b;
    font-size: 1.02rem;
}

.trust-proof-item span {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* About 123 Consulting Card */
.about-focus-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 42px 36px;
    box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.06);
}

/* Related Service Cards (9 Cards) */
.related-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.related-service-card:hover {
    border-color: #f36522;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -4px rgba(243, 101, 34, 0.12);
}

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

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

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

.learn-more-link:hover {
    color: #d85416;
    gap: 9px;
}

/* FAQ Accordion */
.faq-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.25s ease;
}

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

.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

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

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

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

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

/* Bottom CTA Banner */
.resources-bottom-cta {
    background: linear-gradient(135deg, #1e293b 0%, #2c3e50 50%, #1e3a5f 100%);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.resources-bottom-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(243, 101, 34, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

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

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

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

.cta-phone-callout {
    font-size: 1.02rem;
    color: #e2e8f0;
}

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

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

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .hero-main-title {
        font-size: 2.5rem;
    }

    .resources-hero {
        padding: 60px 0 50px;
    }

    .hero-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .section-h2-title {
        font-size: 1.85rem;
    }

    .resources-bottom-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-main-title {
        font-size: 2.1rem;
    }

    .hero-subhead {
        font-size: 1.15rem;
    }

    .hero-stats-row {
        grid-template-columns: 1fr;
    }

    .deliverables-box {
        padding: 26px 20px;
    }

    .about-focus-card {
        padding: 26px 20px;
    }

    .section-h2-title {
        font-size: 1.6rem;
    }

    .resources-bottom-cta h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.85rem;
    }

    .btn-brand-primary,
    .btn-brand-ghost,
    .btn-brand-outline {
        width: 100%;
        justify-content: center;
    }
}
