/* ! [Home Care Page] CSS code starts here */

/* ! [Home Care Hero Section] CSS code starts here */
.homecare-hero {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
}

.homecare-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

.homecare-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: #e8f4fd;
    color: #1a5276;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.homecare-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.homecare-header h2 .highlight {
    color: #1a5276;
}

.homecare-header p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.homecare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.homecare-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
}

.homecare-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.homecare-icon {
    width: 55px;
    height: 55px;
    background: #1a5276;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.homecare-icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

.homecare-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.homecare-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
}

/* ! [Home Care Hero Section] CSS code ends here */

/* ! [Flexible Care Schedules Section] CSS code starts here */
.care-schedules {
    background: #e8f4fd;
    padding: 80px 0;
}

.care-schedules .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

.schedules-header {
    text-align: center;
    margin-bottom: 50px;
}

.schedules-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.schedules-header h2 .highlight {
    color: #1a5276;
}

.schedules-header p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
}

.schedules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.schedule-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.schedule-icon {
    width: 55px;
    height: 55px;
    background: #1a5276;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.schedule-icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

.schedule-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 12px;
}

.schedule-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.schedule-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 10px;
}

.schedule-features li:last-child {
    margin-bottom: 0;
}

.schedule-features li i {
    color: #1a5276;
    font-size: 0.95rem;
}

/* ! [Flexible Care Schedules Section] CSS code ends here */

/* ! [How Home Care Works Section] CSS code starts here */
.homecare-process {
    background: #ffffff;
    padding: 80px 0;
}

.homecare-process .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.process-header h2 .highlight {
    color: #1a5276;
}

.process-header p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 55px;
    height: 55px;
    background: #1a5276;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
}

.process-cta {
    text-align: center;
}

.cta-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a5276;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-dark:hover {
    background: #154360;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 82, 118, 0.3);
}

/* ! [How Home Care Works Section] CSS code ends here */

/* ! [Trusted Caregivers Section] CSS code starts here */
.trusted-caregivers {
    background: #f8fafc;
    padding: 80px 0;
}

.trusted-caregivers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

.caregivers-header {
    text-align: center;
    margin-bottom: 50px;
}

.caregivers-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.caregivers-header h2 .highlight {
    color: #1a5276;
}

.caregivers-header p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
}

.caregivers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.caregiver-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.caregiver-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.caregiver-icon {
    width: 60px;
    height: 60px;
    background: #e8a54b;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.caregiver-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.caregiver-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.caregiver-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
}

/* ! [Trusted Caregivers Section] CSS code ends here */

/* ! [CTA Section] CSS code starts here */
.homecare-cta {
    background: linear-gradient(135deg, #1a5276 0%, #154360 50%, #0e2f44 100%);
    padding: 80px 0;
    text-align: center;
}

.homecare-cta .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3%;
}

.homecare-cta h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.homecare-cta p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8a54b;
    color: #1a365d;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    background: #d4953f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 165, 75, 0.4);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* ! [CTA Section] CSS code ends here */

/* ! [Home Care Page] CSS code ends here */


/* ! Responsive CSS code starts here */

@media (max-width: 900px) {

    /* ? [Home Care Hero] Responsive CSS starts here */
    .homecare-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* ? [Home Care Hero] Responsive CSS ends here */

    /* ? [Care Schedules] Responsive CSS starts here */
    .schedules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ? [Care Schedules] Responsive CSS ends here */

    /* ? [Process] Responsive CSS starts here */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    /* ? [Process] Responsive CSS ends here */

    /* ? [Caregivers] Responsive CSS starts here */
    .caregivers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* ? [Caregivers] Responsive CSS ends here */
}

@media (max-width: 600px) {

    /* ? [Home Care Hero] Responsive CSS starts here */
    .homecare-hero {
        padding: 60px 0;
    }

    .homecare-header {
        margin-bottom: 35px;
    }

    .homecare-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .homecare-card {
        padding: 24px 20px;
    }

    .homecare-icon {
        width: 50px;
        height: 50px;
    }

    .homecare-icon i {
        font-size: 1.2rem;
    }

    .homecare-card h3 {
        font-size: 1rem;
    }

    .homecare-card p {
        font-size: 0.85rem;
    }

    /* ? [Home Care Hero] Responsive CSS ends here */

    /* ? [Care Schedules] Responsive CSS starts here */
    .care-schedules {
        padding: 60px 0;
    }

    .schedules-header {
        margin-bottom: 35px;
    }

    .schedule-card {
        padding: 24px 20px;
    }

    .schedule-icon {
        width: 50px;
        height: 50px;
    }

    .schedule-icon i {
        font-size: 1.2rem;
    }

    .schedule-card h3 {
        font-size: 1.05rem;
    }

    .schedule-card p {
        font-size: 0.85rem;
    }

    .schedule-features li {
        font-size: 0.85rem;
    }

    /* ? [Care Schedules] Responsive CSS ends here */

    /* ? [Process] Responsive CSS starts here */
    .homecare-process {
        padding: 60px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .process-step h3 {
        font-size: 1rem;
    }

    .process-step p {
        font-size: 0.85rem;
    }

    .cta-btn-dark {
        padding: 14px 28px;
    }

    /* ? [Process] Responsive CSS ends here */

    /* ? [Caregivers] Responsive CSS starts here */
    .trusted-caregivers {
        padding: 60px 0;
    }

    .caregivers-header {
        margin-bottom: 35px;
    }

    .caregivers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .caregiver-card {
        padding: 24px 20px;
    }

    .caregiver-icon {
        width: 55px;
        height: 55px;
    }

    .caregiver-icon i {
        font-size: 1.3rem;
    }

    .caregiver-card h3 {
        font-size: 1rem;
    }

    .caregiver-card p {
        font-size: 0.85rem;
    }

    /* ? [Caregivers] Responsive CSS ends here */

    /* ? [CTA] Responsive CSS starts here */
    .homecare-cta {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 28px;
    }

    /* ? [CTA] Responsive CSS ends here */
}

/* ! Responsive CSS code ends here */