﻿/* =======================================
   PREMIUM CLINIC PAGE DESIGN
   ======================================= */




body {
    font-family: "Inter", sans-serif;
}


.page-title {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: clamp(-0.4px, -0.6vw, -1px);
}

/* --- GLOBAL --- */
.page-title-area {
    padding: 40px 0 20px 0;
    position: relative;
    overflow: hidden;
}

    .page-title-area .shape-1 {
        opacity: 0.15;
        width: 300px;
        bottom: -50px;
        right: -50px;
        position: absolute;
    }

.page-title-wrappper h2 {
    font-size: 46px;
    line-height: 56px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    text-transform: none;
    font-feature-settings: "kern" 1;
}

/* --- SECTION TITLES --- */
.service-branding-area h1,
.information h2 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}

/* --- UL LIST DESIGN --- */
.information ul {
    border-radius: 16px;
    padding: 35px 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    transition: 0.3s;
    border-left: 5px solid #00FD54;
}

    .information ul:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
    }

.information li {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 26px;
    list-style: none;
    position: relative;
    padding-left: 28px;
}

    .information li::before {
        content: "✔";
        position: absolute;
        left: 0;
        top: 4px;
        color: #00FD54;
        font-weight: bold;
    }

/* --- SUBTITLES INSIDE UL --- */
.information ul p strong {
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
    color: #00FD54;
}

/* --- H6 TITLES INSIDE LISTS --- */
.information h6 {
    font-size: 18px;
    font-weight: 700;
    color: #00FD54;
}

/* --- HR styling --- */
.information hr {
    border: none;
    height: 1px;
    margin: 40px 0;
    background: linear-gradient(to right, #cfd9df, #e2ebf0);
}

/* =======================================
   MOBILE DESIGN
   ======================================= */
@media (max-width: 767px) {
    .page-title-area {
        padding: 70px 0 30px 0;
    }

    .page-title-wrappper h2 {
        font-size: 26px !important;
        line-height: 34px !important;
    }

    .service-branding-area h1,
    .information h2 {
        font-size: 24px !important;
        line-height: 32px;
        padding: 0 10px;
    }

    .information ul {
        padding: 22px;
        border-radius: 12px;
    }

    .information li {
        font-size: 15px;
        line-height: 22px;
    }

    .information ul p strong {
        font-size: 16px;
    }
}

/* =======================================
   TABLET DESIGN
   ======================================= */
@media (min-width: 768px) and (max-width: 1024px) {
    .page-title-wrappper h2 {
        font-size: 34px !important;
        line-height: 42px;
    }

    .service-branding-area h1,
    .information h2 {
        font-size: 28px !important;
        line-height: 36px;
    }
}
