/* Caregiver Recruiting and HR Page Styles */

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

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

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

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

.recruiting-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-experience-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 22px;
    border-radius: 12px;
    margin: 15px 0 28px;
    color: #ffffff;
    font-size: 0.98rem;
}

.hero-experience-pill i {
    color: #f36522;
    font-size: 1.3rem;
}

/* 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%, #10b981 100%);
}

.snapshot-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
    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: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.35);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

.btn-brand-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #f36522 !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-brand-light:hover {
    background: transparent;
    color: #ffffff !important;
    transform: translateY(-2px);
}

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

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

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

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

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

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

/* Highlight Box */
.highlight-info-box {
    background: #ffffff;
    border-left: 5px solid #f36522;
    border-radius: 0 16px 16px 0;
    padding: 28px 32px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    margin: 25px 0 35px;
}

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

/* Service Pillars Grid */
.service-pillar-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 32px 26px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

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

.pillar-number {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: linear-gradient(135deg, #f36522 0%, #ff8650 100%);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

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

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

/* Dependencies / Pillars of Caregiver HR */
.dep-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

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

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

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

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

.dep-desc {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 0;
}

/* Legal Compliance Callout */
.legal-warning-box {
    background: linear-gradient(135deg, #fff9f5 0%, #fff 100%);
    border: 1px solid #fed7aa;
    border-left: 5px solid #f36522;
    border-radius: 14px;
    padding: 30px;
    margin: 35px 0 25px;
}

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

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

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

.process-step-card:hover {
    border-color: #f36522;
    box-shadow: 0 8px 24px rgba(243, 101, 34, 0.08);
    transform: translateX(4px);
}

.step-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2c3e50;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.process-step-card:hover .step-badge {
    background: #f36522;
}

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

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

/* Who This Service Is For */
.audience-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 28px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: #38bdf8;
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.audience-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.12);
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

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

/* Deliverables Section */
.deliverables-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.deliverable-item:last-child {
    border-bottom: none;
}

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

.deliverable-item span {
    font-size: 1.02rem;
    line-height: 1.6;
    color: #334155;
}

/* Why Choose Us Features */
.why-choose-feature {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.why-choose-feature:hover {
    border-color: #f36522;
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
}

.why-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f36522 0%, #ff8650 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

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

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

/* About Box */
.about-focus-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 42px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.related-service-card:hover {
    transform: translateY(-6px);
    border-color: #f36522;
    box-shadow: 0 16px 30px rgba(243, 101, 34, 0.1);
}

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

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

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

.learn-more-link:hover {
    gap: 12px;
    color: #d84f0e;
}

/* FAQ Accordion */
.faq-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.faq-question-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
}

.faq-question-btn h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 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.9rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-question-btn[aria-expanded="true"] .faq-icon-arrow {
    transform: rotate(180deg);
    background: #f36522;
    color: #ffffff;
}

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

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

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

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

.recruiting-bottom-cta p {
    color: #cbd5e1;
    font-size: 1.12rem;
    line-height: 1.75;
    margin-bottom: 25px;
}

.cta-phone-callout {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #94a3b8;
    font-size: 1.05rem;
}

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

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

/* Inline contextual link styling */
.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: #d84f0e;
}

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

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

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

    .process-step-card {
        padding: 20px;
        gap: 16px;
    }
}

@media (max-width: 767.98px) {
    .recruiting-hero {
        padding: 60px 0 50px;
    }

    .hero-main-title {
        font-size: 2.1rem;
    }

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

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

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

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

    .faq-question-btn {
        padding: 18px 20px;
        font-size: 1.05rem;
    }

    .faq-answer-body {
        padding: 0 20px 20px;
    }

    .btn-brand-primary,
    .btn-brand-outline,
    .btn-brand-light {
        width: 100%;
        text-align: center;
    }
}
