/* =========================================================
   TGY MEDICO - MAIN WEBSITE
========================================================= */
:root {

    /* =========================
       TGY MEDICO BRAND COLORS
    ========================== */

    --tgy-primary: #078A08;
    --tgy-primary-dark: #056B05;

    --tgy-dark: #222426;
    --tgy-text: #52606d;

    --tgy-light: #F5F8F6;
    --tgy-border: #DDE5DF;

    --tgy-white: #FFFFFF;

    /* Accent */
    --tgy-red: #E31B23;

}


* {
    box-sizing: border-box;
}


body {

    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--tgy-dark);

    background: #ffffff;

}


a {

    text-decoration: none;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: #ffffff;

    border-bottom: 1px solid var(--tgy-border);

}


.navbar {

    min-height: 76px;

}


.tgy-logo {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 20px;

    font-weight: 800;

    color: var(--tgy-dark);

}


.tgy-logo strong {

    color: var(--tgy-primary);

}


.logo-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #eaf2ff;

    color: var(--tgy-primary);

    font-size: 21px;

}


.nav-link {

    color: #40566d !important;

    font-weight: 500;

    padding: 10px 14px !important;

}


.nav-link:hover {

    color: var(--tgy-primary) !important;

}


.header-btn {

    border-radius: 9px;

    padding: 11px 18px;

    font-weight: 600;

}



/* =========================================================
   HERO
========================================================= */

.hero-section {

    background:

        linear-gradient(
            120deg,
            #f4f8ff 0%,
            #ffffff 65%
        );

    padding: 85px 0 75px;

}


.hero-content {

    max-width: 650px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    background: #eaf2ff;

    color: var(--tgy-primary);

    border-radius: 50px;

    padding: 8px 15px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;

}


.hero-title {

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.08;

    font-weight: 800;

    margin-bottom: 22px;

}


.hero-title span {

    color: var(--tgy-primary);

}


.hero-description {

    font-size: 18px;

    line-height: 1.7;

    color: var(--tgy-text);

    max-width: 580px;

    margin-bottom: 30px;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.hero-primary-btn {

    background: var(--tgy-primary);

    border: none;

    border-radius: 10px;

    padding: 13px 22px;

    font-weight: 600;

}


.hero-primary-btn:hover {

    background: var(--tgy-primary-dark);

}


.hero-secondary-btn {

    border: 1px solid #ccd6e0;

    background: #ffffff;

    color: var(--tgy-dark);

    border-radius: 10px;

    padding: 13px 22px;

    font-weight: 600;

}


.hero-secondary-btn:hover {

    border-color: var(--tgy-primary);

    color: var(--tgy-primary);

}


/* HERO VISUAL */

.hero-visual {

    position: relative;

}


.hero-card {

    background: #ffffff;

    border-radius: 24px;

    padding: 35px;

    box-shadow:
        0 20px 60px rgba(16, 42, 67, 0.12);

    border: 1px solid #edf1f6;

}


.hero-medical-icon {

    width: 90px;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eaf2ff;

    color: var(--tgy-primary);

    border-radius: 50%;

    font-size: 44px;

    margin: 0 auto 20px;

}


.hero-card h3 {

    text-align: center;

    font-weight: 700;

}


.hero-card p {

    text-align: center;

    color: var(--tgy-text);

}



/* =========================================================
   QUICK SERVICES
========================================================= */

.quick-services {

    margin-top: -35px;

    position: relative;

    z-index: 5;

}


.quick-card {

    background: #ffffff;

    border: 1px solid var(--tgy-border);

    border-radius: 14px;

    padding: 24px;

    height: 100%;

    transition: 0.25s ease;

}


.quick-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 12px 35px rgba(16, 42, 67, 0.09);

}


.quick-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #eaf2ff;

    color: var(--tgy-primary);

    font-size: 22px;

    margin-bottom: 15px;

}


.quick-card h5 {

    font-weight: 700;

    margin-bottom: 7px;

}


.quick-card p {

    margin: 0;

    color: var(--tgy-text);

    font-size: 14px;

}



/* =========================================================
   SECTION COMMON
========================================================= */

.section {

    padding: 85px 0;

}


.section-light {

    background: var(--tgy-light);

}


.section-heading {

    text-align: center;

    max-width: 680px;

    margin: 0 auto 45px;

}


.section-heading h2 {

    font-size: 36px;

    font-weight: 800;

    margin-bottom: 12px;

}


.section-heading p {

    color: var(--tgy-text);

    line-height: 1.7;

}



/* =========================================================
   DOCTOR CARD
========================================================= */

.doctor-card {

    background: #ffffff;

    border: 1px solid var(--tgy-border);

    border-radius: 16px;

    overflow: hidden;

    height: 100%;

    transition: 0.25s ease;

}


.doctor-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(16, 42, 67, 0.10);

}


.doctor-image-wrap {

    background: #eef4ff;

    height: 230px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.doctor-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.doctor-placeholder {

    font-size: 80px;

    color: #9bbcf8;

}


.doctor-info {

    padding: 22px;

}


.doctor-info h5 {

    font-weight: 700;

    margin-bottom: 7px;

}


.doctor-specialization {

    color: var(--tgy-primary);

    font-weight: 600;

    font-size: 14px;

    margin-bottom: 8px;

}


.doctor-qualification {

    color: var(--tgy-text);

    font-size: 14px;

}



/* =========================================================
   TEST SECTION
========================================================= */

.test-card {

    background: #ffffff;

    border: 1px solid var(--tgy-border);

    border-radius: 15px;

    padding: 24px;

    height: 100%;

}


.test-icon {

    width: 50px;

    height: 50px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eef8f3;

    color: #198754;

    font-size: 23px;

    margin-bottom: 17px;

}


.test-card h5 {

    font-weight: 700;

}


.test-card p {

    color: var(--tgy-text);

    font-size: 14px;

}



/* =========================================================
   HOW IT WORKS
========================================================= */

.step-card {

    text-align: center;

    padding: 20px;

}


.step-number {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 18px;

    background: var(--tgy-primary);

    color: #ffffff;

    font-size: 22px;

    font-weight: 700;

}


.step-card h5 {

    font-weight: 700;

}


.step-card p {

    color: var(--tgy-text);

    font-size: 14px;

    line-height: 1.6;

}



/* =========================================================
   WHY TGY
========================================================= */

.feature-box {

    display: flex;

    gap: 16px;

    margin-bottom: 25px;

}


.feature-icon {

    min-width: 48px;

    width: 48px;

    height: 48px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eaf2ff;

    color: var(--tgy-primary);

    font-size: 21px;

}


.feature-box h5 {

    font-weight: 700;

    margin-bottom: 5px;

}


.feature-box p {

    color: var(--tgy-text);

    margin: 0;

    line-height: 1.6;

}



/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 35px 0;

}


.cta-box {

    background: var(--tgy-primary);

    color: #ffffff;

    border-radius: 18px;

    padding: 35px 40px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

}


.cta-box h2 {

    font-weight: 800;

    margin-bottom: 5px;

}


.cta-box p {

    margin: 0;

    opacity: 0.9;

}



/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: #102a43;

    color: #ffffff;

    padding: 65px 0 20px;

}


.footer-logo {

    display: inline-block;

    color: #ffffff;

    font-size: 21px;

    font-weight: 800;

    margin-bottom: 18px;

}


.footer-logo i {

    color: #7fb0ff;

}


.footer-text {

    color: #c5d1dd;

    line-height: 1.7;

    max-width: 350px;

}


.site-footer h5 {

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 18px;

}


.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer-links li {

    margin-bottom: 10px;

    color: #c5d1dd;

    font-size: 14px;

}


.footer-links a {

    color: #c5d1dd;

}


.footer-links a:hover {

    color: #ffffff;

}


.footer-contact p {

    color: #c5d1dd;

    font-size: 14px;

    margin-bottom: 12px;

}


.footer-contact i {

    width: 22px;

    color: #7fb0ff;

}


.site-footer hr {

    border-color: rgba(255,255,255,0.15);

    margin: 35px 0 20px;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 15px;

    color: #9fb0c0;

    font-size: 13px;

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .hero-section {

        padding: 60px 0;

    }


    .hero-visual {

        margin-top: 40px;

    }


    .quick-services {

        margin-top: 25px;

    }

}


@media (max-width: 767px) {

    .section {

        padding: 60px 0;

    }


    .section-heading h2 {

        font-size: 29px;

    }


    .hero-title {

        font-size: 40px;

    }


    .hero-description {

        font-size: 16px;

    }


    .cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 28px;

    }


    .footer-bottom {

        flex-direction: column;

    }

}


    /*
    |--------------------------------------------------------------------------
    | Success Page
    |--------------------------------------------------------------------------
    */

    .success-page {

        min-height: 75vh;

        display: flex;

        align-items: center;

        justify-content: center;

        padding: 60px 20px;

        background: #f8fafc;

    }


    .success-container {

        width: 100%;

        max-width: 720px;

        background: #ffffff;

        border-radius: 20px;

        padding: 45px;

        text-align: center;

        box-shadow:
            0 10px 35px rgba(
                0,
                0,
                0,
                0.08
            );

        border: 1px solid #edf0f5;

    }


    /*
    |--------------------------------------------------------------------------
    | Success Icon
    |--------------------------------------------------------------------------
    */

    .success-icon {

        width: 80px;

        height: 80px;

        margin: 0 auto 20px;

        border-radius: 50%;

        display: flex;

        align-items: center;

        justify-content: center;

        background: #e8f8ef;

        color: #159957;

        font-size: 42px;

    }


    .error-icon {

        background: #fff0f1;

        color: #dc3545;

    }


    /*
    |--------------------------------------------------------------------------
    | Heading
    |--------------------------------------------------------------------------
    */

    .success-container h1 {

        margin: 0 0 10px;

        color: #16385f;

        font-size: 32px;

        font-weight: 700;

    }


    .success-container > p {

        margin: 0 0 30px;

        color: #64748b;

        font-size: 16px;

    }


    /*
    |--------------------------------------------------------------------------
    | Booking Number
    |--------------------------------------------------------------------------
    */

    .booking-number {

        display: inline-block;

        padding: 10px 20px;

        margin-bottom: 30px;

        border-radius: 8px;

        background: #eef5ff;

        color: #1769ff;

        font-size: 15px;

        font-weight: 600;

    }


    /*
    |--------------------------------------------------------------------------
    | Appointment Details
    |--------------------------------------------------------------------------
    */

    .appointment-details {

        text-align: left;

        border: 1px solid #e5eaf0;

        border-radius: 14px;

        overflow: hidden;

        margin-bottom: 30px;

    }


    .detail-row {

        display: flex;

        justify-content: space-between;

        gap: 20px;

        padding: 15px 18px;

        border-bottom: 1px solid #edf0f4;

    }


    .detail-row:last-child {

        border-bottom: none;

    }


    .detail-label {

        color: #64748b;

        font-size: 14px;

    }


    .detail-value {

        color: #162f4d;

        font-size: 15px;

        font-weight: 600;

        text-align: right;

    }


    /*
    |--------------------------------------------------------------------------
    | Status
    |--------------------------------------------------------------------------
    */

    .status-badge {

        display: inline-block;

        padding: 6px 14px;

        border-radius: 30px;

        background: #fff4cc;

        color: #9a6700;

        font-size: 13px;

        font-weight: 600;

        text-transform: capitalize;

    }


    /*
    |--------------------------------------------------------------------------
    | Buttons
    |--------------------------------------------------------------------------
    */

    .success-actions {

        display: flex;

        justify-content: center;

        gap: 12px;

        flex-wrap: wrap;

    }


    .success-btn {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        gap: 8px;

        min-height: 46px;

        padding: 0 22px;

        border-radius: 8px;

        text-decoration: none;

        background: #1769ff;

        color: #ffffff;

        font-weight: 600;

        transition: 0.2s ease;

    }


    .success-btn:hover {

        background: #0d58df;

        color: #ffffff;

    }


    .secondary-btn {

        background: #ffffff;

        color: #16385f;

        border: 1px solid #d7dee8;

    }


    .secondary-btn:hover {

        background: #f5f7fa;

        color: #16385f;

    }


    /*
    |--------------------------------------------------------------------------
    | Mobile
    |--------------------------------------------------------------------------
    */

    @media (max-width: 600px) {

        .success-page {

            padding: 35px 15px;

        }


        .success-container {

            padding: 30px 20px;

        }


        .success-container h1 {

            font-size: 26px;

        }


        .detail-row {

            flex-direction: column;

            gap: 5px;

        }


        .detail-value {

            text-align: left;

        }

    }

    
/* =========================================================
   BOOKING PAGE
========================================================= */

.booking-page {

    background: #f5f8fc;

    padding:
        45px 20px 70px;

    min-height: 70vh;
}


.booking-container {

    max-width: 1050px;

    margin: auto;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.booking-title {

    text-align: center;

    margin-bottom: 35px;
}


.booking-title h1 {

    color: #183153;

    font-size: 34px;

    font-weight: 800;

    margin-bottom: 8px;
}


.booking-title p {

    color: #718096;

    margin: 0;

    font-size: 16px;
}


/* =========================================================
   DOCTOR SUMMARY
========================================================= */

.doctor-summary {

    background: #ffffff;

    border-radius: 18px;

    padding: 25px;

    margin-bottom: 25px;

    box-shadow:
        0 8px 30px rgba(24,49,83,.07);

    display: flex;

    align-items: center;

    gap: 22px;
}


.doctor-photo {

    width: 105px;

    height: 105px;

    border-radius: 15px;

    overflow: hidden;

    background: #eef3f9;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #183153;

    font-size: 45px;
}


.doctor-photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.doctor-info h2 {

    margin:
        0 0 7px;

    color: #183153;

    font-size: 24px;

    font-weight: 750;
}


.doctor-department {

    color: #008f14;

    font-weight: 600;

    margin-bottom: 6px;
}


.doctor-detail {

    color: #68778d;

    font-size: 14px;

    margin-top: 5px;
}


/* =========================================================
   BOOKING CARD
========================================================= */

.booking-card {

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(24,49,83,.08);

    overflow: hidden;
}


.booking-header {

    background: #183153;

    color: #ffffff;

    padding: 22px 28px;
}


.booking-header h3 {

    margin: 0;

    font-size: 21px;

    font-weight: 700;
}


.booking-header p {

    margin:
        5px 0 0;

    opacity: .8;

    font-size: 14px;
}


.booking-body {

    padding: 30px;
}


/* =========================================================
   NOTE
========================================================= */

.booking-note {

    background: #f0f7ff;

    border:
        1px solid #d9eaff;

    border-radius: 10px;

    padding:
        14px 16px;

    color: #49627d;

    font-size: 14px;

    margin-bottom: 25px;
}


/* =========================================================
   FORM
========================================================= */

.form-label {

    font-weight: 600;

    color: #263b59;

    margin-bottom: 8px;
}


.required {

    color: #dc3545;
}


.booking-form .form-control {

    min-height: 50px;

    border-radius: 9px;

    border:
        1px solid #d7dee8;

    padding:
        10px 14px;

    box-shadow: none;
}


.booking-form .form-control:focus {

    border-color: #183153;

    box-shadow:
        0 0 0 3px rgba(24,49,83,.08);
}


.booking-form textarea.form-control {

    min-height: 115px;

    resize: vertical;
}


/* =========================================================
   BUTTON
========================================================= */

.submit-btn {

    min-height: 52px;

    background: #183153;

    border-color: #183153;

    border-radius: 9px;

    font-weight: 700;

    padding:
        0 30px;
}


.submit-btn:hover {

    background: #10253f;

    border-color: #10253f;
}


.back-btn {

    min-height: 52px;

    border-radius: 9px;

    padding:
        0 25px;

    font-weight: 600;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .booking-page {

        padding:
            30px 14px 50px;
    }


    .booking-title h1 {

        font-size: 28px;
    }


    .doctor-summary {

        padding: 20px;

        align-items: flex-start;
    }


    .doctor-photo {

        width: 80px;

        height: 80px;

        font-size: 32px;
    }


    .doctor-info h2 {

        font-size: 19px;
    }


    .booking-body {

        padding: 20px;
    }


    .booking-buttons {

        flex-direction: column;
    }


    .booking-buttons a,
    .booking-buttons button {

        width: 100%;
    }

}


/* =========================================================
   PAGE HERO
========================================================= */

.doctors-page-hero {

    background:
        linear-gradient(
            120deg,
            #f1f6ff,
            #ffffff
        );

    padding: 65px 0 85px;

}


.doctors-page-heading {

    max-width: 720px;

    text-align: center;

    margin: auto;

}


.page-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    background: #eaf2ff;

    color: #1769ff;

    padding: 8px 15px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 18px;

}


.doctors-page-heading h1 {

    font-size: clamp(
        38px,
        5vw,
        55px
    );

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 18px;

}


.doctors-page-heading h1 span {

    color: #1769ff;

}


.doctors-page-heading p {

    color: #52606d;

    font-size: 17px;

    line-height: 1.7;

    margin: 0;

}



/* =========================================================
   FILTER
========================================================= */

.doctor-filter-section {

    margin-top: -38px;

    position: relative;

    z-index: 10;

}


.doctor-filter-card {

    background: #ffffff;

    border: 1px solid #e5eaf0;

    border-radius: 15px;

    padding: 25px;

    box-shadow:
        0 12px 35px rgba(
            16,
            42,
            67,
            0.08
        );

}


.doctor-filter-card .form-label {

    font-size: 14px;

    font-weight: 600;

    color: #243b53;

}


.doctor-filter-card .form-control,
.doctor-filter-card .form-select {

    min-height: 48px;

    border-radius: 9px;

    border-color: #d9e1ea;

}


.search-input {

    position: relative;

}


.search-input i {

    position: absolute;

    left: 15px;

    top: 50%;

    transform: translateY(-50%);

    color: #7b8794;

    z-index: 2;

}


.search-input .form-control {

    padding-left: 43px;

}


.filter-btn {

    min-height: 48px;

    border-radius: 9px;

    font-weight: 600;

}



/* =========================================================
   LIST
========================================================= */

.doctors-list-section {

    padding: 75px 0 90px;

    background: #f8fafc;

}


.doctor-results-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;

}


.doctor-results-header h2 {

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 4px;

}


.doctor-results-header p {

    margin: 0;

    color: #7b8794;

    font-size: 14px;

}



/* =========================================================
   DOCTOR CARD
========================================================= */

.public-doctor-card {

    background: #ffffff;

    border: 1px solid #e5eaf0;

    border-radius: 16px;

    overflow: hidden;

    height: 100%;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.public-doctor-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(
            16,
            42,
            67,
            0.10
        );

}


.public-doctor-image-wrap {

    height: 260px;

    background: #eaf2ff;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.public-doctor-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.public-doctor-placeholder {

    font-size: 95px;

    color: #9bbcf8;

}


.public-doctor-body {

    padding: 22px;

}


.public-doctor-department {

    color: #1769ff;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 7px;

}


.public-doctor-body h3 {

    font-size: 21px;

    font-weight: 750;

    margin-bottom: 12px;

    color: #102a43;

}


.public-doctor-qualification {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: #52606d;

    font-size: 14px;

    margin-bottom: 10px;

}


.public-doctor-qualification i {

    color: #1769ff;

    margin-top: 2px;

}


.public-doctor-location {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: #52606d;

    font-size: 14px;

    min-height: 42px;

}


.public-doctor-location i {

    color: #1769ff;

    margin-top: 2px;

}


.doctor-card-actions {

    display: flex;

    gap: 8px;

    margin-top: 20px;

}


.doctor-card-actions .btn {

    flex: 1;

    font-size: 13px;

    font-weight: 600;

    border-radius: 8px;

}



/* =========================================================
   NO RESULT
========================================================= */

.no-doctor-result {

    background: #ffffff;

    border: 1px solid #e5eaf0;

    border-radius: 16px;

    padding: 60px 25px;

    text-align: center;

}


.no-result-icon {

    width: 75px;

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #eef2f6;

    color: #7b8794;

    font-size: 32px;

}


.no-doctor-result h3 {

    font-weight: 750;

}


.no-doctor-result p {

    color: #7b8794;

    margin-bottom: 22px;

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .doctors-page-hero {

        padding: 50px 0 70px;

    }


    .doctors-page-heading h1 {

        font-size: 38px;

    }


    .doctors-page-heading p {

        font-size: 15px;

    }


    .doctor-filter-section {

        margin-top: -30px;

    }


    .doctor-filter-card {

        padding: 18px;

    }


    .doctors-list-section {

        padding: 55px 0 70px;

    }


    .doctor-results-header {

        align-items: flex-start;

    }


    .doctor-results-header h2 {

        font-size: 25px;

    }


    .public-doctor-image-wrap {

        height: 280px;

    }

}



/* =========================================================
   PAGE HERO
========================================================= */

.doctors-page-hero {

    background:
        linear-gradient(
            120deg,
            #f1f6ff,
            #ffffff
        );

    padding: 65px 0 85px;

}


.doctors-page-heading {

    max-width: 720px;

    text-align: center;

    margin: auto;

}


.page-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    background: #eaf2ff;

    color: #1769ff;

    padding: 8px 15px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 18px;

}


.doctors-page-heading h1 {

    font-size: clamp(
        38px,
        5vw,
        55px
    );

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 18px;

}


.doctors-page-heading h1 span {

    color: #1769ff;

}


.doctors-page-heading p {

    color: #52606d;

    font-size: 17px;

    line-height: 1.7;

    margin: 0;

}



/* =========================================================
   FILTER
========================================================= */

.doctor-filter-section {

    margin-top: -38px;

    position: relative;

    z-index: 10;

}


.doctor-filter-card {

    background: #ffffff;

    border: 1px solid #e5eaf0;

    border-radius: 15px;

    padding: 25px;

    box-shadow:
        0 12px 35px rgba(
            16,
            42,
            67,
            0.08
        );

}


.doctor-filter-card .form-label {

    font-size: 14px;

    font-weight: 600;

    color: #243b53;

}


.doctor-filter-card .form-control,
.doctor-filter-card .form-select {

    min-height: 48px;

    border-radius: 9px;

    border-color: #d9e1ea;

}


.search-input {

    position: relative;

}


.search-input i {

    position: absolute;

    left: 15px;

    top: 50%;

    transform: translateY(-50%);

    color: #7b8794;

    z-index: 2;

}


.search-input .form-control {

    padding-left: 43px;

}


.filter-btn {

    min-height: 48px;

    border-radius: 9px;

    font-weight: 600;

}



/* =========================================================
   LIST
========================================================= */

.doctors-list-section {

    padding: 75px 0 90px;

    background: #f8fafc;

}


.doctor-results-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;

}


.doctor-results-header h2 {

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 4px;

}


.doctor-results-header p {

    margin: 0;

    color: #7b8794;

    font-size: 14px;

}



/* =========================================================
   DOCTOR CARD
========================================================= */

.public-doctor-card {

    background: #ffffff;

    border: 1px solid #e5eaf0;

    border-radius: 16px;

    overflow: hidden;

    height: 100%;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.public-doctor-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(
            16,
            42,
            67,
            0.10
        );

}


.public-doctor-image-wrap {

    height: 260px;

    background: #eaf2ff;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.public-doctor-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.public-doctor-placeholder {

    font-size: 95px;

    color: #9bbcf8;

}


.public-doctor-body {

    padding: 22px;

}


.public-doctor-department {

    color: #1769ff;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 7px;

}


.public-doctor-body h3 {

    font-size: 21px;

    font-weight: 750;

    margin-bottom: 12px;

    color: #102a43;

}


.public-doctor-qualification {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: #52606d;

    font-size: 14px;

    margin-bottom: 10px;

}


.public-doctor-qualification i {

    color: #1769ff;

    margin-top: 2px;

}


.public-doctor-location {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: #52606d;

    font-size: 14px;

    min-height: 42px;

}


.public-doctor-location i {

    color: #1769ff;

    margin-top: 2px;

}


.doctor-card-actions {

    display: flex;

    gap: 8px;

    margin-top: 20px;

}


.doctor-card-actions .btn {

    flex: 1;

    font-size: 13px;

    font-weight: 600;

    border-radius: 8px;

}



/* =========================================================
   NO RESULT
========================================================= */

.no-doctor-result {

    background: #ffffff;

    border: 1px solid #e5eaf0;

    border-radius: 16px;

    padding: 60px 25px;

    text-align: center;

}


.no-result-icon {

    width: 75px;

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #eef2f6;

    color: #7b8794;

    font-size: 32px;

}


.no-doctor-result h3 {

    font-weight: 750;

}


.no-doctor-result p {

    color: #7b8794;

    margin-bottom: 22px;

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .doctors-page-hero {

        padding: 50px 0 70px;

    }


    .doctors-page-heading h1 {

        font-size: 38px;

    }


    .doctors-page-heading p {

        font-size: 15px;

    }


    .doctor-filter-section {

        margin-top: -30px;

    }


    .doctor-filter-card {

        padding: 18px;

    }


    .doctors-list-section {

        padding: 55px 0 70px;

    }


    .doctor-results-header {

        align-items: flex-start;

    }


    .doctor-results-header h2 {

        font-size: 25px;

    }


    .public-doctor-image-wrap {

        height: 280px;

    }

}



/* =========================================
   TGY MEDICO - GLOBAL BUTTON COLOR
========================================= */

.btn-primary {
    background-color: var(--tgy-primary) !important;
    border-color: var(--tgy-primary) !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--tgy-primary-dark) !important;
    border-color: var(--tgy-primary-dark) !important;
    color: #ffffff !important;
}


/* Bootstrap outline primary buttons */

.btn-outline-primary {
    color: var(--tgy-primary) !important;
    border-color: var(--tgy-primary) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--tgy-primary) !important;
    border-color: var(--tgy-primary) !important;
    color: #ffffff !important;
}


/* Links using Bootstrap primary color */

.text-primary {
    color: var(--tgy-primary) !important;
}


/* Background primary */

.bg-primary {
    background-color: var(--tgy-primary) !important;
}


/* Border primary */

.border-primary {
    border-color: var(--tgy-primary) !important;
}


/* =========================================================
   TGY MEDICO
   ABOUT US PAGE
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    padding: 85px 0 100px;
    background:
        linear-gradient(
            120deg,
            #f1f8f1 0%,
            #ffffff 65%
        );
}

.about-hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    margin-bottom: 22px;
    border-radius: 50px;
    background: #eaf7ea;
    color: #008000;
    font-size: 14px;
    font-weight: 700;
}

.about-hero h1 {
    margin: 0 0 20px;
    color: #2d2d2d;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
}

.about-hero h1 span {
    display: block;
    color: #008000;
}

.about-hero p {
    max-width: 720px;
    margin: 0 auto 30px;
    color: #52606d;
    font-size: 17px;
    line-height: 1.75;
}

.about-hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   COMMON BUTTONS
========================================================= */

.tgy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 11px 22px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tgy-btn-primary {
    background: #008000;
    border: 1px solid #008000;
    color: #ffffff;
}

.tgy-btn-primary:hover {
    background: #006b00;
    border-color: #006b00;
    color: #ffffff;
    transform: translateY(-2px);
}

.tgy-btn-outline {
    background: #ffffff;
    border: 1px solid #008000;
    color: #008000;
}

.tgy-btn-outline:hover {
    background: #008000;
    border-color: #008000;
    color: #ffffff;
    transform: translateY(-2px);
}

.tgy-btn-light {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #008000;
}

.tgy-btn-light:hover {
    background: #f1f8f1;
    border-color: #f1f8f1;
    color: #006b00;
    transform: translateY(-2px);
}

.tgy-btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.tgy-btn-outline-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #008000;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro {
    padding: 90px 0;
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    margin-bottom: 15px;
    border-radius: 50px;
    background: #eaf7ea;
    color: #008000;
    font-size: 13px;
    font-weight: 700;
}

.about-intro-content h2,
.about-section-heading h2,
.about-why-content h2 {
    margin: 0 0 18px;
    color: #2d2d2d;
    font-size: clamp(30px, 4vw, 43px);
    font-weight: 800;
    line-height: 1.2;
}

.about-intro-content h2 span,
.about-section-heading h2 span,
.about-why-content h2 span {
    color: #008000;
}

.about-intro-content p {
    margin: 0 0 16px;
    color: #52606d;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   INFO CARDS
========================================================= */

.about-intro-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-info-card {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 21px;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(45, 45, 45, 0.06);
}

.about-info-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 21px;
}

.about-info-icon.green {
    background: #eaf7ea;
    color: #008000;
}

.about-info-icon.red {
    background: #fff0f1;
    color: #e31b23;
}

.about-info-card h3 {
    margin: 1px 0 6px;
    color: #2d2d2d;
    font-size: 17px;
    font-weight: 750;
}

.about-info-card p {
    margin: 0;
    color: #52606d;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   SERVICES
========================================================= */

.about-services {
    padding: 90px 0;
    background: #f7faf7;
}

.about-section-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.about-section-heading p {
    margin: 0;
    color: #52606d;
    font-size: 16px;
    line-height: 1.7;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-service-card {
    padding: 28px 23px;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 15px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.about-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 128, 0, 0.25);
    box-shadow: 0 15px 35px rgba(45, 45, 45, 0.08);
}

.about-service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 13px;
    background: #eaf7ea;
    color: #008000;
    font-size: 23px;
}

.about-service-card h3 {
    margin: 0 0 11px;
    color: #2d2d2d;
    font-size: 19px;
    font-weight: 750;
}

.about-service-card p {
    min-height: 105px;
    margin: 0 0 18px;
    color: #52606d;
    font-size: 14px;
    line-height: 1.7;
}

.about-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #008000;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.about-service-card a:hover {
    color: #006b00;
}


/* =========================================================
   WHY TGY
========================================================= */

.about-why {
    padding: 95px 0;
    background: #ffffff;
}

.about-why-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-why-content p {
    max-width: 650px;
    margin: 0 0 25px;
    color: #52606d;
    font-size: 16px;
    line-height: 1.75;
}

.about-check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-check-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d2d2d;
    font-size: 15px;
    font-weight: 600;
}

.about-check-list i {
    color: #008000;
    font-size: 18px;
}


/* =========================================================
   WHY BOX
========================================================= */

.about-why-box {
    padding: 45px 35px;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            #f1f8f1,
            #ffffff
        );
    border: 1px solid #dfe9df;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(45, 45, 45, 0.07);
}

.about-why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #eaf7ea;
    color: #008000;
    font-size: 32px;
}

.about-why-box h3 {
    margin: 0 0 12px;
    color: #2d2d2d;
    font-size: 27px;
    font-weight: 800;
}

.about-why-box p {
    margin: 0 auto 25px;
    max-width: 390px;
    color: #52606d;
    font-size: 15px;
    line-height: 1.7;
}

.about-why-line {
    width: 55px;
    height: 3px;
    margin: 0 auto 18px;
    border-radius: 5px;
    background: #e31b23;
}

.about-why-box strong {
    display: block;
    color: #008000;
    font-size: 16px;
}

.about-why-box small {
    display: block;
    margin-top: 4px;
    color: #7b8794;
    font-size: 12px;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    padding: 70px 0;
    background: #f7faf7;
}

.about-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 45px 50px;
    background: #008000;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 128, 0, 0.15);
}

.about-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: #dff5df;
    font-size: 13px;
    font-weight: 700;
}

.about-cta-box h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 31px;
    font-weight: 800;
}

.about-cta-box p {
    margin: 0;
    color: #e8f6e8;
    font-size: 15px;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-why-box {
        max-width: 550px;
        width: 100%;
        margin: 0 auto;
    }

    .about-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .about-hero {
        padding: 60px 0 70px;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-hero p {
        font-size: 15px;
    }

    .about-hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }

    .tgy-btn {
        width: 100%;
    }

    .about-intro,
    .about-services,
    .about-why {
        padding: 65px 0;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
    }

    .about-service-card p {
        min-height: auto;
    }

    .about-cta {
        padding: 55px 0;
    }

    .about-cta-box {
        padding: 32px 24px;
        border-radius: 15px;
    }

    .about-cta-box h2 {
        font-size: 27px;
    }

    .about-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .about-why-box {
        padding: 35px 22px;
    }

}


@media (max-width: 480px) {

    .about-hero h1 {
        font-size: 35px;
    }

    .about-info-card {
        padding: 17px;
    }

    .about-info-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        font-size: 18px;
    }

}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
    padding: 80px 0 95px;
    background: linear-gradient(
        120deg,
        #f3faf3 0%,
        #ffffff 70%
    );
}

.contact-hero-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    margin-bottom: 20px;
    border-radius: 50px;
    background: #eaf7ea;
    color: var(--tgy-primary);
    font-size: 14px;
    font-weight: 700;
}

.contact-hero h1 {
    margin: 0 0 20px;
    color: var(--tgy-dark);
    font-size: clamp(40px, 6vw, 62px);
    font-weight: 800;
    line-height: 1.1;
}

.contact-hero h1 span {
    color: var(--tgy-primary);
}

.contact-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--tgy-text);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-section {
    padding: 70px 0;
    background: #ffffff;
}

.contact-info-card {
    height: 100%;
    padding: 28px 22px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--tgy-border);
    border-radius: 16px;
    transition: all 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 128, 0, 0.09);
}

.contact-info-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    border-radius: 14px;
    background: #eaf7ea;
    color: var(--tgy-primary);
    font-size: 24px;
}

.contact-info-card h3 {
    margin-bottom: 8px;
    color: var(--tgy-dark);
    font-size: 19px;
    font-weight: 750;
}

.contact-info-card p {
    margin-bottom: 10px;
    color: #7b8794;
    font-size: 13px;
}

.contact-info-card a,
.contact-info-card span {
    color: var(--tgy-primary);
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main-section {
    padding: 80px 0;
    background: #f7faf7;
}

.contact-form-card {
    height: 100%;
    padding: 35px;
    background: #ffffff;
    border: 1px solid var(--tgy-border);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(16, 42, 67, 0.06);
}

.contact-section-heading {
    margin-bottom: 28px;
}

.contact-section-heading > span {
    color: var(--tgy-primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.contact-section-heading h2 {
    margin: 8px 0 12px;
    color: var(--tgy-dark);
    font-size: 32px;
    font-weight: 800;
}

.contact-section-heading h2 strong {
    color: var(--tgy-primary);
}

.contact-section-heading p {
    margin: 0;
    color: var(--tgy-text);
    line-height: 1.7;
}

.contact-label {
    display: block;
    margin-bottom: 7px;
    color: #243b53;
    font-size: 14px;
    font-weight: 650;
}

.contact-input {
    min-height: 48px;
    border: 1px solid #d9e1ea;
    border-radius: 9px;
    box-shadow: none !important;
}

.contact-input:focus {
    border-color: var(--tgy-primary);
}

.contact-textarea {
    min-height: 125px;
    resize: vertical;
}

.contact-submit-btn {
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 9px;
    background: var(--tgy-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.contact-submit-btn:hover {
    background: var(--tgy-primary-dark);
}


/* =========================================================
   HELP CARD
========================================================= */

.contact-help-card {
    height: 100%;
    padding: 45px;
    border-radius: 20px;
    background: linear-gradient(
        145deg,
        #078a08,
        #006b00
    );
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 128, 0, 0.18);
}

.contact-help-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 28px;
}

.contact-help-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-help-card h2 {
    max-width: 480px;
    margin-bottom: 18px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.contact-help-card h2 span {
    display: block;
    color: #dff5df;
}

.contact-help-card > p {
    max-width: 520px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.contact-help-list {
    margin-bottom: 30px;
}

.contact-help-list div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-help-list i {
    margin-top: 3px;
    color: #d9f5d9;
}

.contact-help-list span {
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
}

.contact-help-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 11px 22px;
    border-radius: 9px;
    background: #ffffff;
    color: var(--tgy-primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.contact-help-btn:hover {
    background: #f2f2f2;
    color: var(--tgy-primary-dark);
}


/* =========================================================
   LOCATION
========================================================= */

.contact-location-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-section-title {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.contact-section-title > span {
    color: var(--tgy-primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.contact-section-title h2 {
    margin: 8px 0 12px;
    color: var(--tgy-dark);
    font-size: 36px;
    font-weight: 800;
}

.contact-section-title h2 strong {
    color: var(--tgy-primary);
}

.contact-section-title p {
    margin: 0;
    color: var(--tgy-text);
    line-height: 1.7;
}

.contact-map-box {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--tgy-border);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            #eef7ee,
            #f8faf8
        );
}

.contact-map-placeholder {
    text-align: center;
}

.contact-map-placeholder > i {
    font-size: 55px;
    color: var(--tgy-primary);
}

.contact-map-placeholder h3 {
    margin: 15px 0 5px;
    color: var(--tgy-dark);
    font-size: 24px;
    font-weight: 800;
}

.contact-map-placeholder p {
    margin-bottom: 20px;
    color: var(--tgy-text);
}

.contact-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 9px;
    background: var(--tgy-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.contact-map-btn:hover {
    background: var(--tgy-primary-dark);
    color: #ffffff;
}


/* =========================================================
   CTA
========================================================= */

.contact-cta {
    padding: 70px 0;
    background: #f7faf7;
}

.contact-cta-content {
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 10px;
    color: var(--tgy-dark);
    font-size: 36px;
    font-weight: 800;
}

.contact-cta p {
    margin-bottom: 24px;
    color: var(--tgy-text);
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 50px;
    padding: 12px 25px;
    border-radius: 9px;
    background: var(--tgy-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.contact-cta-btn:hover {
    background: var(--tgy-primary-dark);
    color: #ffffff;
}


/* =========================================================
   CONTACT MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-hero {
        padding: 55px 0 65px;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .contact-section,
    .contact-main-section,
    .contact-location-section {
        padding: 60px 0;
    }

    .contact-form-card {
        padding: 25px 20px;
    }

    .contact-help-card {
        padding: 30px 25px;
    }

    .contact-help-card h2 {
        font-size: 29px;
    }

    .contact-section-heading h2,
    .contact-section-title h2,
    .contact-cta h2 {
        font-size: 29px;
    }

    .contact-map-box {
        min-height: 300px;
    }

}



/* =========================================================
   TGY MEDICO - DOCTORS PAGE
========================================================= */

:root {
    --tgy-green: #008000;
    --tgy-green-dark: #006b00;
    --tgy-green-light: #eaf7ea;

    --tgy-dark: #2d2d2d;
    --tgy-text: #52606d;

    --tgy-red: #e31b23;

    --tgy-light: #f7faf7;
    --tgy-border: #e5eaf0;
}


/* =========================================================
   PAGE HERO
========================================================= */

.doctors-page-hero {

    background:
        linear-gradient(
            120deg,
            #f1f8f1,
            #ffffff
        );

    padding: 65px 0 85px;
}


.doctors-page-heading {

    max-width: 720px;

    text-align: center;

    margin: auto;
}


.page-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    background: var(--tgy-green-light);

    color: var(--tgy-green);

    padding: 8px 15px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 18px;
}


.doctors-page-heading h1 {

    font-size: clamp(
        38px,
        5vw,
        55px
    );

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 18px;

    color: var(--tgy-dark);
}


.doctors-page-heading h1 span {

    color: var(--tgy-green);
}


.doctors-page-heading p {

    color: var(--tgy-text);

    font-size: 17px;

    line-height: 1.7;

    margin: 0;
}



/* =========================================================
   FILTER
========================================================= */

.doctor-filter-section {

    margin-top: -38px;

    position: relative;

    z-index: 10;
}


.doctor-filter-card {

    background: #ffffff;

    border: 1px solid var(--tgy-border);

    border-radius: 15px;

    padding: 25px;

    box-shadow:
        0 12px 35px rgba(
            45,
            45,
            45,
            0.08
        );
}


.doctor-filter-card .form-label {

    font-size: 14px;

    font-weight: 600;

    color: var(--tgy-dark);
}


.doctor-filter-card .form-control,
.doctor-filter-card .form-select {

    min-height: 48px;

    border-radius: 9px;

    border-color: #d9e1ea;

    color: var(--tgy-dark);
}


.doctor-filter-card .form-control:focus,
.doctor-filter-card .form-select:focus {

    border-color: var(--tgy-green);

    box-shadow:
        0 0 0 0.2rem
        rgba(
            0,
            128,
            0,
            0.12
        );
}


.search-input {

    position: relative;
}


.search-input i {

    position: absolute;

    left: 15px;

    top: 50%;

    transform: translateY(-50%);

    color: #7b8794;

    z-index: 2;
}


.search-input .form-control {

    padding-left: 43px;
}


.filter-btn {

    min-height: 48px;

    border-radius: 9px;

    font-weight: 600;

    background: var(--tgy-green);

    border-color: var(--tgy-green);

    color: #ffffff;

    transition: 0.2s ease;
}


.filter-btn:hover {

    background: var(--tgy-green-dark);

    border-color: var(--tgy-green-dark);

    color: #ffffff;

    transform: translateY(-1px);
}



/* =========================================================
   LIST
========================================================= */

.doctors-list-section {

    padding: 75px 0 90px;

    background: var(--tgy-light);
}


.doctor-results-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;
}


.doctor-results-header h2 {

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 4px;

    color: var(--tgy-dark);
}


.doctor-results-header p {

    margin: 0;

    color: #7b8794;

    font-size: 14px;
}



/* =========================================================
   DOCTOR CARD
========================================================= */

.public-doctor-card {

    background: #ffffff;

    border: 1px solid var(--tgy-border);

    border-radius: 16px;

    overflow: hidden;

    height: 100%;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.public-doctor-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(
            0,
            128,
            0,
            0.25
        );

    box-shadow:
        0 15px 40px rgba(
            45,
            45,
            45,
            0.10
        );
}


.public-doctor-image-wrap {

    height: 260px;

    background: var(--tgy-green-light);

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.public-doctor-image {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.public-doctor-placeholder {

    font-size: 95px;

    color:
        rgba(
            0,
            128,
            0,
            0.35
        );
}


.public-doctor-body {

    padding: 22px;
}


.public-doctor-department {

    color: var(--tgy-green);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 7px;
}


.public-doctor-body h3 {

    font-size: 21px;

    font-weight: 750;

    margin-bottom: 12px;

    color: var(--tgy-dark);
}


.public-doctor-qualification {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: var(--tgy-text);

    font-size: 14px;

    margin-bottom: 10px;
}


.public-doctor-qualification i {

    color: var(--tgy-green);

    margin-top: 2px;
}


.public-doctor-location {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: var(--tgy-text);

    font-size: 14px;

    min-height: 42px;
}


.public-doctor-location i {

    color: var(--tgy-green);

    margin-top: 2px;
}



/* =========================================================
   DOCTOR CARD BUTTONS
========================================================= */

.doctor-card-actions {

    display: flex;

    gap: 8px;

    margin-top: 20px;
}


.doctor-card-actions .btn {

    flex: 1;

    font-size: 13px;

    font-weight: 600;

    border-radius: 8px;

    transition: 0.2s ease;
}


/* View Profile */

.doctor-card-actions .btn-outline-primary {

    color: var(--tgy-green);

    border-color: var(--tgy-green);

    background: #ffffff;
}


.doctor-card-actions .btn-outline-primary:hover {

    color: #ffffff;

    background: var(--tgy-green);

    border-color: var(--tgy-green);
}


/* Book Appointment */

.doctor-card-actions .btn-primary {

    color: #ffffff;

    background: var(--tgy-green);

    border-color: var(--tgy-green);
}


.doctor-card-actions .btn-primary:hover {

    color: #ffffff;

    background: var(--tgy-green-dark);

    border-color: var(--tgy-green-dark);
}



/* =========================================================
   NO RESULT
========================================================= */

.no-doctor-result {

    background: #ffffff;

    border: 1px solid var(--tgy-border);

    border-radius: 16px;

    padding: 60px 25px;

    text-align: center;
}


.no-result-icon {

    width: 75px;

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #eef2f6;

    color: #7b8794;

    font-size: 32px;
}


.no-doctor-result h3 {

    font-weight: 750;

    color: var(--tgy-dark);
}


.no-doctor-result p {

    color: #7b8794;

    margin-bottom: 22px;
}



/* =========================================================
   LINKS
========================================================= */

.public-doctor-card a {

    text-decoration: none;
}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .doctors-page-hero {

        padding: 50px 0 70px;
    }


    .doctors-page-heading h1 {

        font-size: 38px;
    }


    .doctors-page-heading p {

        font-size: 15px;
    }


    .doctor-filter-section {

        margin-top: -30px;
    }


    .doctor-filter-card {

        padding: 18px;
    }


    .doctors-list-section {

        padding: 55px 0 70px;
    }


    .doctor-results-header {

        align-items: flex-start;
    }


    .doctor-results-header h2 {

        font-size: 25px;
    }


    .public-doctor-image-wrap {

        height: 280px;
    }


    .doctor-card-actions {

        flex-direction: column;
    }


    .doctor-card-actions .btn {

        width: 100%;
    }

}

/* =========================================================
   BACK TO TOP BUTTON
========================================================= */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 10px;

    background: var(--tgy-primary);
    color: #ffffff;

    font-size: 18px;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.2s ease;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15);
}


.back-to-top:hover {
    background: var(--tgy-primary-dark);
    color: #ffffff;

    transform: translateY(-2px);
}


.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Mobile */

@media (max-width: 767px) {

    .back-to-top {
        right: 15px;
        bottom: 15px;

        width: 42px;
        height: 42px;

        border-radius: 9px;
        font-size: 16px;
    }

}


/* =========================================================
   TGY MEDICO
   MEDICAL TESTS PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.medical-tests-hero {
    padding: 90px 0 85px;
    background:
        linear-gradient(
            120deg,
            #f1f8f1 0%,
            #ffffff 68%
        );
}

.medical-tests-hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.medical-tests-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    margin-bottom: 22px;
    border-radius: 50px;
    background: #eaf7ea;
    color: var(--tgy-primary);
    font-size: 14px;
    font-weight: 700;
}

.medical-tests-hero h1 {
    margin: 0 0 20px;
    color: var(--tgy-dark);
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.1;
    font-weight: 800;
}

.medical-tests-hero h1 span {
    color: var(--tgy-primary);
}

.medical-tests-hero p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: var(--tgy-text);
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   SEARCH
========================================================= */

.medical-test-search-box {
    max-width: 720px;
    min-height: 62px;
    margin: 0 auto 20px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--tgy-border);
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(20, 70, 30, 0.08);
}

.medical-test-search-box i {
    color: var(--tgy-primary);
    font-size: 21px;
}

.medical-test-search-box input {
    width: 100%;
    height: 58px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--tgy-dark);
    font-size: 15px;
}

.medical-test-search-box input::placeholder {
    color: #8a959d;
}

.medical-tests-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.medical-tests-hero-actions .btn {
    padding: 12px 21px;
    border-radius: 9px;
    font-weight: 600;
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.section-heading-center {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-small-title {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--tgy-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-heading-center h2 {
    margin: 0 0 12px;
    color: var(--tgy-dark);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
}

.section-heading-center p {
    margin: 0;
    color: var(--tgy-text);
    line-height: 1.7;
}


/* =========================================================
   CATEGORIES
========================================================= */

.medical-test-categories {
    padding: 80px 0;
    background: #ffffff;
}

.medical-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.medical-category-card {
    width: 100%;
    padding: 22px 15px;
    border: 1px solid var(--tgy-border);
    border-radius: 15px;
    background: #ffffff;
    text-align: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.medical-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(7, 138, 8, 0.35);
    box-shadow: 0 12px 30px rgba(20, 70, 30, 0.08);
}

.medical-category-card.active {
    border-color: var(--tgy-primary);
    background: #f3faf3;
    box-shadow: 0 10px 25px rgba(7, 138, 8, 0.08);
}

.medical-category-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eaf7ea;
    color: var(--tgy-primary);
    font-size: 22px;
}

.medical-category-card strong {
    display: block;
    margin-bottom: 5px;
    color: var(--tgy-dark);
    font-size: 15px;
}

.medical-category-card small {
    color: #7b8794;
    font-size: 12px;
}


/* =========================================================
   POPULAR TESTS
========================================================= */

.popular-medical-tests {
    padding: 85px 0;
    background: var(--tgy-light);
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    margin-bottom: 40px;
}

.section-heading-row h2 {
    margin: 0 0 8px;
    font-size: 38px;
    font-weight: 800;
    color: var(--tgy-dark);
}

.section-heading-row p {
    margin: 0;
    color: var(--tgy-text);
}

.medical-test-result-count {
    padding: 9px 15px;
    border: 1px solid var(--tgy-border);
    border-radius: 50px;
    background: #ffffff;
    color: #697783;
    font-size: 13px;
    white-space: nowrap;
}

.medical-test-result-count span {
    color: var(--tgy-primary);
    font-weight: 800;
}


/* =========================================================
   TEST CARD
========================================================= */

.medical-test-card {
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--tgy-border);
    border-radius: 17px;
    background: #ffffff;
    transition: 0.25s ease;
}

.medical-test-card:hover {
    transform: translateY(-5px);
    border-color: rgba(7, 138, 8, 0.28);
    box-shadow: 0 15px 35px rgba(20, 70, 30, 0.09);
}

.medical-test-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.medical-test-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #eaf7ea;
    color: var(--tgy-primary);
    font-size: 21px;
}

.medical-test-category {
    padding: 6px 10px;
    border-radius: 50px;
    background: #f3f7f4;
    color: #66736b;
    font-size: 11px;
    font-weight: 700;
}

.medical-test-card h3 {
    margin: 0 0 11px;
    color: var(--tgy-dark);
    font-size: 20px;
    font-weight: 750;
    line-height: 1.35;
}

.medical-test-card p {
    min-height: 70px;
    margin: 0 0 20px;
    color: var(--tgy-text);
    font-size: 14px;
    line-height: 1.65;
}

.medical-test-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 15px 0;
    margin-top: auto;
    border-top: 1px solid #edf1ee;
    border-bottom: 1px solid #edf1ee;
}

.medical-test-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #697783;
    font-size: 12px;
}

.medical-test-meta i {
    color: var(--tgy-primary);
}

.medical-test-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 18px;
}

.medical-test-actions .btn {
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   NO RESULT
========================================================= */

.medical-test-no-result {
    padding: 55px 25px;
    margin-top: 30px;
    border: 1px solid var(--tgy-border);
    border-radius: 17px;
    background: #ffffff;
    text-align: center;
}

.medical-test-no-result-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f4f2;
    color: #7b8794;
    font-size: 26px;
}

.medical-test-no-result h3 {
    margin-bottom: 8px;
    font-weight: 750;
}

.medical-test-no-result p {
    margin-bottom: 20px;
    color: var(--tgy-text);
}


/* =========================================================
   HEALTH PACKAGES
========================================================= */

.health-packages-section {
    padding: 90px 0;
    background: #ffffff;
}

.health-package-card {
    position: relative;
    height: 100%;
    padding: 32px 28px;
    border: 1px solid var(--tgy-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(20, 70, 30, 0.04);
}

.health-package-card.featured {
    border: 2px solid var(--tgy-primary);
}

.package-popular {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 10px;
    border-radius: 50px;
    background: var(--tgy-primary);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.package-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #eaf7ea;
    color: var(--tgy-primary);
    font-size: 24px;
}

.health-package-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 800;
}

.health-package-card > p {
    min-height: 48px;
    margin-bottom: 22px;
    color: var(--tgy-text);
    font-size: 14px;
    line-height: 1.65;
}

.health-package-card ul {
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
}

.health-package-card li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #53616c;
    font-size: 13px;
}

.health-package-card li i {
    margin-top: 2px;
    color: var(--tgy-primary);
}

.health-package-card .btn {
    border-radius: 9px;
    padding: 11px 15px;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.medical-how-it-works {
    padding: 90px 0;
    background: var(--tgy-light);
}

.medical-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.medical-process-item {
    position: relative;
    padding: 30px 20px;
    text-align: center;
}

.process-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(7, 138, 8, 0.10);
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
}

.process-icon {
    position: relative;
    z-index: 1;
    width: 65px;
    height: 65px;
    margin: 25px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #ffffff;
    border-radius: 50%;
    background: var(--tgy-primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(7, 138, 8, 0.18);
    font-size: 22px;
}

.medical-process-item h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 750;
}

.medical-process-item p {
    margin: 0;
    color: var(--tgy-text);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   WHY MEDICAL TESTS
========================================================= */

.why-medical-tests {
    padding: 90px 0;
    background: #ffffff;
}

.why-medical-tests h2 {
    max-width: 600px;
    margin: 0 0 18px;
    font-size: clamp(32px, 4vw, 45px);
    line-height: 1.15;
    font-weight: 800;
}

.why-medical-tests h2 span {
    color: var(--tgy-primary);
}

.why-medical-description {
    max-width: 590px;
    margin-bottom: 30px;
    color: var(--tgy-text);
    font-size: 16px;
    line-height: 1.75;
}

.why-medical-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-medical-item {
    display: flex;
    gap: 15px;
}

.why-medical-item-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eaf7ea;
    color: var(--tgy-primary);
    font-size: 19px;
}

.why-medical-item h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 750;
}

.why-medical-item p {
    margin: 0;
    color: var(--tgy-text);
    font-size: 13px;
    line-height: 1.6;
}

.medical-info-panel {
    padding: 45px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            #eaf7ea,
            #f8fcf8
        );
    border: 1px solid #d8ebd8;
    text-align: center;
}

.medical-info-panel-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #ffffff;
    color: var(--tgy-primary);
    box-shadow: 0 8px 25px rgba(7, 138, 8, 0.10);
    font-size: 30px;
}

.medical-info-panel h3 {
    margin-bottom: 12px;
    font-size: 25px;
    font-weight: 800;
}

.medical-info-panel p {
    margin-bottom: 25px;
    color: var(--tgy-text);
    line-height: 1.7;
    font-size: 14px;
}

.medical-info-panel .btn {
    padding: 12px 20px;
    border-radius: 9px;
    font-weight: 700;
}


/* =========================================================
   DISCLAIMER
========================================================= */

.medical-test-disclaimer {
    padding: 0 0 70px;
    background: #ffffff;
}

.medical-disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid #e5eae7;
    border-radius: 12px;
    background: #f8faf9;
}

.medical-disclaimer-box > i {
    margin-top: 2px;
    color: var(--tgy-primary);
    font-size: 19px;
}

.medical-disclaimer-box p {
    margin: 0;
    color: #697783;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   MODAL
========================================================= */

.medical-test-modal {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

.medical-test-modal .modal-header {
    padding: 25px 28px 20px;
    border-bottom: 1px solid var(--tgy-border);
}

.medical-test-modal .modal-title {
    margin-top: 3px;
    font-size: 25px;
    font-weight: 800;
    color: var(--tgy-dark);
}

.medical-test-modal .modal-body {
    padding: 28px;
}

.test-modal-description {
    margin-bottom: 25px;
    color: var(--tgy-text);
    font-size: 15px;
    line-height: 1.75;
}

.test-modal-information-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.test-modal-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    border: 1px solid var(--tgy-border);
    border-radius: 12px;
    background: #f9fbf9;
}

.test-modal-info > i {
    color: var(--tgy-primary);
    font-size: 21px;
}

.test-modal-info span {
    display: block;
    margin-bottom: 4px;
    color: #7b8794;
    font-size: 11px;
}

.test-modal-info strong {
    display: block;
    color: var(--tgy-dark);
    font-size: 13px;
    line-height: 1.4;
}

.test-modal-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 20px;
    padding: 14px;
    border-radius: 10px;
    background: #f1f8f1;
    color: #526b56;
    font-size: 12px;
    line-height: 1.6;
}

.test-modal-note i {
    color: var(--tgy-primary);
    margin-top: 2px;
}

.medical-test-modal .modal-footer {
    padding: 18px 28px;
    border-top: 1px solid var(--tgy-border);
}

.medical-test-modal .btn {
    border-radius: 8px;
    font-weight: 600;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .medical-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .medical-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading-row h2 {
        font-size: 32px;
    }

    .test-modal-information-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 767px) {

    .medical-tests-hero {
        padding: 60px 0 65px;
    }

    .medical-tests-hero h1 {
        font-size: 38px;
    }

    .medical-tests-hero p {
        font-size: 15px;
    }

    .medical-test-search-box {
        min-height: 56px;
        padding: 0 15px;
    }

    .medical-test-search-box input {
        height: 52px;
        font-size: 13px;
    }

    .medical-tests-hero-actions {
        flex-direction: column;
    }

    .medical-tests-hero-actions .btn {
        width: 100%;
    }

    .medical-test-categories,
    .popular-medical-tests,
    .health-packages-section,
    .medical-how-it-works,
    .why-medical-tests {
        padding: 65px 0;
    }

    .medical-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .medical-category-card {
        padding: 18px 10px;
    }

    .medical-category-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .section-heading-row {
        display: block;
    }

    .section-heading-row h2 {
        font-size: 29px;
    }

    .medical-test-result-count {
        display: inline-block;
        margin-top: 15px;
    }

    .medical-test-card {
        padding: 21px;
    }

    .medical-test-card h3 {
        font-size: 18px;
    }

    .medical-test-card p {
        min-height: auto;
    }

    .medical-process-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .medical-process-item {
        padding: 25px 20px;
    }

    .medical-info-panel {
        padding: 30px 22px;
    }

    .medical-disclaimer-box {
        padding: 15px;
    }

    .medical-test-modal .modal-header,
    .medical-test-modal .modal-body {
        padding: 20px;
    }

    .medical-test-modal .modal-title {
        font-size: 21px;
    }

    .medical-test-modal .modal-footer {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

}

/* =========================================================
   TGY MEDICO
   404 ERROR PAGE
========================================================= */

.tgy-404-page {
    min-height: 70vh;
    padding: 90px 0;
    display: flex;
    align-items: center;
    background:
        radial-gradient(
            circle at top left,
            rgba(7, 138, 8, 0.07),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f7fbf7 0%,
            #ffffff 55%,
            #f3f8f4 100%
        );
}

.tgy-404-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}


/* =========================================================
   ICON
========================================================= */

.tgy-404-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: #eaf7ea;
    color: var(--tgy-primary);

    font-size: 32px;

    box-shadow:
        0 12px 30px rgba(7, 138, 8, 0.10);
}


/* =========================================================
   404 NUMBER
========================================================= */

.tgy-404-number {
    margin-top: -5px;

    color: var(--tgy-primary);

    font-size: clamp(90px, 16vw, 170px);
    font-weight: 900;

    line-height: 0.95;

    letter-spacing: -8px;

    opacity: 0.12;

    user-select: none;
}


/* =========================================================
   HEADING
========================================================= */

.tgy-404-content h1 {
    position: relative;

    margin: -15px 0 14px;

    color: var(--tgy-dark);

    font-size: clamp(32px, 5vw, 48px);

    font-weight: 800;

    line-height: 1.2;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.tgy-404-content > p {
    max-width: 570px;

    margin: 0 auto 28px;

    color: var(--tgy-text);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   BUTTONS
========================================================= */

.tgy-404-actions {
    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

.tgy-404-actions .btn {
    min-width: 165px;

    padding: 12px 18px;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   HELP
========================================================= */

.tgy-404-help {
    margin-top: 28px;

    color: #7b8794;

    font-size: 13px;
}

.tgy-404-help span {
    margin-right: 5px;
}

.tgy-404-help a {
    color: var(--tgy-primary);

    font-weight: 700;

    text-decoration: none;

    transition: 0.2s ease;
}

.tgy-404-help a:hover {
    color: var(--tgy-primary-dark);
}

.tgy-404-help i {
    margin-left: 4px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .tgy-404-page {
        min-height: 68vh;
        padding: 65px 20px;
    }

    .tgy-404-icon {
        width: 65px;
        height: 65px;

        border-radius: 18px;

        font-size: 27px;
    }

    .tgy-404-number {
        font-size: 105px;
        letter-spacing: -5px;
    }

    .tgy-404-content h1 {
        margin-top: -8px;
        font-size: 32px;
    }

    .tgy-404-content > p {
        font-size: 14px;
    }

    .tgy-404-actions {
        flex-direction: column;
    }

    .tgy-404-actions .btn {
        width: 100%;
    }

}