﻿/* =========================================================
   CHECKUP PAGE
========================================================= */

.checkup_hero_area {
    position: relative;
    overflow: hidden;
    padding-top: 135px;
    padding-bottom: 40px;
    background: #f8f6ff;
}

    .checkup_hero_area .breadcrumb_shap {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        opacity: .35;
        z-index: 0;
    }

    .checkup_hero_area .container {
        position: relative;
        z-index: 2;
    }

/* =========================================================
   HERO
========================================================= */

.checkup_hero_content {
    max-width: 950px;
    margin: 0 auto;
}

    .checkup_hero_content h1 {
        max-width: 900px;
        margin: 0 auto 24px;
        color: #3f4656;
    }

    .checkup_hero_content p {
        max-width: 760px;
        margin: 0 auto 30px;
        color: #6b7280;
    }

.checkup_hero_btn {
    min-width: 240px;
    height: 58px;
    line-height: 58px;
    padding: 0 34px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
}

/* =========================================================
   PROBLEM CARDS
========================================================= */

.checkup_problem_row {
    margin-top: 110px;
    margin-bottom: 120px;
}

.checkup_card {
    border-radius: 26px;
    transition: all .25s ease;
    overflow: hidden;
    background: #fff;
    border: none;
}

    .checkup_card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(0,0,0,.12) !important;
    }

    .checkup_card h4 {
        font-size: 24px;
        font-weight: 600;
        line-height: 1.4;
        color: #3f4656;
    }

    .checkup_card p {
        line-height: 1.9;
        font-size: 15px;
        color: #6b7280;
    }

/* =========================================================
   STEPS
========================================================= */

.checkup_steps_area {
    padding-bottom: 0;
    margin-bottom: 0;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d7ff9 0%, #5f8cff 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(45,127,249,.25);
}

/* =========================================================
   TRUST AREA
========================================================= */

.trust_area {
    background: #fff;
    padding: 100px 0 60px;
}

.trust_box {
    background: #fff;
    border-radius: 32px;
    padding: 55px;
    box-shadow: 0 25px 70px rgba(0,0,0,.06);
}

.trust_badge {
    display: inline-block;
    background: rgba(45,127,249,.10);
    color: #2d7ff9;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.trust_intro {
    line-height: 1.9;
    color: #6b7280;
}

.trust_list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.trust_item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

    .trust_item i {
        color: #2d7ff9;
        margin-top: 5px;
        font-size: 17px;
        flex: 0 0 auto;
    }

    .trust_item span {
        flex: 1;
    }

.trust_stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust_stat_card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
}

    .trust_stat_card h3 {
        font-size: 42px;
        font-weight: 700;
        color: #2d7ff9;
        margin-bottom: 10px;
    }

    .trust_stat_card p {
        margin: 0;
        color: #666;
        font-size: 15px;
    }

/* =========================================================
   FORM
========================================================= */

.checkup_form_area {
    background: #fff;
    padding: 60px 0 40px;
}

.checkup_form_box {
    background: #fff;
    padding: 55px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,.08);
}

.checkup_input {
    height: 60px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 0 22px;
    font-size: 15px;
    transition: all .2s ease;
    box-shadow: none !important;
}

textarea.checkup_input {
    height: auto;
    padding-top: 18px;
}

.checkup_input:focus {
    border-color: #2d7ff9;
    background: #fff;
}

.checkup_submit_btn {
    height: 60px;
    padding: 0 46px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
}

/* =========================================================
   WHATSAPP
========================================================= */

.checkup_whatsapp_area {
    background: #fff;
    padding: 50px 0 120px;
}

    .checkup_whatsapp_area h3 {
        font-size: 30px;
        font-weight: 700;
        color: #3f4656;
    }

.checkup_whatsapp_btn {
    border-radius: 18px;
    padding: 18px 38px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(37,211,102,.20);
}

    .checkup_whatsapp_btn i {
        margin-right: 10px;
    }

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .checkup_hero_area {
        padding-top: 105px;
        padding-bottom: 80px;
    }

    .checkup_hero_content h1 {
        font-size: 38px !important;
        line-height: 1.3 !important;
    }

    .checkup_problem_row {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .trust_area {
        padding: 80px 0 40px;
    }

    .trust_box {
        padding: 40px 25px;
    }

    .trust_stats {
        margin-top: 40px;
    }

    .checkup_form_box {
        padding: 40px 25px;
    }
}

@media (max-width: 767px) {

    .checkup_hero_content h1 {
        font-size: 32px !important;
    }

    .checkup_hero_btn {
        width: 100%;
        max-width: 320px;
    }

    .checkup_card {
        border-radius: 22px;
    }

        .checkup_card h4 {
            font-size: 22px;
        }

    .step-circle {
        width: 58px;
        height: 58px;
        font-size: 20px;
    }

    .trust_stat_card h3 {
        font-size: 34px;
    }

    .checkup_whatsapp_btn {
        width: 100%;
        max-width: 340px;
    }
}

.trust_intro {
    line-height: 1.9;
    color: #6b7280;
    margin-bottom: 35px;
}

.trust_list {
    margin-top: 10px;
}