:root {

    --primary: #087f8c;
    --primary-dark: #05636d;
    --secondary: #e9f8f7;

    --dark: #102a2e;
    --text: #52676a;
    --light-text: #718589;

    --white: #ffffff;
    --light: #f7fbfb;

    --border: #e3eeee;

    --shadow:
        0 20px 60px rgba(16, 42, 46, 0.08);

    --radius: 20px;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "DM Sans", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: "Plus Jakarta Sans", sans-serif;

    color: var(--dark);

    font-weight: 700;

}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* ================= TOP BAR ================= */

.top-bar {

    background: var(--dark);

    color: #d5e4e5;

    font-size: 13px;

    padding: 9px 0;

}

.top-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.top-content span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-content i {
    color: #68cbd0;
}

.top-social {

    display: flex;

    gap: 15px;

}

.top-social a {

    color: #c9d9da;

    transition: 0.3s;

}

.top-social a:hover {
    color: #6dd2d5;
}


/* ================= NAVBAR ================= */

.main-navbar {

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0,0,0,0.04);

    padding: 15px 0;

    z-index: 999;

}

.navbar-brand {

    display: flex;

    align-items: center;

    gap: 11px;

    color: var(--dark);

}

.navbar-brand:hover {
    color: var(--dark);
}

.brand-icon {

    width: 43px;
    height: 43px;

    background: var(--primary);

    color: white;

    border-radius: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

}

.navbar-brand strong,
.footer-brand strong {

    display: block;

    font-family: "Plus Jakarta Sans";

    font-size: 19px;

    line-height: 1.1;

}

.navbar-brand small,
.footer-brand small {

    display: block;

    font-size: 8px;

    letter-spacing: 2px;

    font-weight: 700;

    color: var(--primary);

    margin-top: 3px;

}

.navbar-nav {
    gap: 5px;
}

.nav-link {

    color: #40575a !important;

    font-weight: 600;

    font-size: 14px;

    padding: 9px 14px !important;

    transition: 0.3s;

}

.nav-link:hover,
.nav-link.active {

    color: var(--primary) !important;

}


/* ================= BUTTON ================= */

.btn-primary-custom {

    background: var(--primary);

    border: 1px solid var(--primary);

    color: white;

    border-radius: 10px;

    padding: 12px 21px;

    font-weight: 700;

    font-size: 14px;

    transition: 0.3s;

}

.btn-primary-custom:hover {

    background: var(--primary-dark);

    border-color: var(--primary-dark);

    color: white;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(8,127,140,0.2);

}

.btn-primary-custom i {
    margin-left: 7px;
}

.btn-outline-custom {

    border: 1px solid #d4e2e3;

    color: var(--dark);

    border-radius: 10px;

    padding: 12px 21px;

    font-weight: 700;

    font-size: 14px;

    margin-left: 8px;

}

.btn-outline-custom:hover {

    border-color: var(--primary);

    color: var(--primary);

}


/* ================= HERO ================= */

.hero-section {

    background:
        radial-gradient(
            circle at 85% 20%,
            #dff6f4 0,
            transparent 30%
        ),

        linear-gradient(
            180deg,
            #f9fdfd,
            #ffffff
        );

    padding: 100px 0 90px;

    position: relative;

    overflow: hidden;

}

.hero-section::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: #e8f7f6;

    left: -250px;
    bottom: -250px;

    opacity: 0.5;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    background: #e7f6f5;

    color: var(--primary);

    border-radius: 30px;

    padding: 8px 14px;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 23px;

}

.hero-badge span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #31b8a9;

}

.hero-section h1 {

    font-size: clamp(46px, 6vw, 78px);

    line-height: 1.06;

    letter-spacing: -3px;

    margin-bottom: 25px;

}

.hero-section h1 span {

    color: var(--primary);

}

.hero-description {

    max-width: 550px;

    font-size: 17px;

    color: var(--text);

    margin-bottom: 30px;

}

.hero-buttons {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

}

.hero-trust {

    display: flex;

    align-items: center;

    margin-top: 45px;

}

.trust-item {

    display: flex;

    flex-direction: column;

}

.trust-item strong {

    color: var(--dark);

    font-family: "Plus Jakarta Sans";

    font-size: 22px;

}

.trust-item span {

    color: var(--light-text);

    font-size: 12px;

}

.trust-line {

    width: 1px;

    height: 35px;

    background: #d9e4e5;

    margin: 0 22px;

}

.hero-image-wrapper {

    position: relative;

    min-height: 550px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.hero-circle {

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #d9f3f1,
            #b8e4e2
        );

    position: absolute;

}

.hero-doctor {

    width: 430px;
    height: 530px;

    object-fit: cover;

    object-position: center;

    border-radius: 220px 220px 20px 20px;

    position: relative;

    z-index: 2;

    box-shadow:
        0 30px 70px rgba(16,42,46,0.16);

}

.floating-card {

    position: absolute;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(12px);

    border-radius: 15px;

    box-shadow:
        0 18px 50px rgba(16,42,46,0.13);

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 17px;

}

.floating-card strong {

    display: block;

    color: var(--dark);

    font-family: "Plus Jakarta Sans";

}

.floating-card small {

    display: block;

    font-size: 10px;

    color: var(--light-text);

}

.experience-card {

    top: 80px;

    left: 10px;

}

.floating-icon {

    width: 40px;
    height: 40px;

    border-radius: 11px;

    background: #e8f7f5;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 19px;

}

.patient-card {

    right: 0;

    bottom: 55px;

}

.patient-avatars {

    display: flex;

    align-items: center;

}

.patient-avatars img,
.patient-avatars span {

    width: 31px;
    height: 31px;

    border-radius: 50%;

    border: 2px solid white;

    margin-left: -8px;

}

.patient-avatars img:first-child {
    margin-left: 0;
}

.patient-avatars span {

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: white;

    font-size: 11px;

}


/* ================= QUICK INFO ================= */

.quick-info {

    position: relative;

    z-index: 10;

    margin-top: -30px;

}

.quick-wrapper {

    background: white;

    border-radius: 18px;

    box-shadow:
        0 20px 60px rgba(16,42,46,0.1);

    padding: 25px 30px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}

.quick-item {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 0 20px;

    border-right: 1px solid #e8eeee;

}

.quick-item:last-child {
    border-right: none;
}

.quick-icon {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    background: #e8f7f5;

    color: var(--primary);

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

}

.quick-item h6 {

    font-size: 13px;

    margin-bottom: 2px;

}

.quick-item p {

    margin: 0;

    color: var(--light-text);

    font-size: 11px;

}


/* ================= COMMON SECTION ================= */

.section-padding {
    padding: 110px 0;
}

.section-label {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 14px;

}

.section-title {

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 20px;

}

.section-title span {
    color: var(--primary);
}

.section-text {

    font-size: 15px;

    color: var(--text);

    margin-bottom: 15px;

}

.section-heading {

    max-width: 680px;

    margin: auto;

}

.section-heading p {

    color: var(--light-text);

    max-width: 580px;

    margin: auto;

}


/* ================= ABOUT ================= */

.about-section {
    background: white;
}

.about-image {

    position: relative;

    padding-right: 40px;

}

.about-image img {

    width: 100%;

    height: 550px;

    object-fit: cover;

    border-radius: 22px;

}

.about-experience {

    position: absolute;

    right: 0;

    bottom: 35px;

    background: var(--dark);

    color: white;

    padding: 20px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    gap: 12px;

    box-shadow:
        0 20px 40px rgba(16,42,46,0.2);

}

.about-experience strong {

    font-size: 35px;

    font-family: "Plus Jakarta Sans";

    color: #7ad5d4;

}

.about-experience span {

    font-size: 11px;

    line-height: 1.5;

}

.about-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-top: 25px;

}

.about-points div {

    color: var(--dark);

    font-size: 13px;

    font-weight: 600;

}

.about-points i {

    color: var(--primary);

    margin-right: 7px;

}


/* ================= SERVICES ================= */

.services-section {

    background: var(--light);

}

.service-card {

    height: 100%;

    background: white;

    border: 1px solid #e8eeee;

    border-radius: 18px;

    padding: 30px;

    transition: 0.35s;

    position: relative;

    overflow: hidden;

}

.service-card::before {

    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: #effaf9;

    right: -25px;
    top: -25px;

    transition: 0.35s;

}

.service-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(16,42,46,0.09);

    border-color: transparent;

}

.service-card:hover::before {
    transform: scale(2);
}

.service-icon {

    width: 57px;
    height: 57px;

    background: #e9f8f7;

    color: var(--primary);

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

    margin-bottom: 22px;

    position: relative;

    z-index: 2;

}

.service-card h4 {

    font-size: 19px;

    margin-bottom: 12px;

}

.service-card p {

    color: var(--light-text);

    font-size: 13px;

    margin-bottom: 22px;

}

.service-card a {

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

}

.service-card a i {
    margin-left: 5px;
}


/* ================= WHY ================= */

.why-section {

    background: #f4faf9;

}

.why-list {
    margin-top: 30px;
}

.why-item {

    display: flex;

    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid #dbe9e8;

}

.why-number {

    font-family: "Plus Jakarta Sans";

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    padding-top: 4px;

}

.why-item h5 {

    font-size: 16px;

    margin-bottom: 5px;

}

.why-item p {

    margin: 0;

    color: var(--light-text);

    font-size: 12px;

}

.why-image {

    position: relative;

}

.why-image > img {

    width: 100%;

    height: 530px;

    object-fit: cover;

    border-radius: 22px;

}

.doctor-note {

    position: absolute;

    bottom: 25px;

    left: -25px;

    background: white;

    border-radius: 15px;

    padding: 16px 20px;

    display: flex;

    align-items: center;

    gap: 12px;

    box-shadow:
        0 15px 40px rgba(16,42,46,0.13);

}

.note-icon {

    width: 40px;
    height: 40px;

    background: #e7f7f5;

    color: var(--primary);

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.doctor-note strong,
.doctor-note span {

    display: block;

}

.doctor-note strong {
    font-size: 12px;
}

.doctor-note span {

    color: var(--light-text);

    font-size: 10px;

}


/* ================= DOCTORS ================= */

.doctors-section {
    background: white;
}

.doctor-card {

    background: white;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #e7eeee;

    transition: 0.35s;

}

.doctor-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 25px 55px rgba(16,42,46,0.1);

}

.doctor-image {

    height: 350px;

    position: relative;

    overflow: hidden;

    background: #eaf5f4;

}

.doctor-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;

}

.doctor-card:hover .doctor-image img {
    transform: scale(1.04);
}

.doctor-social {

    position: absolute;

    bottom: 15px;

    right: 15px;

    display: flex;

    gap: 7px;

}

.doctor-social a {

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: white;

    color: var(--dark);

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 7px 20px rgba(0,0,0,0.1);

}

.doctor-info {

    padding: 23px;

}

.doctor-info > span {

    font-size: 11px;

    color: var(--primary);

    font-weight: 700;

}

.doctor-info h4 {

    font-size: 19px;

    margin: 5px 0;

}

.doctor-info p {

    color: var(--light-text);

    font-size: 12px;

    margin: 0;

}


/* ================= APPOINTMENT ================= */

.appointment-section {

    background: var(--light);

}

.appointment-box {

    background:
        linear-gradient(
            120deg,
            #0e383d,
            #075d65
        );

    border-radius: 25px;

    padding: 60px;

    color: white;

    overflow: hidden;

    position: relative;

}

.appointment-box::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    border: 70px solid rgba(255,255,255,0.04);

    right: -160px;

    bottom: -200px;

}

.appointment-box .section-label {
    color: #72d6d5;
}

.appointment-box h2 {

    color: white;

    font-size: 38px;

    line-height: 1.2;

    margin-bottom: 17px;

}

.appointment-box > .row > .col-lg-5 p {

    color: #c2d7d8;

    font-size: 14px;

}

.appointment-contact {

    margin-top: 30px;

}

.appointment-contact > div {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 16px;

}

.appointment-contact i {

    width: 40px;
    height: 40px;

    background: rgba(255,255,255,0.1);

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #76d7d5;

}

.appointment-contact span {

    font-size: 10px;

    color: #9ebabb;

}

.appointment-contact strong {

    display: block;

    font-size: 12px;

    color: white;

}

.appointment-form {

    background: white;

    border-radius: 18px;

    padding: 28px;

    position: relative;

    z-index: 3;

}

.appointment-form label {

    display: block;

    color: var(--dark);

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 6px;

}

.form-control,
.form-select {

    border: 1px solid #dce8e8;

    border-radius: 9px;

    min-height: 45px;

    font-size: 12px;

    color: var(--dark);

}

.form-control:focus,
.form-select:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(8,127,140,0.1);

}


/* ================= REVIEWS ================= */

.reviews-section {

    background: white;

}

.review-card {

    height: 100%;

    border: 1px solid #e4eeee;

    border-radius: 18px;

    padding: 30px;

    transition: 0.3s;

}

.review-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(16,42,46,0.08);

}

.featured-review {

    background: var(--dark);

    border-color: var(--dark);

}

.featured-review p,
.featured-review .review-user strong {

    color: white;

}

.stars {

    color: #e7b75b;

    letter-spacing: 3px;

    margin-bottom: 17px;

}

.review-card > p {

    font-size: 14px;

    line-height: 1.8;

    color: var(--text);

    margin-bottom: 25px;

}

.review-user {

    display: flex;

    align-items: center;

    gap: 11px;

}

.review-user img {

    width: 43px;
    height: 43px;

    border-radius: 50%;

    object-fit: cover;

}

.review-user strong,
.review-user span {

    display: block;

}

.review-user strong {
    font-size: 12px;
}

.review-user span {

    font-size: 10px;

    color: var(--light-text);

}


/* ================= CONTACT ================= */

.contact-section {

    padding: 50px 0;

    background: var(--light);

}

.contact-card {

    background: white;

    border-radius: 16px;

    padding: 25px;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    border: 1px solid #e6eeee;

}

.contact-icon {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    background: #e7f7f5;

    color: var(--primary);

    border-radius: 11px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.contact-card h5 {

    font-size: 14px;

    margin-bottom: 5px;

}

.contact-card p {

    font-size: 11px;

    color: var(--light-text);

    margin: 0;

}


/* ================= FOOTER ================= */

.footer {

    background: #09282c;

    color: #a9c0c1;

    padding: 70px 0 20px;

}

.footer-brand {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: white;

    margin-bottom: 20px;

}

.footer-brand:hover {
    color: white;
}

.footer-description {

    max-width: 350px;

    font-size: 12px;

    line-height: 1.8;

    color: #91abad;

}

.footer-social {

    display: flex;

    gap: 9px;

    margin-top: 20px;

}

.footer-social a {

    width: 35px;
    height: 35px;

    border: 1px solid #315457;

    color: #bdd0d1;

    border-radius: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.3s;

}

.footer-social a:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: white;

}

.footer h6 {

    color: white;

    font-size: 13px;

    margin-bottom: 18px;

}

.footer .col-6 a,
.footer .col-lg-2 a {

    display: block;

    color: #91abad;

    font-size: 11px;

    margin-bottom: 10px;

    transition: 0.3s;

}

.footer a:hover {
    color: #71d3d1;
}

.newsletter {

    display: flex;

    background: #143b3f;

    padding: 5px;

    border-radius: 10px;

}

.newsletter input {

    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: white;

    padding: 10px;

    font-size: 11px;

}

.newsletter input::placeholder {
    color: #77999b;
}

.newsletter button {

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    border: none;

    background: var(--primary);

    color: white;

    border-radius: 8px;

}

.footer-bottom {

    border-top: 1px solid #234649;

    margin-top: 50px;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    font-size: 10px;

    color: #718d8f;

}

.footer-bottom div {

    display: flex;

    gap: 20px;

}

.footer-bottom a {
    color: #718d8f;
}


/* ================= MODAL ================= */

.success-modal {

    border: none;

    border-radius: 20px;

    padding: 40px;

    text-align: center;

}

.success-icon {

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #e6f8f4;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    margin: 0 auto 20px;

}

.success-modal h3 {

    font-size: 23px;

}

.success-modal p {

    font-size: 13px;

    color: var(--light-text);

    margin-bottom: 25px;

}


/* ================= SCROLL ANIMATION ================= */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

}

.reveal.show {

    opacity: 1;

    transform: translateY(0);

}


/* =====================================================
   PREMIUM MEDICAL LOADER
===================================================== */

.page-loader {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    background: #f8fdfd;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 99999;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;

}

.page-loader.loader-hidden {

    opacity: 0;

    visibility: hidden;

}

.loader-content {

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

}


/* Heart */

.loader-heart {

    width: 72px;
    height: 72px;

    background: #087f8c;

    color: #ffffff;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    animation: heartBeat 1.1s infinite;

    box-shadow:
        0 15px 40px rgba(8, 127, 140, 0.22);

}


/* Heartbeat animation */

@keyframes heartBeat {

    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.12);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.12);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }

}

.loader-line {

    width: 130px;

    height: 3px;

    background: #dceeed;

    border-radius: 10px;

    overflow: hidden;

    margin-top: 25px;

}

.loader-line span {

    display: block;

    width: 45%;

    height: 100%;

    background: #087f8c;

    border-radius: 10px;

    animation: loadingLine 1.4s infinite ease-in-out;

}


@keyframes loadingLine {

    0% {
        transform: translateX(-120%);
    }

    50% {
        transform: translateX(120%);
    }

    100% {
        transform: translateX(250%);
    }

}


.loader-content h5 {

    margin-top: 18px;

    margin-bottom: 3px;

    font-family: "Plus Jakarta Sans", sans-serif;

    color: #102a2e;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: -0.5px;

}


.loader-content p {

    margin: 0;

    color: #718589;

    font-size: 11px;

}



/* ==========================================
   FLOATING ACTION BUTTONS
========================================== */

.floating-actions {

    position: fixed;

    right: 24px;

    bottom: 24px;

    z-index: 9990;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

}


.floating-btn {

    width: 52px;

    height: 52px;

    border: none;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-size: 20px;

    cursor: pointer;

    position: relative;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;

}


.floating-btn:hover {

    transform: translateY(-5px) scale(1.05);

}


.whatsapp-btn {

    background: #25d366;

    color: #ffffff;

    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.28);

}


.call-btn {

    background: #087f8c;

    color: #ffffff;

    box-shadow:
        0 10px 30px rgba(8, 127, 140, 0.25);

}

.scroll-top-btn {

    background: #102a2e;

    color: #ffffff;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

}

.scroll-top-btn.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.floating-btn::before {

    content: attr(data-tooltip);

    position: absolute;

    right: 64px;

    top: 50%;

    transform:
        translateY(-50%)
        translateX(5px);

    background: #102a2e;

    color: #ffffff;

    padding: 7px 11px;

    border-radius: 7px;

    font-size: 11px;

    font-weight: 600;

    white-space: nowrap;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: all 0.25s ease;

}


.floating-btn::after {

    content: "";

    position: absolute;

    right: 58px;

    top: 50%;

    transform:
        translateY(-50%)
        translateX(5px);

    border-width: 5px 0 5px 5px;

    border-style: solid;

    border-color:
        transparent
        transparent
        transparent
        #102a2e;

    opacity: 0;

    visibility: hidden;

    transition: all 0.25s ease;

}

.floating-btn:hover::before,
.floating-btn:hover::after {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(-50%)
        translateX(0);

}




/* =====================================================
   CTA SECTION
===================================================== */

.clinic-cta-section {

    padding: 90px 0 100px;

    background: #f7fbfb;

}


.clinic-cta {

    position: relative;

    overflow: hidden;

    padding: 70px 75px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            #073f47 0%,
            #087f8c 55%,
            #0c9aa6 100%
        );

    box-shadow:
        0 30px 70px rgba(7, 63, 71, 0.20);

}


.cta-decoration {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.cta-circle-one {

    width: 330px;

    height: 330px;

    right: -120px;

    top: -170px;

    border: 1px solid rgba(255,255,255,0.16);

}


.cta-circle-two {

    width: 500px;

    height: 500px;

    right: -230px;

    bottom: -380px;

    border: 1px solid rgba(255,255,255,0.10);

}


.cta-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,0.82);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.7px;

    margin-bottom: 18px;

}


.cta-label i {

    font-size: 15px;

}


.clinic-cta h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.8px;

}


.clinic-cta h2 span {

    color: #b8f0ed;

}


.clinic-cta > .container p,
.clinic-cta p {

    max-width: 590px;

    margin: 22px 0 0;

    color: rgba(255,255,255,0.72);

    font-size: 15px;

    line-height: 1.8;

}


.cta-buttons {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 32px;

}


.cta-primary-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 22px;

    border-radius: 12px;

    background: #ffffff;

    color: #073f47;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: all 0.3s ease;

}


.cta-primary-btn i {

    transition: transform 0.3s ease;

}


.cta-primary-btn:hover {

    color: #073f47;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(0,0,0,0.15);

}


.cta-primary-btn:hover i {

    transform: translateX(4px);

}


.cta-call-btn {

    display: flex;

    align-items: center;

    gap: 11px;

    color: #ffffff;

    text-decoration: none;

    transition: all 0.3s ease;

}


.cta-call-btn:hover {

    color: #ffffff;

    transform: translateY(-2px);

}


.call-icon {

    width: 43px;

    height: 43px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,0.13);

    border: 1px solid rgba(255,255,255,0.18);

}


.cta-call-btn small {

    display: block;

    margin-bottom: 2px;

    color: rgba(255,255,255,0.58);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.cta-call-btn strong {

    display: block;

    font-size: 13px;

}


.cta-info-card {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 20px;

    border-radius: 20px;

    background: rgba(255,255,255,0.11);

    border: 1px solid rgba(255,255,255,0.16);

    backdrop-filter: blur(12px);

}


.cta-card-icon {

    flex-shrink: 0;

    width: 54px;

    height: 54px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,0.13);

    color: #ffffff;

    font-size: 22px;

}


.cta-info-card span {

    display: block;

    color: rgba(255,255,255,0.62);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.cta-info-card h4 {

    margin: 5px 0 2px;

    color: #ffffff;

    font-size: 19px;

    font-weight: 800;

}


.cta-info-card p {

    margin: 0 !important;

    color: rgba(255,255,255,0.62) !important;

    font-size: 11px !important;

}



.cta-trust {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 22px;

    padding: 15px 17px;

    border-radius: 17px;

    background: rgba(0,0,0,0.10);

}


.trust-avatars {

    display: flex;

    padding-left: 5px;

}


.trust-avatars span {

    width: 31px;

    height: 31px;

    margin-left: -5px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #087f8c;

    border: 2px solid #087f8c;

    font-size: 8px;

    font-weight: 800;

}


.cta-trust strong {

    display: block;

    color: #ffffff;

    font-size: 11px;

}


.cta-trust small {

    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,0.55);

    font-size: 9px;

}
