/* ! [Rehab & Recovery Page] CSS code starts here */

/* ! [Rehabilitation Programs Section] CSS code starts here */
.rehab-programs {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
}

.rehab-programs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

.rehab-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;
}

.rehab-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.rehab-header h2 .highlight {
    color: #1a5276;
}

.rehab-header p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
}

.rehab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.rehab-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
}

.rehab-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.rehab-icon {
    width: 55px;
    height: 55px;
    background: #1a5276;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rehab-icon i {
    font-size: 1.3rem;
    color: #ffffff;
}

.rehab-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 8px;
}

.rehab-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
}

/* ! [Rehabilitation Programs Section] CSS code ends here */

/* ! [Why Choose Us Section] CSS code starts here */
.why-choose-us {
    background: #e8f4fd;
    padding: 80px 0;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.why-choose-left h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-choose-left h2 .highlight {
    color: #1a5276;
}

.why-choose-left p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 30px;
}

.why-choose-left .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a5276;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.why-choose-left .cta-btn:hover {
    background: #154360;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 82, 118, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-item i {
    color: #1a5276;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
}

/* ! [Why Choose Us Section] CSS code ends here */

/* ! [Trusted CTA Section] CSS code starts here */
.trusted-cta {
    background: #f8fafc;
    padding: 80px 0;
}

.trusted-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

.trusted-cta-box {
    background: linear-gradient(135deg, #1a5276 0%, #154360 50%, #0e2f44 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
}

.shield-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatUpDown 3s ease-in-out infinite;
}

.shield-icon i {
    font-size: 2.5rem;
    color: #e8a54b;
}

/* Floating Animation */
@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.trusted-cta-box h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.trusted-cta-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-btn-light {
    display: inline-block;
    background: #e8a54b;
    color: #1a365d;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-light:hover {
    background: #d4963f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 165, 75, 0.4);
}

/* ! [Trusted CTA Section] CSS code ends here */

/* ! [Recovery Journey Section] CSS code starts here */
.recovery-journey {
    background: #e8f4fd;
    padding: 80px 0;
}

.recovery-journey .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

.journey-header {
    text-align: center;
    margin-bottom: 50px;
}

.journey-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.journey-header h2 .highlight {
    color: #1a5276;
}

.journey-header p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.journey-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;
}

.journey-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.journey-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
}

.journey-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);
}

/* ! [Recovery Journey Section] CSS code ends here */

/* ! [Modern Equipment Section] CSS code starts here */
.modern-equipment {
    background: #ffffff;
    padding: 80px 0;
}

.modern-equipment .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%;
}

.equipment-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.equipment-item {
    background: #f1f5f9;
    padding: 18px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.equipment-item i {
    color: #1a5276;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.equipment-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
}

.equipment-right h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.equipment-right h2 .highlight {
    color: #1a5276;
}

.equipment-right p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 30px;
}

.equipment-right .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a5276;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.equipment-right .cta-btn:hover {
    background: #154360;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 82, 118, 0.3);
}

/* ! [Modern Equipment Section] CSS code ends here */

/* ! [Rehab & Recovery Page] CSS code ends here */


/* ! Responsive CSS code starts here */

@media (max-width: 900px) {

    /* ? [Why Choose Us] Responsive CSS starts here */
    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-left {
        text-align: center;
    }

    /* ? [Why Choose Us] Responsive CSS ends here */

    /* ? [Recovery Journey] Responsive CSS starts here */
    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    /* ? [Recovery Journey] Responsive CSS ends here */

    /* ? [Modern Equipment] Responsive CSS starts here */
    .equipment-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .equipment-right {
        text-align: center;
        order: -1;
    }

    /* ? [Modern Equipment] Responsive CSS ends here */
}

@media (max-width: 768px) {

    /* ? [Rehab Programs] Responsive CSS starts here */
    .rehab-programs {
        padding: 60px 0;
    }

    .rehab-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rehab-card {
        padding: 24px;
    }

    .rehab-icon {
        width: 50px;
        height: 50px;
    }

    .rehab-icon i {
        font-size: 1.2rem;
    }

    /* ? [Rehab Programs] Responsive CSS ends here */

    /* ? [Trusted CTA] Responsive CSS starts here */
    .trusted-cta {
        padding: 60px 0;
    }

    .trusted-cta-box {
        padding: 50px 24px;
        border-radius: 16px;
    }

    .shield-icon {
        width: 50px;
        height: 50px;
    }

    .shield-icon i {
        font-size: 2rem;
    }

    /* ? [Trusted CTA] Responsive CSS ends here */
}

@media (max-width: 600px) {

    /* ? [Why Choose Us] Responsive CSS starts here */
    .why-choose-us {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-item {
        padding: 16px 18px;
    }

    /* ? [Why Choose Us] Responsive CSS ends here */

    /* ? [Recovery Journey] Responsive CSS starts here */
    .recovery-journey {
        padding: 60px 0;
    }

    .journey-steps {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .journey-step h3 {
        font-size: 1rem;
    }

    .journey-step p {
        font-size: 0.85rem;
    }

    .cta-btn-dark {
        padding: 14px 28px;
    }

    /* ? [Recovery Journey] Responsive CSS ends here */

    /* ? [Modern Equipment] Responsive CSS starts here */
    .modern-equipment {
        padding: 60px 0;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .equipment-item {
        padding: 16px 18px;
    }

    /* ? [Modern Equipment] Responsive CSS ends here */
}

@media (max-width: 480px) {

    /* ? [Rehab Programs] Responsive CSS starts here */
    .rehab-header {
        margin-bottom: 30px;
    }

    .rehab-card {
        padding: 20px;
        gap: 16px;
    }

    .rehab-icon {
        width: 45px;
        height: 45px;
    }

    .rehab-content h3 {
        font-size: 1rem;
    }

    .rehab-content p {
        font-size: 0.85rem;
    }

    /* ? [Rehab Programs] Responsive CSS ends here */
}

/* ! Responsive CSS code ends here */