/* =====================================================
   PROJECT ASTER
   Subang Polyclinic
===================================================== */


/* =====================================================
   DESIGN VARIABLES
===================================================== */

:root {

    --primary: #0ca6a6;

    --primary-dark: #087f7f;

    --dark: #1f2937;

    --text: #4b5563;

    --light: #f5fbfb;

    --white: #ffffff;

    --border: #e5e7eb;

    --shadow: 0 10px 35px rgba(0, 0, 0, 0.07);

}


/* =====================================================
   GENERAL
===================================================== */

html {

    scroll-behavior: smooth;

    scroll-padding-top: 80px;

}


body {

    font-family: 'Inter', sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

}


h1,
h2,
h3,
h4,
h5 {

    color: var(--dark);

    font-weight: 700;

}


a {

    text-decoration: none;

}


/* =====================================================
   NAVIGATION
===================================================== */

.site-nav {

    padding: 12px 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.04);

}


.nav-logo {

    width: 48px;

    height: 48px;

    object-fit: contain;

    margin-right: 10px;

}


.navbar-brand {

    color: var(--dark);

    font-size: 20px;

    font-weight: 700;

}


.navbar-brand:hover {

    color: var(--primary);

}


.nav-link {

    color: var(--dark);

    font-weight: 500;

    margin-left: 12px;

}


.nav-link:hover {

    color: var(--primary);

}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-whatsapp {

    padding: 9px 18px;

}


/* =====================================================
   BUTTONS
===================================================== */

.btn-primary-custom {

    background: var(--primary);

    border: 2px solid var(--primary);

    color: white;

    border-radius: 50px;

    padding: 12px 25px;

    font-weight: 600;

    transition: all 0.25s ease;

}


.btn-primary-custom:hover {

    background: var(--primary-dark);

    border-color: var(--primary-dark);

    color: white;

    transform: translateY(-2px);

}


.btn-outline-light {

    border-radius: 50px;

    padding: 12px 25px;

    font-weight: 600;

}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    min-height: calc(100vh - 73px);

    position: relative;

    background-image: url("images/hero.jpg");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.62) 35%,
            rgba(0, 0, 0, 0.30) 65%,
            rgba(0, 0, 0, 0.12) 100%
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 50px;

    padding-bottom: 50px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: rgba(255,255,255,0.14);

    border: 1px solid rgba(255,255,255,0.3);

    color: white;

    padding: 8px 15px;

    border-radius: 50px;

    font-size: 14px;

    margin-bottom: 20px;

    backdrop-filter: blur(5px);

}


.hero-section h1 {

    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.35);

    color: white;

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -2px;

    max-width: 850px;

}


.hero-section h1 span {

    display: block;

    color: white;

}


.hero-text {

    color: rgba(255,255,255,0.9);

    font-size: 19px;

    max-width: 680px;

    margin: 25px 0 30px;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.hero-highlights {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 40px;

    color: white;

    font-size: 14px;

}


.hero-highlights div {

    display: flex;

    align-items: center;

    gap: 8px;

}


.hero-highlights i {

    color: #8de1e1;

    font-size: 18px;

}


/* =====================================================
   QUICK INFORMATION
===================================================== */

.quick-info {

    background: white;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    position: relative;

    z-index: 3;

}


.quick-info-item {

    padding: 30px 25px;

    display: flex;

    align-items: center;

    gap: 18px;

    height: 100%;

}


.quick-info-item h5 {

    margin: 0 0 5px;

    font-size: 17px;

}


.quick-info-item p {

    margin: 0;

    font-size: 14px;

    color: #6b7280;

}


.quick-icon {

    width: 52px;

    height: 52px;

    min-width: 52px;

    border-radius: 50%;

    background: rgba(12,166,166,0.1);

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

}


/* =====================================================
   SECTIONS
===================================================== */

.section-padding {

    padding: 100px 0;

}


.section-label {

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;

}


.section-title {

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.2;

    letter-spacing: -1px;

    margin-bottom: 20px;

}


.section-title span {

    color: var(--primary);

}


.section-text {

    color: var(--text);

    font-size: 16px;

    margin-bottom: 18px;

}


.section-subtitle {

    max-width: 650px;

    margin: 0 auto;

    color: #6b7280;

}


.section-heading {

    margin-bottom: 55px;

}


/* =====================================================
   ABOUT
===================================================== */

.about-section {

    background: white;

}


.about-image {

    overflow: hidden;

    border-radius: 24px;

    box-shadow: var(--shadow);

}


.about-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

}


.text-link {

    color: var(--primary);

    font-weight: 600;

}


.text-link:hover {

    color: var(--primary-dark);

}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    background: var(--light);

}


.service-card {

    height: 100%;

    background: white;

    padding: 32px;

    border-radius: 20px;

    border: 1px solid rgba(0,0,0,0.04);

    box-shadow: 0 5px 20px rgba(0,0,0,0.03);

    transition: all 0.3s ease;

    position: relative;

}


.service-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

}


.service-icon {

    width: 58px;

    height: 58px;

    background: rgba(12,166,166,0.1);

    color: var(--primary);

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 26px;

    margin-bottom: 22px;

}


.service-card h4 {

    font-size: 20px;

    margin-bottom: 12px;

}


.service-card p {

    font-size: 14px;

    color: #6b7280;

    margin: 0;

}


.featured-service {

    border: 2px solid rgba(12,166,166,0.2);

}


.service-tag {

    display: inline-block;

    margin-top: 20px;

    padding: 5px 12px;

    background: rgba(12,166,166,0.1);

    color: var(--primary-dark);

    font-size: 11px;

    font-weight: 700;

    border-radius: 50px;

}


/* =====================================================
   PREVENTIVE HEALTH
===================================================== */

.preventive-section {

    background: var(--dark);

}


.preventive-section .section-title {

    color: white;

}


.preventive-section .section-text {

    color: rgba(255,255,255,0.75);

}


.preventive-image {

    overflow: hidden;

    border-radius: 24px;

}


.preventive-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

}


.check-list {

    margin-top: 25px;

}


.check-list div {

    color: rgba(255,255,255,0.9);

    margin-bottom: 12px;

    display: flex;

    align-items: center;

    gap: 10px;

}


.check-list i {

    color: #7de0e0;

}


/* =====================================================
   TPA & CORPORATE PANELS
===================================================== */

.panels-section {

    background: white;

}


.panel-box {

    height: 100%;

    background: var(--light);

    border: 1px solid #e3eeee;

    border-radius: 24px;

    padding: 35px;

    transition: all 0.3s ease;

}


.panel-box:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow);

}


.panel-box-heading {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;

}


.panel-box-icon {

    width: 55px;

    height: 55px;

    min-width: 55px;

    border-radius: 16px;

    background: rgba(12,166,166,0.1);

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

}


.panel-box-heading h3 {

    font-size: 22px;

    margin: 0 0 5px;

}


.panel-box-heading p {

    margin: 0;

    color: #6b7280;

    font-size: 13px;

}


.panel-list {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.panel-badge {

    background: white;

    border: 1px solid #dceaea;

    color: var(--dark);

    padding: 11px 17px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    transition: all 0.2s ease;

}


.panel-badge:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: white;

    transform: translateY(-2px);

}


.corporate-panel-box {

    background: var(--light);

    border-color: #e3eeee;

}


.corporate-panel-box .panel-box-heading h3 {

    color: var(--dark);

}


.corporate-panel-box .panel-box-heading p {

    color: #6b7280;

}


.corporate-panel-box .panel-box-icon {

    background: rgba(12,166,166,0.1);

    color: var(--primary);

}


.corporate-list {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

}


.corporate-list span {

    background: white;

    border: 1px solid #dceaea;

    color: var(--dark);

    padding: 11px 15px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 600;

}

.corporate-list span {

    transition: all 0.2s ease;

}


.corporate-list span:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: white;

    transform: translateY(-2px);

}

.panel-note {

    text-align: center;

    color: #9ca3af;

    font-size: 12px;

    margin: 25px auto 0;

    max-width: 700px;

}


/* =====================================================
   DOCTOR
===================================================== */

.doctor-section {

    background: #faf9f7;

}


/* Doctor Photo */

.doctor-photo {

    border-radius: 30px;

    overflow: hidden;

    background: #eee8e1;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);

}


.doctor-photo img {

    width: 100%;

    height: 620px;

    object-fit: cover;

    object-position: center top;

    display: block;

}


/* Doctor Name */

.doctor-name {

    margin-top: 25px;

    margin-bottom: 3px;

    font-size: 32px;

}


.doctor-title {

    color: var(--primary);

    font-weight: 600;

    font-size: 16px;

    margin-bottom: 22px;

}


/* Credentials */

.doctor-credentials {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

    margin-top: 30px;

}


.credential-card {

    background: white;

    border: 1px solid #e3eeee;

    border-radius: 14px;

    padding: 17px 12px;

    text-align: center;

}


.credential-number {

    color: var(--primary);

    font-size: 22px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 6px;

}


.credential-label {

    color: #6b7280;

    font-size: 11px;

    line-height: 1.35;

}


/* Areas of Practice */

.doctor-interests {

    margin-top: 32px;

}


.doctor-interests h5 {

    font-size: 16px;

    margin-bottom: 13px;

}


.interest-list {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

}


.interest-list span {

    background: white;

    border: 1px solid #dceaea;

    color: var(--dark);

    padding: 8px 13px;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 500;

    transition: all 0.2s ease;

}


.interest-list span:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: white;

    transform: translateY(-2px);

}


/* Professional Journey */

.doctor-journey {

    margin-top: 110px;

}


.timeline {

    max-width: 900px;

    margin: 0 auto;

    position: relative;

}


.timeline::before {

    content: "";

    position: absolute;

    left: 125px;

    top: 10px;

    bottom: 10px;

    width: 2px;

    background: #dceaea;

}


.timeline-item {

    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 50px;

    position: relative;

    margin-bottom: 38px;

}


.timeline-item::before {

    content: "";

    position: absolute;

    left: 120px;

    top: 8px;

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: var(--primary);

    border: 3px solid #f7fbfb;

    box-sizing: content-box;

}


.timeline-year {

    text-align: right;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    padding-top: 2px;

}


.timeline-content {

    padding-left: 20px;

}


.timeline-content h4 {

    font-size: 18px;

    margin-bottom: 4px;

}


.timeline-role {

    color: var(--primary);

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 8px;

}


.timeline-content p:not(.timeline-role) {

    color: #6b7280;

    font-size: 13px;

    margin: 0;

    max-width: 650px;

}


/* Mobile */

@media (max-width: 991px) {

    .doctor-photo img {

        height: 550px;

    }


    .doctor-credentials {

        grid-template-columns: repeat(2, 1fr);

    }


    .doctor-journey {

        margin-top: 80px;

    }

}


@media (max-width: 575px) {

    .doctor-photo img {

        height: 500px;

    }


    .doctor-name {

        font-size: 28px;

    }


    .timeline::before {

        left: 7px;

    }


    .timeline-item {

        display: block;

        padding-left: 30px;

        margin-bottom: 35px;

    }


    .timeline-item::before {

        left: 0;

        top: 3px;

    }


    .timeline-year {

        text-align: left;

        margin-bottom: 5px;

    }


    .timeline-content {

        padding-left: 0;

    }

}


/* =====================================================
   GALLERY
===================================================== */

.gallery-intro {
    max-width: 650px;
    margin: 20px auto 45px;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #eef6f6;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-small:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.gallery-small:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.gallery-bottom {
    grid-row: 2;
}

.gallery-bottom:nth-child(4) {
    grid-column: 2;
}

.gallery-wide {
    grid-column: 3;
}


/* Mobile */

@media (max-width: 767px) {

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 160px 160px;
        gap: 12px;
    }

    .gallery-large {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .gallery-small:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .gallery-small:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .gallery-bottom:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    .gallery-wide {
        grid-column: 2;
        grid-row: 3;
    }

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: #111827;

    color: rgba(255,255,255,0.7);

    padding: 60px 0 25px;

}


.footer-logo {

    width: 65px;

    margin-bottom: 15px;

}


.footer-description {

    max-width: 400px;

    font-size: 14px;

}


.footer h5 {

    color: white;

    font-size: 15px;

    margin-bottom: 18px;

}


.footer a {

    display: block;

    color: rgba(255,255,255,0.65);

    margin-bottom: 10px;

    font-size: 14px;

}


.footer a:hover {

    color: #8de1e1;

}


.footer hr {

    border-color: rgba(255,255,255,0.1);

    margin: 35px 0 20px;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 12px;

}


/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.floating-whatsapp {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: #25d366;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.2);

    z-index: 999;

    transition: transform 0.25s ease;

}


.floating-whatsapp:hover {

    color: white;

    transform: scale(1.08);

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .nav-link {

        margin-left: 0;

        padding: 10px 0;

    }

    .hero-section {

        min-height: 700px;

    }

}


@media (max-width: 767px) {

    .section-padding {

        padding: 70px 0;

    }


    .hero-section {

        min-height: 700px;

        background-position: 60% center;

    }


    .hero-section h1 {

        font-size: 42px;

        letter-spacing: -1px;

    }


    .hero-text {

        font-size: 16px;

    }


    .hero-highlights {

        gap: 12px;

        flex-direction: column;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-buttons .btn {

        text-align: center;

    }


    .quick-info-item {

        padding: 25px 10px;

        border-bottom: 1px solid #eeeeee;

    }


    .about-image img,
    .preventive-image img {

        height: 350px;

    }


    .corporate-box {

        padding: 25px;

    }


    .corporate-heading {

        align-items: flex-start;

    }


    .gallery-grid img {

        height: 250px;

    }


    .footer-bottom {

        flex-direction: column;

    }


    .floating-whatsapp {

        right: 16px;

        bottom: 16px;

    }

}

/* =====================================================
   DOCTOR PAGE
===================================================== */


/* -----------------------------------------------------
   DOCTOR PAGE INTRO
----------------------------------------------------- */

.doctor-profile-page {

    padding: 75px 0 90px;

    background: #faf9f7;

}


.doctor-page-photo {

    width: 100%;

    max-width: 520px;

    margin: 0 auto;

    border-radius: 30px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);

}


.doctor-page-photo img {

    width: 100%;

    height: 610px;

    object-fit: cover;

    object-position: center top;

    display: block;

}


.doctor-page-title {

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.5px;

    color: var(--dark);

    margin: 15px 0 25px;

    max-width: 750px;

}


.doctor-page-title span {

    color: var(--primary);

}


.doctor-page-name {

    font-size: 30px;

    font-weight: 750;

    color: var(--dark);

    margin-bottom: 5px;

}


.doctor-page-role {

    color: var(--primary);

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 25px;

}


.doctor-page-text {

    color: #52606d;

    font-size: 15px;

    line-height: 1.8;

    max-width: 720px;

    margin-bottom: 18px;

}



/* -----------------------------------------------------
   CREDENTIAL CARDS
----------------------------------------------------- */

.doctor-page-credentials {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

    margin-top: 30px;

}


.doctor-page-credential {

    background: white;

    border: 1px solid #e1ecec;

    border-radius: 16px;

    padding: 20px 10px;

    text-align: center;

    transition: all 0.2s ease;

}


.doctor-page-credential:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

}


.doctor-page-credential strong {

    display: block;

    color: var(--primary);

    font-size: 23px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 7px;

}


.doctor-page-credential span {

    display: block;

    color: #718096;

    font-size: 11px;

    line-height: 1.4;

}



/* -----------------------------------------------------
   CLINICAL APPROACH
----------------------------------------------------- */

.doctor-about-section {

    padding: 100px 0;

    background: white;

}


.doctor-practice-box {

    background: #f7fbfb;

    border: 1px solid #e0eeee;

    border-radius: 24px;

    padding: 35px;

    height: 100%;

}


.doctor-practice-box h3 {

    font-size: 22px;

    margin-bottom: 25px;

    color: var(--dark);

}


.doctor-practice-list {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.doctor-practice-list span {

    background: white;

    border: 1px solid #dceaea;

    color: var(--dark);

    padding: 11px 15px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    transition: all 0.2s ease;

}


.doctor-practice-list span:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: white;

    transform: translateY(-2px);

}



/* -----------------------------------------------------
   PROFESSIONAL JOURNEY
----------------------------------------------------- */

.doctor-journey-page {

    padding: 100px 0;

    background: #faf9f7;

}


.doctor-journey-page .timeline {

    max-width: 900px;

    margin: 60px auto 0;

    position: relative;

}


.doctor-journey-page .timeline::before {

    content: "";

    position: absolute;

    left: 125px;

    top: 10px;

    bottom: 10px;

    width: 2px;

    background: #dceaea;

}


.doctor-journey-page .timeline-item {

    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 50px;

    position: relative;

    margin-bottom: 48px;

}


.doctor-journey-page .timeline-item::before {

    content: "";

    position: absolute;

    left: 120px;

    top: 7px;

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: var(--primary);

    border: 3px solid #faf9f7;

    box-sizing: content-box;

}


.doctor-journey-page .timeline-year {

    text-align: right;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    padding-top: 2px;

}


.doctor-journey-page .timeline-content {

    padding-left: 20px;

    text-align: left;

}


.doctor-journey-page .timeline-content h4 {

    font-size: 20px;

    margin-bottom: 5px;

    color: var(--dark);

    font-weight: 750;

}


.doctor-journey-page .timeline-role {

    color: var(--primary);

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 8px;

}


.doctor-journey-page .timeline-content p:not(.timeline-role) {

    color: #687782;

    font-size: 13px;

    line-height: 1.7;

    margin: 0;

    max-width: 680px;

}



/* -----------------------------------------------------
   MOBILE
----------------------------------------------------- */

@media (max-width: 991px) {

    .doctor-profile-page {

        padding: 70px 0 80px;

    }


    .doctor-page-photo {

        max-width: 600px;

    }


    .doctor-page-photo img {

        height: 600px;

    }


    .doctor-page-credentials {

        grid-template-columns: repeat(2, 1fr);

    }


    .doctor-about-section,
    .doctor-journey-page {

        padding: 80px 0;

    }

}


@media (max-width: 575px) {

    .doctor-profile-page {

        padding: 50px 0 60px;

    }


    .doctor-page-photo img {

        height: 500px;

    }


    .doctor-page-title {

        font-size: 40px;

        letter-spacing: -1px;

    }


    .doctor-page-name {

        font-size: 27px;

    }


    .doctor-page-credentials {

        grid-template-columns: repeat(2, 1fr);

    }


    .doctor-practice-box {

        padding: 25px;

    }


    .doctor-journey-page .timeline {

        margin-top: 45px;

    }


    .doctor-journey-page .timeline::before {

        left: 7px;

    }


    .doctor-journey-page .timeline-item {

        display: block;

        padding-left: 30px;

        margin-bottom: 35px;

    }


    .doctor-journey-page .timeline-item::before {

        left: 0;

        top: 3px;

    }


    .doctor-journey-page .timeline-year {

        text-align: left;

        margin-bottom: 6px;

    }


    .doctor-journey-page .timeline-content {

        padding-left: 0;

    }

}

/* -----------------------------------------------------
   DOCTOR CLINICAL INTERESTS
----------------------------------------------------- */

.doctor-interests {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 22px;

}


.doctor-interests span {

    color: var(--primary);

    background: rgba(10, 166, 173, 0.07);

    border: 1px solid rgba(10, 166, 173, 0.18);

    padding: 8px 13px;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 650;

}

/* -----------------------------------------------------
   PROFESSIONAL JOURNEY - REFINED
----------------------------------------------------- */

.doctor-journey-page .timeline-content p:not(.timeline-role) {

    color: #687782;

    font-size: 13px;

    line-height: 1.75;

    margin: 0;

    max-width: 680px;

}


.doctor-journey-page .timeline-item {

    margin-bottom: 52px;

}


.doctor-journey-page .timeline-content h4 {

    font-size: 20px;

    margin-bottom: 6px;

    color: var(--dark);

    font-weight: 750;

}


.doctor-journey-page .timeline-role {

    color: var(--primary);

    font-size: 13px;

    font-weight: 650;

    margin-bottom: 9px;

}

/* -----------------------------------------------------
   QUALIFICATIONS & LANGUAGES
----------------------------------------------------- */

.doctor-credentials-section {

    padding: 100px 0;

    background: white;

}


.doctor-credentials-card {

    height: 100%;

    padding: 10px 0;

}


.doctor-credentials-card .section-title {

    max-width: 600px;

    margin-bottom: 35px;

}


.qualification-item {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid #e5eeee;

}


.qualification-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: rgba(10, 166, 173, 0.08);

    color: var(--primary);

    font-size: 21px;

}


.qualification-item h4 {

    font-size: 17px;

    font-weight: 700;

    color: var(--dark);

    margin: 0 0 4px;

}


.qualification-item p {

    font-size: 13px;

    color: #687782;

    margin: 0;

}


.qualification-note {

    margin-top: 25px;

    color: #687782;

    font-size: 13px;

    line-height: 1.7;

    max-width: 580px;

}



/* LANGUAGES */

.doctor-languages-card {

    height: 100%;

    padding: 35px;

    background: #f7fbfb;

    border: 1px solid #e0eeee;

    border-radius: 24px;

}


.doctor-languages-card h3 {

    font-size: 23px;

    line-height: 1.35;

    color: var(--dark);

    margin: 12px 0 30px;

    max-width: 420px;

}


.language-list {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.language-list span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 10px 15px;

    border-radius: 50px;

    background: white;

    border: 1px solid #dceaea;

    color: var(--dark);

    font-size: 13px;

    font-weight: 600;

}


.language-list i {

    color: var(--primary);

    font-size: 14px;

}



/* MOBILE */

@media (max-width: 991px) {

    .doctor-credentials-section {

        padding: 80px 0;

    }

}


@media (max-width: 575px) {

    .doctor-credentials-section {

        padding: 60px 0;

    }

    .doctor-languages-card {

        padding: 28px;

    }

}

/* -----------------------------------------------------
   DOCTOR FINAL CTA
----------------------------------------------------- */

.doctor-final-cta {

    padding: 90px 0;

    background: #fafcfc;

}


.doctor-final-cta-box {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

    padding: 55px 60px;

    background: #f3fafa;

    border: 1px solid #d9eeee;

    border-radius: 28px;

    overflow: hidden;

}


/* subtle decorative accent */

.doctor-final-cta-box::after {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    background: rgba(10, 166, 173, 0.06);

    right: -80px;

    bottom: -100px;

    pointer-events: none;

}


.doctor-final-cta-content {

    position: relative;

    z-index: 1;

    max-width: 700px;

}


.doctor-final-cta-content h2 {

    color: var(--dark);

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.12;

    font-weight: 800;

    margin: 12px 0 18px;

}


.doctor-final-cta-content h2 span {

    color: var(--primary);

}


.doctor-final-cta-content p {

    color: #687782;

    font-size: 15px;

    line-height: 1.7;

    max-width: 650px;

    margin: 0;

}


.doctor-final-cta-action {

    position: relative;

    z-index: 2;

    flex-shrink: 0;

    text-align: center;

}


.doctor-whatsapp-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 24px;

    border-radius: 50px;

    background: var(--primary);

    color: white;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 8px 20px rgba(10, 166, 173, 0.18);

    transition: all 0.25s ease;

}


.doctor-whatsapp-button:hover {

    color: white;

    background: #078f96;

    transform: translateY(-2px);

    box-shadow: 0 12px 24px rgba(10, 166, 173, 0.24);

}


.doctor-whatsapp-button i:first-child {

    font-size: 17px;

}


.doctor-whatsapp-button i:last-child {

    font-size: 13px;

    transition: transform 0.2s ease;

}


.doctor-whatsapp-button:hover i:last-child {

    transform: translate(2px, -2px);

}


.doctor-final-cta-location {

    margin-top: 14px;

    color: #687782;

    font-size: 13px;

}


.doctor-final-cta-location i {

    color: var(--primary);

    margin-right: 5px;

}



/* MOBILE */

@media (max-width: 767px) {

    .doctor-final-cta {

        padding: 60px 0;

    }


    .doctor-final-cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 40px 28px;

        gap: 30px;

    }


    .doctor-final-cta-action {

        width: 100%;

        text-align: left;

    }


    .doctor-whatsapp-button {

        width: 100%;

    }

}

/* =====================================================
   MEET YOUR DOCTOR — HOMEPAGE TEASER
===================================================== */

.doctor-teaser {
    background: #ffffff;
    padding: 100px 0;
}


.doctor-teaser .row {
    min-height: 520px;
}


/* TEXT */

.doctor-teaser .section-label {
    margin-bottom: 14px;
}


.doctor-teaser .section-title {
    max-width: 650px;
    margin-bottom: 22px;
}


.doctor-teaser-name {
    color: var(--dark);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 4px;
}


.doctor-teaser-role {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}


.doctor-teaser .section-text {
    max-width: 620px;
    margin-bottom: 0;
}


/* BUTTON */

.doctor-teaser .btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}


.doctor-teaser .btn-primary-custom i {
    transition: transform 0.2s ease;
}


.doctor-teaser .btn-primary-custom:hover i {
    transform: translateX(4px);
}


/* IMAGE */

.doctor-teaser-image {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
}


.doctor-teaser-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;

    border-radius: 24px;

    box-shadow: 0 18px 45px rgba(20, 35, 50, 0.10);
}


/* MOBILE */

@media (max-width: 991px) {

    .doctor-teaser {
        padding: 80px 0;
    }

    .doctor-teaser .row {
        min-height: auto;
    }

    .doctor-teaser-image {
        max-width: 520px;
        margin: 20px auto 0;
    }

}


@media (max-width: 767px) {

    .doctor-teaser {
        padding: 65px 0;
    }

    .doctor-teaser-name {
        font-size: 24px;
    }

    .doctor-teaser-image img {
        height: 430px;
    }

}

/* =====================================================
   VISIT / CONTACT SECTION
===================================================== */

.contact-section {
    background: #ffffff;
}


/* Section heading */

.contact-section .section-heading {
    max-width: 780px;
    margin: 0 auto 3.5rem;
}

.contact-section .section-subtitle {
    max-width: 680px;
    margin: 1rem auto 0;
}


/* =====================================================
   VISIT CARD
===================================================== */

.visit-card {
    height: 100%;
    background: #f4fafa;
    border: 1px solid rgba(0, 169, 174, 0.15);
    border-radius: 24px;
    padding: 2.1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* =====================================================
   VISIT ITEMS
===================================================== */

.visit-item {
    padding-bottom: 1.35rem;
    margin-bottom: 1.35rem;
}

.visit-item:last-of-type {
    margin-bottom: 0;
}


.visit-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(0, 169, 174, 0.10);
    color: var(--primary);

    font-size: 1.15rem;
}


.visit-item h5 {
    margin: 0 0 0.4rem;

    font-size: 1.05rem;
    font-weight: 700;

    color: var(--dark);
}


.visit-item p {
    margin: 0;

    color: var(--text);
    line-height: 1.7;
}


.visit-item p + p {
    margin-top: 0.75rem;
}


.visit-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}


.visit-item a:hover {
    color: var(--dark);
}


/* =====================================================
   ACTION BUTTONS
===================================================== */

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;

    margin-top: 0.25rem;
}


.visit-actions .btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 0.5rem;

    border-radius: 999px;

    padding: 0.75rem 1.25rem;

    font-weight: 600;
}


.btn-outline-custom {
    background: transparent;

    border: 1px solid rgba(0, 0, 0, 0.15);

    color: var(--dark);

    transition: all 0.2s ease;
}


.btn-outline-custom:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: #ffffff;
}


/* =====================================================
   MAP
===================================================== */

.map-container {
    height: 100%;
    min-height: 560px;

    overflow: hidden;

    border-radius: 24px;

    border: 1px solid rgba(0, 169, 174, 0.15);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}


.map-container iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =====================================================
   MAP RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .map-container {
        min-height: 450px;
    }

}


@media (max-width: 576px) {

    .map-container {
        min-height: 350px;
        border-radius: 18px;
    }

}


/* =====================================================
   MOBILE RESPONSIVENESS - CONTACT SECTION
===================================================== */

@media (max-width: 991px) {

    .contact-section .row {
        --bs-gutter-y: 2rem;
    }

    .contact-section .map-container {
        min-height: 350px;
        height: 350px;
    }

    .contact-section .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

}

@media (max-width: 576px) {

    .contact-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .contact-section .section-title {
        font-size: 1.9rem;
    }

    .contact-section .map-container {
        min-height: 300px;
        height: 300px;
        border-radius: 18px;
    }

    .contact-section .btn {
        font-size: 0.9rem;
    }

}