:root {
    --brand: #009a88;
    --brand-dark: #001d42;
    --brand-light: #d9f5f1;

    --ink: #001d42;
    --muted: #64748b;
    --line: #e2e8f0;
    --bg: #f5f9fa;

    --sidebar: #001d42;
    --sidebar-2: #009a88;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        sans-serif;
}

a {
    text-decoration: none;
}

.text-brand {
    color: var(--brand-dark) !important;
}

.bg-brand {
    background: var(--brand) !important;
}

.btn-brand {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.btn-brand:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.btn-outline-brand {
    color: var(--brand-dark);
    border-color: var(--brand);
}

.btn-outline-brand:hover {
    background: var(--brand);
    color: #fff;
}

/* ---------- App shell ---------- */

.app-wrap {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--sidebar), var(--sidebar-2));
    color: #cbeae8;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    z-index: 1040;
    transition: 0.25s;
}

.sidebar .brand {
    padding: 20px 22px;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar .brand .dot {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--brand);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1rem;
}

.sidebar .nav-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5fbdb8;
    padding: 16px 22px 6px;
    font-weight: 700;
}

.sidebar a.side-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    color: #bfe6e3;
    font-size: 0.92rem;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.sidebar a.side-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.sidebar a.side-link.active {
    background: rgba(0, 154, 136, 0.18);
    color: #fff;
    border-left-color: var(--brand);
}

.sidebar a.side-link i {
    font-size: 1.05rem;
    width: 20px;
    text-align: center;
}

.content {
    flex: 1;
    margin-left: 260px;
    min-width: 0;
}

.topbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.topbar .page-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.main {
    padding: 26px 24px;
}

@media (max-width: 991px) {
    .sidebar {
        left: -280px;
    }

    .sidebar.show {
        left: 0;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    }

    .content {
        margin-left: 0;
    }
}

.backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1035;
}

.backdrop.show {
    display: block;
}

/* ---------- Cards / stats ---------- */

.card {
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(0, 29, 66, 0.04);
}

.card-head {
    font-weight: 700;
    font-size: 0.98rem;
}

.stat-card {
    border-radius: 14px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
}

.stat-card .ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
}

.stat-card .num {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.stat-card .lbl {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.soft-teal {
    background: var(--brand-light);
    color: var(--brand-dark);
}

.soft-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.soft-amber {
    background: #fef3c7;
    color: #b45309;
}

.soft-rose {
    background: #ffe4e6;
    color: #be123c;
}

.soft-violet {
    background: #ede9fe;
    color: #6d28d9;
}

.soft-green {
    background: #dcfce7;
    color: #15803d;
}

.badge-soft {
    padding: 0.35em 0.7em;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.74rem;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ---------- Journey timeline ---------- */

.flow-track {
    position: relative;
    padding-left: 8px;
}

.flow-step {
    display: flex;
    gap: 14px;
    padding-bottom: 2px;
}

.flow-step .rail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-step .bullet {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    z-index: 1;
}

.flow-step .line {
    flex: 1;
    width: 2px;
    background: #e2e8f0;
}

.flow-step.done .bullet {
    background: var(--brand);
    color: #fff;
}

.flow-step.done .line {
    background: var(--brand);
}

.flow-step.current .bullet {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 0 0 4px var(--brand-light);
}

.flow-step .body {
    padding-bottom: 20px;
}

.flow-step .body .t {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---------- Public site ---------- */

.hero {
    background: linear-gradient(
        120deg,
        #9bdce3,
        #eff7fb 45%,
        #009a88 75%,
        #00b8a2
    );
    color: #fff;
    border-radius: 0 0 28px 28px;
}

.hero h1 {
    font-weight: 800;
}

.pub-nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.feature-ico {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
}

.hover-lift {
    transition: 0.2s;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 29, 66, 0.1);
}

.rating-star {
    color: #f59e0b;
}

footer.site {
    background: var(--ink);
    color: #cbd5e1;
}

/* ==========================================================================
   UI/UX ENHANCEMENT PACK — animations, 3D hover, gradient motion, polish
   ========================================================================== */

/* Respect reduced-motion preference first */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

html {
    scroll-behavior: smooth;
}

/* ---------- Animated gradient hero ---------- */

.hero {
    background: linear-gradient(120deg, #9BDCE3, #EFF7FB 45%, #009A88 75%, #00B8A2);

    background-size: 200% 200%;
    animation: heroShift 12s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes heroShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 255, 255, 0.08) 0,
            transparent 40%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(255, 255, 255, 0.06) 0,
            transparent 45%
        );

    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    animation: fadeInUp 0.7s ease both;
}

.hero p,
.hero .hero-cta {
    animation: fadeInUp 0.7s ease 0.12s both;
}

.hero-visual {
    animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ---------- Page-load fade-in ---------- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

section > .container > h2 {
    animation: fadeInUp 0.6s ease both;
}

/* ---------- 3D tilt cards ---------- */

.hover-lift,
.tilt-card,
.feature-ico {
    transform-style: preserve-3d;
    perspective: 800px;
}

.hover-lift {
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.35s ease;
}

.hover-lift:hover {
    transform: translateY(-8px) rotateX(3deg) rotateY(-3deg) scale(1.015);

    box-shadow: 0 20px 40px rgba(0, 29, 66, 0.14);
}

.tilt-card {
    transition:
        transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.35s ease;
}

.tilt-card:hover {
    transform: translateY(-6px) rotateX(2deg) rotateY(2deg);

    box-shadow: 0 18px 36px rgba(0, 154, 136, 0.16);
}

/* Regular cards */

.card {
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.card:hover {
    box-shadow: 0 8px 22px rgba(0, 29, 66, 0.08);
}

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

.btn-brand {
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 154, 136, 0.25);
}

.btn-brand:hover {
    box-shadow: 0 8px 20px rgba(0, 154, 136, 0.38);
    transform: translateY(-2px);
}

.btn-brand:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline-brand {
    transition: all 0.25s ease;
}

.btn-outline-brand:hover {
    transform: translateY(-2px);
}

/* ---------- Feature icons ---------- */

.feature-ico {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover .feature-ico,
.hover-lift:hover .feature-ico {
    transform: rotateY(360deg) scale(1.08);
}

/* ---------- Stat cards ---------- */

.stat-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0, 29, 66, 0.1);
}

/* ---------- Sidebar link ---------- */

.sidebar a.side-link {
    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}

.sidebar a.side-link:hover {
    padding-left: 26px;
}

/* ---------- Journey pulse ---------- */

.flow-step.current .bullet {
    animation: pulseRing 1.8s ease-in-out infinite;
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 154, 136, 0.45);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 154, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 154, 136, 0);
    }
}

/* ---------- Topbar ---------- */

.topbar {
    transition: box-shadow 0.2s ease;
}

/* ---------- Avatar ---------- */

.avatar {
    transition: transform 0.25s ease;
    box-shadow:
        0 0 0 3px #fff,
        0 0 0 4px var(--brand-light);
}

.hover-lift:hover .avatar {
    transform: scale(1.08);
}

/* ---------- Public nav ---------- */

.pub-nav .nav-link {
    position: relative;
    transition: color 0.2s ease;
}

.pub-nav .nav-link.active::after,
.pub-nav .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -2px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
}

/* ---------- Footer ---------- */

footer.site {
    position: relative;
}

footer.site::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;

    background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

/* ---------- Mobile polish ---------- */

@media (max-width: 767px) {
    .hero {
        border-radius: 0 0 20px 20px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .main {
        padding: 18px 14px;
    }

    .hover-lift:hover,
    .tilt-card:hover {
        transform: translateY(-4px);
    }
}

/* ---------- Loading / skeleton shimmer ---------- */

.skeleton {
    background: linear-gradient(90deg, #eef2f5 25%, #f8fafc 37%, #eef2f5 63%);

    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

/* ---------- Scrollbar polish ---------- */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ---------- Focus visibility ---------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

/* =================myyyyyyyyyyyyyyyyyyyyyyyyy==================== */
/* =========================================================
   NEW MEDICAL HERO
========================================================= */

/* .medical-hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 62% 45%,
            rgba(0, 154, 136, 0.15),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #ffffff 0%,
            #f4fbfa 45%,
            #edfafa 100%
        ) !important;

    color: #001D42 !important;
} */

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

/* .medical-hero .hero-title {
    color: #001D42;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.medical-hero .hero-title span {
    color: #009A88;
} */

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

.medical-hero .hero-description {
    color: #072447;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 540px;
}

/* =========================================================
   TRUST BADGE
========================================================= */

.medical-hero .badge-soft {
    background: rgba(0, 154, 136, 0.1);
    border: 1px solid rgba(0, 154, 136, 0.2);
    color: #007f71;
    padding: 8px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

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

.hero-search {
    max-width: 500px;
    background: #ffffff;
    border: 1px solid #dce7e6;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 29, 66, 0.06);
}

.hero-search .form-control {
    border: none !important;
    box-shadow: none !important;
    padding: 13px 16px;
    font-size: 14px;
    color: #001d42;
}

.hero-search .form-control::placeholder {
    color: #94a3b8;
}

.hero-search .btn {
    border: none;
    border-radius: 0;
    width: 55px;

    background: linear-gradient(135deg, #001d42, #009a88);

    color: #ffffff;
}

.hero-search .btn:hover {
    background: #009a88;
    color: #ffffff;
}

/* =========================================================
   EARTH
========================================================= */

.hero-earth {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

/* soft glow behind earth */

.hero-earth::before {
    content: "";
    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(0, 154, 136, 0.18),
        rgba(0, 154, 136, 0.06) 45%,
        transparent 70%
    );

    filter: blur(10px);
}

.hero-earth-img {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 430px;

    object-fit: contain;

    filter: drop-shadow(0 20px 25px rgba(0, 29, 66, 0.12));

    animation: earthFloat 5s ease-in-out infinite;
}

/* EARTH FLOAT EFFECT */

@keyframes earthFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* =========================================================
   TREATMENT CARDS
========================================================= */

.hero-treatment-card {
    background: rgba(255, 255, 255, 0.95);

    border: 1px solid rgba(0, 154, 136, 0.1);

    border-radius: 16px;

    padding: 16px;

    min-height: 95px;

    box-shadow: 0 8px 25px rgba(0, 29, 66, 0.07);

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

.hero-treatment-card:hover {
    transform: translateX(-6px);

    border-color: rgba(0, 154, 136, 0.35);

    box-shadow: 0 15px 35px rgba(0, 29, 66, 0.12);
}

.hero-treatment-card h6 {
    color: #001d42;
    font-size: 15px;
}

.hero-treatment-card p {
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

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

.hero-treatment-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    border-radius: 50%;

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

    background: rgba(0, 154, 136, 0.1);

    color: #009a88;

    font-size: 24px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.hero-treatment-card:hover .hero-treatment-icon {
    transform: scale(1.08);

    background: #009a88;

    color: #ffffff;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
    .medical-hero {
        min-height: auto;
        text-align: center;
    }

    .medical-hero .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-search {
        margin-left: auto;
        margin-right: auto;
    }

    .medical-hero .d-flex.flex-wrap {
        justify-content: center;
    }

    .hero-earth {
        min-height: 340px;
    }

    .hero-earth-img {
        max-width: 340px;
    }

    .hero-treatment-card {
        text-align: left;
    }
}

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

@media (max-width: 767.98px) {
    .medical-hero {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .medical-hero .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .medical-hero .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-search {
        width: 100%;
    }

    .hero-earth {
        min-height: auto;
        padding: 20px 0;
    }

    .hero-earth::before {
        width: 260px;
        height: 260px;
    }

    .hero-earth-img {
        max-width: 290px;
    }

    .hero-treatment-list {
        max-width: 500px;
        margin: auto;
    }

    .hero-treatment-card {
        min-height: 85px;
        padding: 13px 15px;
    }

    .hero-treatment-card:hover {
        transform: translateY(-3px);
    }
}

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

@media (max-width: 575.98px) {
    .medical-hero .hero-title {
        font-size: 1.9rem;
    }

    .medical-hero .badge-soft {
        font-size: 10px;
    }

    .hero-search .form-control {
        font-size: 12px;
        padding: 12px;
    }

    .hero-treatment-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 20px;
    }

    .hero-treatment-card h6 {
        font-size: 14px;
    }

    .hero-treatment-card p {
        font-size: 11px;
    }
}

/* =====================================================
   HERO RIGHT FEATURE CARDS
===================================================== */

.hero-info-card {
    position: relative;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(0, 154, 136, 0.1);
    border-radius: 16px;

    padding: 15px 16px;
    min-height: 90px;

    box-shadow: 0 8px 25px rgba(0, 29, 66, 0.07);

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

/* subtle decorative glow */
.hero-info-card::after {
    content: "";
    position: absolute;

    width: 65px;
    height: 65px;

    right: -25px;
    bottom: -30px;

    border-radius: 50%;

    background: rgba(0, 154, 136, 0.06);

    pointer-events: none;
}

/* CARD HOVER */
.hero-info-card:hover {
    transform: translateY(-4px);

    border-color: rgba(0, 154, 136, 0.3);

    box-shadow: 0 14px 35px rgba(0, 29, 66, 0.12);
}

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

.hero-info-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

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

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        rgba(0, 29, 66, 0.08),
        rgba(0, 154, 136, 0.14)
    );

    color: #009a88;

    font-size: 24px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

/* ICON HOVER */
.hero-info-card:hover .hero-info-icon {
    transform: scale(1.08) rotate(-3deg);

    background: linear-gradient(135deg, #001d42, #009a88);

    color: #ffffff;
}

/* =====================================================
   TEXT
===================================================== */

.hero-info-card h6 {
    color: #001d42;
    font-size: 14px;
    line-height: 1.3;
}

.hero-info-card p {
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
    .hero-info-card {
        text-align: left;
        min-height: 95px;
    }
}

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

@media (max-width: 575.98px) {
    .hero-feature-grid > div {
        width: 100%;
    }

    .hero-info-card {
        min-height: 80px;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .hero-info-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 20px;
    }

    .hero-info-card h6 {
        font-size: 13px;
    }

    .hero-info-card p {
        font-size: 11px;
    }
}
/* ==========================================FOOTER=================================================== */

/* =========================================================
   PREMIUM MEDICO FOOTER
========================================================= */

.medico-footer {
    position: relative;
    background: #072447;
    color: rgba(255, 255, 255, .75);
    padding-top: 0;
}


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

.footer-cta {
    position: relative;
    z-index: 2;

    transform: translateY(-45px);

    padding: 30px 35px;

    border-radius: 20px;

    background: linear-gradient(
        120deg,
        #009A88,
        #007f71
    );

    color: #fff;

    box-shadow:
        0 15px 40px rgba(0, 29, 66, .18);

    overflow: hidden;
}


/* decorative circle */

.footer-cta::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -70px;
    top: -100px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    pointer-events: none;
}


.footer-cta h3 {
    color: #fff;
    position: relative;
    z-index: 2;
}


.footer-cta p {
    color: rgba(255, 255, 255, .82);
    max-width: 700px;

    position: relative;
    z-index: 2;
}


.footer-cta-small {
    font-size: 12px;
    font-weight: 600;

    padding: 6px 12px;

    background: rgba(255,255,255,.13);

    border: 1px solid rgba(255,255,255,.20);

    border-radius: 50px;
}


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

.footer-white-btn {
    position: relative;
    z-index: 3;

    background: #fff;

    color: #072447;

    border: 1px solid #fff;

    padding: 11px 18px;

    border-radius: 9px;

    font-weight: 600;

    transition: all .3s ease;
}


.footer-white-btn:hover {
    background: #072447;
    border-color: #072447;
    color: #fff;

    transform: translateY(-2px);
}


.footer-whatsapp-btn {
    position: relative;
    z-index: 3;

    background: transparent;

    color: #fff;

    border: 1px solid rgba(255,255,255,.65);

    padding: 11px 18px;

    border-radius: 9px;

    font-weight: 600;

    transition: all .3s ease;
}


.footer-whatsapp-btn:hover {
    background: #fff;
    border-color: #fff;
    color: #009A88;

    transform: translateY(-2px);
}


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

.footer-main {
    padding-top: 15px;
    padding-bottom: 25px;
}


.footer-logo {
    max-height: 58px;
    max-width: 190px;
    width: auto;
    object-fit: contain;
}


.footer-description {
    max-width: 350px;

    font-size: 13px;

    line-height: 1.8;

    color: rgba(255,255,255,.65);

    margin-bottom: 15px;
}


/* =========================================================
   TRUST LABELS
========================================================= */

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.footer-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 10px;

    font-size: 11px;
    font-weight: 500;

    border-radius: 50px;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.8);
}


.footer-trust i {
    color: #20cdb9;
}


/* =========================================================
   HEADINGS
========================================================= */

.footer-heading {
    position: relative;

    color: #fff;

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 22px;

    padding-bottom: 10px;
}


.footer-heading::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 2px;

    background: #009A88;

    border-radius: 10px;
}


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

.footer-links {
    list-style: none;

    padding: 0;
    margin: 0;
}


.footer-links li {
    margin-bottom: 11px;
}


.footer-links a {
    color: rgba(255,255,255,.65);

    text-decoration: none;

    font-size: 13px;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


.footer-links a:hover {
    color: #20cdb9;

    padding-left: 5px;
}


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

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


.footer-contact-item {
    display: flex;

    align-items: center;

    gap: 12px;
}


.footer-contact-icon {
    width: 40px;
    height: 40px;

    min-width: 40px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(0,154,136,.15);

    color: #20cdb9;

    font-size: 16px;
}


.footer-contact-item small {
    display: block;

    color: rgba(255,255,255,.45);

    font-size: 10px;

    margin-bottom: 2px;
}


.footer-contact-item span,
.footer-contact-item a {
    display: block;

    color: rgba(255,255,255,.82);

    text-decoration: none;

    font-size: 13px;

    font-weight: 500;
}


.footer-contact-item a:hover {
    color: #20cdb9;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;
    gap: 9px;
}


.footer-social a {
    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: rgba(255,255,255,.07);

    border: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.8);

    text-decoration: none;

    transition: all .3s ease;
}


.footer-social a:hover {
    background: #009A88;

    border-color: #009A88;

    color: #fff;

    transform: translateY(-3px);
}


/* =========================================================
   BOTTOM
========================================================= */

.footer-divider {
    height: 1px;

    background: rgba(255,255,255,.10);

    margin-top: 40px;
    margin-bottom: 22px;
}


.footer-bottom {
    font-size: 11px;

    color: rgba(255,255,255,.45);
}


.footer-bottom a {
    color: rgba(255,255,255,.55);

    text-decoration: none;

    transition: color .25s ease;
}


.footer-bottom a:hover {
    color: #20cdb9;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .footer-cta {
        padding: 25px;
    }

    .footer-main {
        padding-top: 0;
    }

}


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

@media (max-width: 767.98px) {

    .medico-footer {
        margin-top: 80px !important;
    }

    .footer-cta {
        transform: translateY(-35px);

        padding: 24px 20px;

        border-radius: 16px;
    }

    .footer-cta h3 {
        font-size: 21px;
    }

    .footer-cta p {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-white-btn,
    .footer-whatsapp-btn {
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        max-height: 50px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-divider {
        margin-top: 30px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .justify-content-md-end {
        justify-content: center !important;
    }

}


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

@media (max-width: 575.98px) {

    .footer-main {
        padding-left: 8px;
        padding-right: 8px;
    }

    .footer-heading {
        font-size: 14px;
        margin-bottom: 17px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-contact-item span,
    .footer-contact-item a {
        font-size: 12px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

}