:root {
    --mc-emerald: #0f6b57;
    --mc-deep-indigo: #002828;
    --mc-light-bg: #f7f7f4;
    --mc-soft-green: #e8f0ea;
    --mc-text: #2c2c2c;
    --mc-white: #ffffff;
    --mc-black: #000000;
    --mc-border: #e2e2e2;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--mc-light-bg);
    color: var(--mc-text);
    overflow-x: hidden;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--mc-deep-indigo);
}

/* ── HEADER ── */
.mc-header {
    background: var(--mc-white);
    border-bottom: 1px solid var(--mc-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mc-navbar-wrap {
    padding: 0;
}

.mc-logo img {
    width: 185px;
    object-fit: contain;
}

/* Hamburger — styling only, Bootstrap handles behavior */
.mc-toggler {
    border: 2px solid var(--mc-emerald) !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
}

.mc-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230f6b57' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Nav link color overrides */
.mc-nav-link {
    font-size: 17px !important;
    padding: 20px 12px !important;
    font-weight: 600 !important;
    color: var(--mc-deep-indigo) !important;
    transition: color 0.3s !important;
}


@media (max-width: 1400px) {
    .mc-logo img {
        width: 150px;
    }

    .mc-nav-link {
        font-size: 16px !important;
        padding: 20px 8px !important;
    }


}

@media (max-width: 992px) {

    .mc-nav-link {
        padding: 10px 12px !important;
    }


}


.mc-nav-link:hover,
.mc-nav-link.active {
    color: var(--mc-emerald) !important;
}

/* Dropdown menu styling */
.mc-drop-menu {
    border: none !important;
    border-radius: 18px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12) !important;
    padding: 10px 8px !important;
    min-width: 290px !important;
    /* margin-top: 8px !important; */
    animation: mc-fadeDown 0.2s ease;
}

@keyframes mc-fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown item styling */
.mc-drop-item {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--mc-black) !important;
    padding: 10px 16px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: background 0.2s, color 0.2s !important;
}


.mc-drop-item::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mc-emerald);
    flex-shrink: 0;
}

.mc-drop-item:hover {
    background: var(--mc-soft-green) !important;
    color: var(--mc-emerald) !important;
}

/* CTA Button */
.mc-header-btn {
    background: var(--mc-emerald);
    color: var(--mc-white) !important;
    padding: 10px 18px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

.mc-header-btn:hover {
    background: var(--mc-deep-indigo) !important;
}

/* Mobile nav panel */
@media (max-width: 991px) {
    .mc-nav-collapse {
        background: var(--mc-white);
        border: 1px solid var(--mc-border);
        padding: 10px 0 10px;
        margin-top: 12px;
        max-height: calc(100vh - 180px);
        overflow-y: auto;
        border-radius: 16px;
        box-shadow: none;
    }

    .mc-nav-link {
        padding: 10px 12px !important;
    }

    .mc-drop-menu {
        box-shadow: none !important;
        border-radius: 12px !important;
        background: var(--mc-soft-green) !important;
        margin: 4px 12px !important;
        animation: none !important;
    }

    .mc-header-btn {
        margin: 12px 14px 4px;
        display: inline-block;
    }

    .mc-drop-item {
        padding: 10px 0 !important;
        gap: 5px !important;
    }

    .mc-drop-item::before {
        width: 4px;
        height: 4px;
    }
}

/* ── HERO ── */
.mc-hero {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: url(../images/hero-bg.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mc-hero-tag1 {
    display: inline-block;
    background: var(--mc-soft-green);
    color: var(--mc-emerald);
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mc-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 78px;
    line-height: 1.1;
    color: var(--mc-deep-indigo);
    margin-bottom: 30px;
}

.mc-hero h1 span {
    color: var(--mc-emerald);
}

.mc-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.mc-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.mc-btn-primary,
.mc-btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mc-btn-primary {
    background: var(--mc-emerald);
    color: var(--mc-white);
}

.mc-btn-primary:hover {
    background: var(--mc-deep-indigo);
    color: var(--mc-white);
}

.mc-btn-secondary {
    border: 1px solid #c9c9c9;
    color: var(--mc-deep-indigo);
    background: var(--mc-white);
}

.mc-btn-secondary:hover {
    background: var(--mc-deep-indigo);
    color: var(--mc-white);
}

.mc-trust-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mc-avatars {
    display: flex;
}

.mc-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
}

.mc-trust-box h4 {
    color: var(--mc-deep-indigo);
    font-size: 16px;
    margin-bottom: 4px;
}

.mc-trust-box p {
    font-size: 14px;
    margin: 0;
}

/* .mc-hero-image {
} */

.mc-hero-image img {
    width: 100%;
    border-radius: 30px;
    /* aspect-ratio: 1 / 1; */
    object-position: top;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.mc-floating-card {
    position: absolute;
    bottom: 30px;
    right: 150px;
    background: var(--mc-emerald);
    color: var(--mc-white);
    padding: 18px 22px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1100px) {
    .mc-floating-card {
        display: none;
    }
}

/* ── FEATURES ── */
.mc-features {
    padding: 40px 0 50px;
    background: #fff;
}

.mc-feature-card {
    background: var(--mc-white);
    padding: 12px 10px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
    /* border-right: 2px solid rgba(0, 0, 0, 0.1); */
    position: relative;
}

.mc-feature-card::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2px;
    border-radius: 20px;
    height: 70%;
    background: #00000011;
}

.col-lg-3.col-md-6:last-child .mc-feature-card::before {
    display: none;
}


.mc-feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--mc-soft-green);
    color: var(--mc-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-right: 10px;
}

.mc-feature-card h3 {
    color: var(--mc-deep-indigo);
    margin-bottom: 7px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 800;
}

.mc-feature-card p {
    color: #444;
    line-height: 1.5;
    font-size: 15px;
    margin: 0;
}

/* ── ABOUT ── */
.mc-about {
    background: var(--mc-deep-indigo);
    color: white;
    padding: 90px 0;
}

.mc-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mc-section-tag {
    color: #9cd7c4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 18px;
    display: inline-block;
}

.mc-about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    color: var(--mc-white);
    line-height: 1;
    margin-bottom: 25px;
}

.mc-about p {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

.mc-stat-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px 12px;
    border-radius: 15px;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mc-stat-card h3 {
    font-size: 38px;
    margin-bottom: 10px;
}

.mc-stat-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

/* ── RESPONSIVE ── */
@media(max-width: 1100px) {

    .mc-hero-wrapper,
    .mc-about-grid {
        grid-template-columns: 1fr;
    }

    .mc-hero h1 {
        font-size: 58px;
    }

    .mc-stats {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 768px) {
    .mc-hero {
        padding: 60px 0;
    }

    .mc-hero h1 {
        font-size: 46px;
    }

    .mc-feature-card::before {
        height: 2px;
        width: 100%;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);

    }

    .mc-hero-buttons {
        flex-direction: column;
    }

    .mc-about h2 {
        font-size: 46px;
    }

    .mc-logo-text h2 {
        font-size: 26px;
    }
}


/* why choose us */

.mc-why {
    background: var(--mc-deep-indigo);
    padding: 90px 0 100px;
}

.mc-why-heading {
    text-align: center;
    margin-bottom: 40px;
}

.mc-why-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--mc-soft-green);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mc-why-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--mc-soft-green);
}

.mc-why-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 500;
    color: var(--mc-white);
    line-height: 1.1;
}

.mc-why-title em {
    font-style: italic;
    color: var(--mc-emerald);
}


/* Card */
.mc-why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mc-emerald);
    border-radius: 10px;
    padding: 20px 12px;
    display: flex;
    height: 100%;
    align-items: flex-start;
    gap: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.mc-why-card:hover {
    background: var(--mc-emerald);
    transform: translateY(-4px);
}

.mc-why-card:hover .mc-why-content h4 {
    color: var(--mc-white);
}

.mc-why-card:hover .mc-why-content p {
    color: var(--mc-soft-green);
}

/* Icon */
.mc-why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: var(--mc-soft-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.mc-why-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--mc-white);
    margin-bottom: 8px;
    line-height: 1.4;
}

.mc-why-content p {
    font-size: 13.5px;
    color: var(--mc-border);
    line-height: 1.6;
    margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {

    .mc-why-title {
        font-size: 42px;
    }
}

@media (max-width: 600px) {

    .mc-why-title {
        font-size: 32px;
    }

    .mc-why {
        padding: 60px 0 70px;
    }
}


/* home form  */

.mc-appt-section {
    background: #fffaf4;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mc-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(15, 107, 87, 0.13);
    pointer-events: none;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
}

.mc-ring-1 {
    width: 400px;
    height: 400px;
}

.mc-ring-2 {
    width: 240px;
    height: 240px;
}

/* ── Decorative: orange triangle top-left ── */
.mc-deco-triangle {
    position: absolute;
    top: 54px;
    left: 130px;
    pointer-events: none;
}

.mc-deco-triangle svg {
    width: 44px;
    height: 44px;
}

/* ── Decorative: orange wave bottom-left ── */
.mc-deco-wave-left {
    position: absolute;
    bottom: 58px;
    left: 55px;
    pointer-events: none;
}

.mc-deco-wave-left svg {
    width: 80px;
    height: 40px;
}

/* ── Decorative: blue wave top-right ── */
.mc-deco-wave-right {
    position: absolute;
    top: 50px;
    right: 50px;
    pointer-events: none;
}

.mc-deco-wave-right svg {
    width: 80px;
    height: 40px;
}

/* ── Decorative: pink circle bottom-right ── */
.mc-deco-circle {
    position: absolute;
    bottom: 52px;
    right: 62px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(230, 102, 85, 0.22);
    pointer-events: none;
}


.mc-appt-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 48px 42px 44px;
    box-shadow: 0 8px 40px rgba(15, 107, 87, 0.10);
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mc-appt-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #002828;
    text-align: center;
    margin-bottom: 30px;
}

.mc-appt-label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #0f6b57;
    margin-bottom: 7px;
    letter-spacing: 0.2px;
}

.mc-appt-input {
    width: 100%;
    border: 1.5px solid #e0e4f0;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
    color: #2c2c2c;
    background-color: #ffffff;
    outline: none;
    font-family: 'Segoe UI', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 20px;
    appearance: none;
    -webkit-appearance: none;
}

textarea.mc-appt-input {
    min-height: 100px;
    resize: vertical;
}

.mc-appt-input:focus {
    border-color: #0f6b57;
    box-shadow: 0 0 0 3px rgba(15, 107, 87, 0.08);
}

.mc-appt-input::placeholder {
    color: #bbb;
}

.mc-appt-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: #0f6b57;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Segoe UI', sans-serif;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}

.mc-appt-submit:hover {
    background-color: #002828;
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .mc-appt-card {
        padding: 32px 22px 28px;
    }
}




/* about us page */


.dra-wrap {
    background: var(--mc-light-bg);
    color: var(--mc-text);
    line-height: 1.65;
}

.dra-wrap h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--mc-deep-indigo);
    margin: 0;
}

.dra-section {
    margin-bottom: clamp(28px, 4vw, 48px);
}

.dra-sec-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.dra-sec-bar {
    width: 4px;
    height: 34px;
    background: var(--mc-emerald);
    border-radius: 999px;
    flex-shrink: 0;
}

.dra-exp-card {
    background: var(--mc-white);
    border: 1px solid var(--mc-border);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    height: 100%;
}

.dra-exp-card:hover {
    border-color: var(--mc-emerald);
    box-shadow: 0 8px 24px rgba(15, 107, 87, 0.10);
    transform: translateY(-2px);
}

.dra-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mc-emerald);
    flex-shrink: 0;
    margin-top: 7px;
}

.dra-exp-card span {
    font-size: 16px;
    color: var(--mc-text);
    font-weight: 500;
    line-height: 1.45;
}

.dra-panel {
    background: var(--mc-white);
    border: 1px solid var(--mc-border);
    border-radius: 20px;
    padding: clamp(20px, 4vw, 32px);
    height: 100%;
}

.dra-hl-item {
    background: var(--mc-soft-green);
    border: 1px solid #d0e0d4;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    transition: background .2s, border-color .2s;
}

.dra-hl-item:last-child {
    margin-bottom: 0;
}

.dra-hl-item:hover {
    background: #d8ebdc;
    border-color: #b5d4ba;
}

.dra-hl-item p {
    font-size: 16px;
    color: var(--mc-text);
    line-height: 1.5;
    margin: 0;
}

.dra-panel-dark {
    background: var(--mc-deep-indigo);
    border-color: transparent;
    height: 100%;
    border-radius: 20px;
    padding: clamp(20px, 4vw, 32px);
}

.dra-panel-dark .dra-sec-bar {
    background: rgba(255, 255, 255, 0.3);
}

.dra-panel-dark h2 {
    color: var(--mc-white);
}

.dra-cert-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    transition: background .2s;
}

.dra-cert-item:last-child {
    margin-bottom: 0;
}

.dra-cert-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.dra-cert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
    margin-top: 7px;
}

.dra-cert-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.dra-phil-card {
    background: var(--mc-white);
    border: 1px solid var(--mc-border);
    border-radius: 20px;
    overflow: hidden;
}

.dra-phil-right {
    padding: clamp(24px, 4vw, 44px);
}

.dra-quote-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 68px;
    color: var(--mc-emerald);
    opacity: 0.2;
    line-height: 0.8;
    margin-bottom: 10px;
    user-select: none;
}

.dra-quote-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(21px, 2.8vw, 32px);
    line-height: 1.5;
    color: var(--mc-deep-indigo);
    font-style: italic;
    font-weight: 500;
    margin: 0;
}



/* service */

.mc-page-hero {
    background: linear-gradient(135deg, #002828 0%, #0f6b57 100%);
    padding: 48px 0 44px;
    position: relative;
    overflow: hidden;
}

.mc-page-hero::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -120px;
    right: -80px;
}

.mc-page-hero::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -80px;
    left: 60px;
}

.mc-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: rgba(255, 255, 255, 0.12);
    color: #e8f0ea;
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
}

.mc-page-hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.mc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mc-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.mc-breadcrumb li a {
    color: rgba(255, 255, 255, 0.888);
    text-decoration: none;
    transition: color 0.2s;
}

.mc-breadcrumb li a:hover {
    color: #ffffff;
}

.mc-breadcrumb li.active {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.mc-breadcrumb li i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.888);
}

/* ══════════════════════════════
       MAIN LAYOUT
    ══════════════════════════════ */
.mc-service-wrap {
    padding: 50px 0 70px;
    background-color: #f7f7f4;
}

/* ══════════════════════════════
       CONTENT AREA
    ══════════════════════════════ */
.mc-content-box {
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e2e2;
    overflow: hidden;
}

.mc-service-img {
    width: 100%;
    /* height: 450px; */
    object-fit: cover;
    display: block;
}

.mc-content-inner {
    padding: 25px 20px;
}

.mc-content-inner h2 {
    font-size: 2rem;
    font-weight: 900;
    font-family: "Cormorant Garamond", serif;
    color: #002828;
    margin-bottom: 14px;
    padding-left: 14px;
    border-left: 3px solid #0f6b57;
    line-height: 1.2;
}

.mc-content-inner h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #002828;
    font-family: "Cormorant Garamond", serif;
    margin: 28px 0 12px;
    padding-left: 14px;
    border-left: 3px solid #0f6b57;
}

.mc-content-inner p {
    font-size: 16px;
    color: #222;
    opacity: 0.78;
    line-height: 1.8;
    margin-bottom: 14px;
}

.mc-section-divider {
    border: none;
    border-top: 2px solid #989898;
    margin: 15px 0;
}

/* Type Cards */
.mc-type-card {
    background-color: #f7f7f4;
    border-radius: 12px;
    padding: 16px 18px;
    border-left: 3px solid #0f6b57;
    margin-bottom: 12px;
}

.mc-type-card h6 {
    font-size: 16px;
    font-weight: 800;
    color: #002828;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mc-type-card h6 i {
    color: #0f6b57;
    font-size: 15px;
}

.mc-type-card p {
    font-size: 15px;
    margin: 0;
    opacity: 0.7;
    line-height: 1.6;
}

/* Pill List */
.mc-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.mc-pill-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    background-color: #f7f7f4;
    border: 1px solid #e2e2e2;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

.mc-pill-list li i {
    color: #0f6b57;
    font-size: 10px;
}

/* Treatment Cards */
.mc-treatment-card {
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 14px;
    padding: 15px 12px;
    height: 100%;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.mc-treatment-card:hover {
    box-shadow: 0 6px 20px rgba(15, 107, 87, 0.10);
    border-color: #0f6b57;
    transform: translateY(-2px);
}

.mc-treatment-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: #e8f0ea;
    color: #0f6b57;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.mc-treatment-card h6 {
    font-size: 16px;
    font-weight: 800;
    color: #002828;
    margin-bottom: 8px;
}

.mc-treatment-card p {
    font-size: 15px;
    opacity: 0.65;
    line-height: 1.6;
    margin: 0;
}

/* Benefits */
.mc-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mc-benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #2c2c2c;
    font-weight: 500;
}

.mc-benefit-list li i {
    width: 24px;
    height: 24px;
    background-color: #e8f0ea;
    color: #0f6b57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* Why Us */
.mc-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mc-why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #f7f7f4;
    border-radius: 12px;
    padding: 14px 16px;
}

.mc-why-item i {
    color: #0f6b57;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.mc-why-item span {
    font-size: 13.5px;
    font-weight: 600;
    color: #002828;
    line-height: 1.4;
}

/* CTA Banner */
.mc-cta-banner {
    background: linear-gradient(135deg, #002828 0%, #0f6b57 100%);
    border-radius: 16px;
    padding: 32px 34px;
    text-align: center;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}

.mc-cta-banner::before {
    content: '\f0e0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 160px;
    color: rgba(255, 255, 255, 0.04);
    position: absolute;
    right: 20px;
    top: -20px;
    line-height: 1;
    pointer-events: none;
}

.mc-cta-banner h4 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
}

.mc-cta-banner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
    opacity: 1;
}

.mc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    color: #002828;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.mc-cta-btn:hover {
    background-color: #e8f0ea;
    color: #0f6b57;
}

/* about us  */

.about-doctor-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-doctor-image-item img {
    border-radius: 30px;
}

.about-doctor-title {
    color: var(--mc-emerald);
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-doctor-description {
    color: #333;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.about-doctor-features {
    margin-bottom: 20px;
}

.about-doctor-feature-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}

.about-doctor-feature-icon {
    color: var(--secondary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.about-doctor-feature-text {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.about-doctor-actions {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.primary-theme-btn {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: 0.5px;
    position: relative;
}

.secondary-theme-btn {
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: 0.5px;
    position: relative;
}

.primary-theme-btn::after,
.secondary-theme-btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    opacity: 0;
    transition: all 0.5s ease;
}

.primary-theme-btn:hover::after,
.secondary-theme-btn:hover::after {
    width: 100%;
    opacity: 0.5;
    transform: scale(1.2);
}

@media (max-width: 576px) {
    .about-doctor-actions {
        gap: 10px;
    }
}

/* ══════════════════════════════
       SIDEBAR
    ══════════════════════════════ */
.mc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Doctor Card */
.mc-dr-card {
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e2e2;
    overflow: hidden;
}

.mc-dr-card-top {
    background: linear-gradient(135deg, #002828 0%, #0f6b57 100%);
    padding: 30px 12px 24px;
    text-align: center;
}

.mc-dr-avatar-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid rgba(255, 255, 255, 0.35);
    margin: 0 auto 14px;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1400px) and (min-width: 992px) {
    .mc-dr-avatar-img {
        width: 230px;
        height: 230px;
    }
}

.mc-dr-card-top h5 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.mc-dr-qual {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4px;
}

.mc-dr-hosp {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.mc-dr-stats {
    display: flex;
    border-top: 1px solid #e2e2e2;
}

.mc-dr-stat {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    border-right: 1px solid #e2e2e2;
}

.mc-dr-stat:last-child {
    border-right: none;
}

.mc-dr-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: #0f6b57;
    line-height: 1;
    margin-bottom: 3px;
}

.mc-dr-stat span {
    font-size: 14px;
    color: #2c2c2c;
    opacity: 0.55;
}

/* Sidebar Card */
.mc-sidebar-card {
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e2e2;
    overflow: hidden;
}

.mc-sidebar-card-head {
    background-color: #f7f7f4;
    padding: 15px 15px;
    border-bottom: 1px solid #e2e2e2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mc-sidebar-card-head i {
    color: #0f6b57;
    font-size: 20px;
}

.mc-sidebar-card-head h6 {
    font-size: 18px;
    font-weight: 800;
    color: #002828;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Services List */
.mc-service-list {
    list-style: none;
    padding: 12px 0 0;
    margin: 0;
}

.mc-service-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 16px;
    border-bottom: 1px solid #e5e5e5;
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.mc-service-list li:last-child a {
    border-bottom: none;
}

.mc-service-list li a:hover,
.mc-service-list li a.active {
    background-color: #f7f7f4;
    color: #0f6b57;
    border-left-color: #0f6b57;
    font-weight: 600;
}

.mc-service-list li a i {
    font-size: 11px;
    opacity: 0.4;
}

.mc-service-list li a:hover i,
.mc-service-list li a.active i {
    opacity: 1;
    color: #0f6b57;
}

/* Contact Card */
.mc-contact-card {
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e2e2;
    overflow: hidden;
}

.mc-contact-list-sb {
    list-style: none;
    padding: 15px 15px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mc-contact-item-sb {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mc-ci-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}

.mc-ci-icon.phone {
    background: #e6f4ef;
    color: #0f6b57;
}

.mc-ci-icon.whatsapp {
    background: #e6f4ef;
    color: #25d366;
}

.mc-ci-icon.email {
    background: #eaf0fb;
    color: #3b5bdb;
}

.mc-ci-icon.address {
    background: #fff3e8;
    color: #e07b3a;
}

.mc-ci-icon.time {
    background: #fde8e8;
    color: #d94040;
}

.mc-ci-text {
    padding-top: 8px;
    font-size: 14px;
    color: #2c2c2c;
    line-height: 1.5;
}

.mc-ci-text a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
}

.mc-ci-text a:hover {
    color: #0f6b57;
}

.mc-ci-text small {
    display: block;
    font-size: 11.5px;
    opacity: 0.55;
    margin-top: 1px;
}


/* ══════════════════════════════
       APPOINTMENT FORM
    ══════════════════════════════ */
.mc-form-body {
    padding: 15px 15px 15px;
}

.mc-form-group {
    margin-bottom: 14px;
}

.mc-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #002828;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.mc-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.mc-input-wrap>i:first-child {
    position: absolute;
    left: 13px;
    color: #0f6b57;
    font-size: 13px;
    z-index: 1;
    pointer-events: none;
}

.mc-input-wrap input,
.mc-input-wrap textarea {
    width: 100%;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 10px 14px 10px 36px;
    font-size: 13.5px;
    color: #2c2c2c;
    background-color: #f7f7f4;
    outline: none;
    font-family: 'Segoe UI', sans-serif;
    transition: border-color 0.2s, background 0.2s;
}

.mc-input-wrap input:focus,
.mc-input-wrap textarea:focus {
    border-color: #0f6b57;
    background-color: #ffffff;
}

.mc-input-wrap input::placeholder,
.mc-input-wrap textarea::placeholder {
    color: #aaa;
    font-size: 13px;
}

.mc-textarea-wrap textarea {
    resize: none;
    padding-top: 10px;
    line-height: 1.5;
}

.mc-textarea-wrap>i:first-child {
    top: 12px;
    align-self: flex-start;
}

.mc-submit-btn {
    width: 100%;
    background-color: #0f6b57;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
    font-family: 'Segoe UI', sans-serif;
}

.mc-submit-btn:hover {
    background-color: #002828;
    transform: translateY(-1px);
}

.mc-form-note {
    text-align: center;
    font-size: 10px;
    color: #2c2c2c;
    opacity: 0.5;
    margin: 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mc-form-note i {
    color: #0f6b57;
}


/* condition section  */
/* ── Hero Section ── */
.cwt-hero {
    background-color: var(--mc-white);
    padding: 60px 60px 40px;
    position: relative;
    overflow: hidden;
}

.cwt-hero .hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45%;
    object-fit: cover;
    border-radius: 0 0 0 120px;
    opacity: 0.92;
}

.cwt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--mc-soft-green);
    color: var(--mc-emerald);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.cwt-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: 'Cormorant Garamond', serif;
    color: var(--mc-deep-indigo);
    line-height: 1.15;
    max-width: 520px;
}

.cwt-hero p {
    color: var(--mc-text);
    font-size: 1rem;
    max-width: 460px;
    margin-bottom: 28px;
    opacity: 0.75;
}

.btn-cwt-primary {
    background-color: var(--mc-emerald);
    color: var(--mc-white);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}

.btn-cwt-primary:hover {
    background-color: var(--mc-deep-indigo);
    color: var(--mc-white);
    transform: translateY(-1px);
}

.btn-cwt-outline {
    background: transparent;
    color: var(--mc-deep-indigo);
    border-radius: 50px;
    padding: 11px 24px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--mc-border);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-cwt-outline:hover {
    border-color: var(--mc-emerald);
    color: var(--mc-emerald);
}

/* ── Browse Section ── */
.cwt-browse {
    background-color: var(--mc-white);
    padding: 60px 50px;
}

.cwt-card {
    background: var(--mc-white);
    border: 1px solid var(--mc-border);
    border-radius: 14px;
    padding: 12px 12px;
    display: flex;
    height: 100%;
    align-items: center;
    gap: 14px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.cwt-card:hover {
    box-shadow: 0 6px 20px rgba(15, 107, 87, 0.12);
    transform: translateY(-2px);
    border-color: var(--mc-emerald);
}

.cwt-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.cwt-card-body {
    flex: 1;
    min-width: 0;
}

.cwt-card-body h6 {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--mc-deep-indigo);
    margin: 0 0 3px;
}

.cwt-card-body small {
    font-size: 12px;
    color: #777;
    display: block;
    line-height: 1.4;
}

.cwt-arrow {
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: auto;
    color: var(--mc-emerald);
    opacity: 0.5;
    transition: opacity 0.2s;
}

.cwt-card:hover .cwt-arrow {
    opacity: 1;
}

/* ── Icon Color Variants (all tinted with brand palette) ── */
.icon-em {
    background: var(--mc-soft-green);
    color: var(--mc-emerald);
}

.icon-teal {
    background: #e0f2f0;
    color: #00796b;
}

.icon-indigo {
    background: #e8ecf8;
    color: #3949ab;
}

.icon-slate {
    background: #eef0f5;
    color: #546e7a;
}

.icon-sage {
    background: #eaf2ec;
    color: #388e3c;
}

.icon-warm {
    background: #fdf3ee;
    color: #bf6828;
}

.icon-plum {
    background: #f2eaf6;
    color: #7b1fa2;
}

.icon-steel {
    background: #e9f3f8;
    color: #1565c0;
}

.icon-rose {
    background: #fdeef2;
    color: #c2185b;
}

.icon-amber {
    background: #fdf7e3;
    color: #f57f17;
}

.icon-pine {
    background: #e3f0ea;
    color: #2e7d32;
}

.icon-moss {
    background: #ecf2e8;
    color: #558b2f;
}



@media (max-width: 768px) {
    .cwt-hero {
        padding: 40px 20px 30px;
    }

    .cwt-hero h1 {
        font-size: 2.2rem;
    }

    .cwt-hero .hero-image {
        display: none;
    }

    .cwt-browse {
        padding: 20px 12px;
    }

}

/* comprehensive service section  */

.mc-treat-section {
    background-color: #f6f6f6;
    overflow: hidden;
    position: relative;
    padding: 90px 0;
}


.mc-treat-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    z-index: 1;
    height: 100%;
    border-radius: 50px 0 0 50px;
    background: var(--mc-emerald);
    pointer-events: none;
}


/* ══════════════════════════════
       LEFT CONTENT PANEL
    ══════════════════════════════ */
.mc-treat-left {
    position: relative;
    z-index: 2;
    padding: 20px;
    background: #fff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mc-deco-diamond {
    position: absolute;
    top: 40px;
    left: 35%;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.mc-deco-diamond svg {
    width: 100%;
    height: 100%;
}

.mc-treat-eyebrow {
    font-size: 13px;
    font-weight: 800;
    color: #0f6b57;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.mc-treat-heading {
    font-size: 1.75rem;
    font-weight: 900;
    color: #002828;
    line-height: 1.2;
    margin-bottom: 20px;
}

.mc-treat-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mc-treat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0f6b57;
    color: #ffffff;
    border-radius: 8px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, transform 0.2s;
}

.mc-treat-btn:hover {
    background-color: #002828;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ══════════════════════════════
       RIGHT CAROUSEL PANEL
    ══════════════════════════════ */
.mc-treat-right {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
}

.mc-treat-carousel-wrap .owl-item {
    height: 100%;
    min-height: 365px;
}

.mc-treat-carousel-wrap {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
    width: 100%;
}

/* ── Cards ── */
.mc-treat-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px 15px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    margin: 6px 6px 10px;
}

.mc-treat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.mc-treat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,
            rgba(15, 107, 87, 0.05) 0px,
            rgba(15, 107, 87, 0.05) 1px,
            transparent 1px,
            transparent 22px),
        repeating-linear-gradient(90deg,
            rgba(15, 107, 87, 0.05) 0px,
            rgba(15, 107, 87, 0.05) 1px,
            transparent 1px,
            transparent 22px);
    pointer-events: none;
    border-radius: 20px;
}

.mc-treat-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background-color: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: background 0.2s;
}

.mc-treat-card:hover .mc-treat-icon-box {
    background-color: #e8f0ea;
}

.mc-treat-icon-box svg {
    width: 36px;
    height: 36px;
}

.mc-treat-card h4 {
    font-size: 1.1rem;
    font-weight: 900;
    color: #002828;
    line-height: 1.35;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.mc-treat-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.mc-treat-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #002828;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #002828;
    text-decoration: none;
    background: transparent;
    width: fit-content;
    position: relative;
    z-index: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mc-treat-card-btn:hover {
    background-color: #0f6b57;
    color: #ffffff;
    border-color: #0f6b57;
}

/* ══════════════════════════════
       OWL DOTS — custom
    ══════════════════════════════ */
.mc-treat-carousel-wrap .owl-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    align-items: center;
}

.mc-treat-carousel-wrap .owl-dot span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    transition: all 0.25s;
    margin: 0;
}

.mc-treat-carousel-wrap .owl-dot.active span {
    background-color: #ffffff;
    width: 24px;
    border-radius: 50px;
}

/* ══════════════════════════════
       OWL NAV — arrow buttons
    ══════════════════════════════ */
.mc-treat-carousel-wrap .owl-nav {
    position: absolute;
    bottom: -40px;
    right: 26px;
    display: flex;
    gap: 8px;
}

.mc-treat-carousel-wrap .owl-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    transition: background 0.2s !important;
    border: none !important;
    line-height: 1 !important;
}

.mc-treat-carousel-wrap .owl-nav button:hover {
    background-color: rgba(255, 255, 255, 0.35) !important;
}

.mc-treat-carousel-wrap .owl-nav button span {
    display: none;
}

.mc-treat-carousel-wrap .owl-nav .owl-prev::after {
    content: '\f060';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ffffff;
    font-size: 13px;
}

.mc-treat-carousel-wrap .owl-nav .owl-next::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ffffff;
    font-size: 13px;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 991px) {

    .mc-treat-right {
        min-height: auto;
    }

    .mc-treat-heading {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .mc-treat-heading {
        font-size: 1.75rem;
    }

    .mc-deco-diamond {
        display: none;
    }

    .mc-treat-left {
        padding: 0;
        background: transparent;
    }

    .mc-treat-section::before {
        top: auto;
        bottom: 0;
        height: 40%;
        border-radius: 60px 60px 0 0;
        width: 100%;
    }

    .mc-treat-carousel-wrap .owl-dots {
        left: 30px;
        transform: none;
    }

    .mc-treat-section {
        padding: 60px 0 40px;
    }

}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 991px) {
    .mc-content-inner {
        padding: 26px 22px;
    }

    .mc-why-grid {
        grid-template-columns: 1fr;
    }

    .mc-benefit-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mc-page-hero h1 {
        font-size: 1.6rem;
    }

    .mc-content-inner h2 {
        font-size: 1.5rem;
    }

    .mc-content-inner h3 {
        font-size: 1.25rem;
    }

    .mc-service-img {
        height: 220px;
    }

    .mc-content-inner {
        padding: 20px 12px;
    }

    .mc-content-inner p,
    .mc-type-card h6,
    .mc-pill-list li {
        font-size: 15px;
    }

    .mc-type-card p {
        font-size: 14px;
    }

    .mc-type-card {
        padding: 12px 12px;
    }

    .mc-cta-banner {
        padding: 20px 12px;
    }
}



/* blog */

/* ══════════════════════════════
       BLOG SECTION
    ══════════════════════════════ */
.mc-blog-section {
    padding: 80px 0 90px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.mc-blog-section::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #e8f0ea 0%, transparent 70%);
    top: -80px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.mc-blog-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #e8f0ea 0%, transparent 70%);
    bottom: -60px;
    left: -80px;
    border-radius: 50%;
    pointer-events: none;
}

/* ══════════════════════════════
       SECTION HEADER
    ══════════════════════════════ */
.mc-blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e8f0ea;
    color: #0f6b57;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.mc-blog-eyebrow i {
    font-size: 11px;
}

.mc-blog-heading {
    font-size: 3.5rem;
    font-weight: 900;
    color: #002828;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.2;
    margin-bottom: 14px;
}

.mc-blog-heading span {
    color: #0f6b57;
}


/* ══════════════════════════════
       BLOG TILE CARDS
    ══════════════════════════════ */
.mc-blog-tile {
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mc-blog-tile:hover {
    box-shadow: 0 10px 32px rgba(15, 107, 87, 0.13);
    transform: translateY(-4px);
    border-color: #0f6b57;
}

.mc-blog-tile-img {
    overflow: hidden;
    height: 250px;
    position: relative;
}

.mc-blog-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.mc-blog-tile:hover .mc-blog-tile-img img {
    transform: scale(1.06);
}


.mc-blog-tile-body {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mc-blog-tile-body h5 {
    font-size: 20px;
    font-weight: 800;
    color: #002828;
    line-height: 1.45;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s;
}

.mc-blog-tile:hover .mc-blog-tile-body h5 {
    color: var(--mc-emerald);
}

.mc-blog-tile-body p {
    font-size: 16px;
    color: #2c2c2c;
    opacity: 0.62;
    line-height: 1.65;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1;
    margin-bottom: 18px;
}

.mc-tile-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e2e2e2;
}

.mc-tile-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mc-tile-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #cbe3d1;
    color: var(--mc-deep-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.mc-tile-author-info span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #002828;
    line-height: 1.2;
}

.mc-tile-author-info small {
    font-size: 14px;
    color: #2c2c2c;
    opacity: 0.5;
}

.mc-tile-arrow {
    width: 44px;
    height: 44px;
    background-color: #e8f0ea;
    color: #0f6b57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.mc-blog-tile:hover .mc-tile-arrow {
    background-color: #0f6b57;
    color: #ffffff;
}


@media (max-width: 767px) {
    .mc-blog-section {
        padding: 50px 0 60px;
    }

    .mc-blog-heading {
        font-size: 1.75rem;
    }

}

/* contact us  */

.ct-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--mc-deep-indigo), var(--mc-emerald));
    color: var(--mc-white);
    padding: 34px 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.ct-hero::after {
    content: '';
    position: absolute;
    inset: auto -140px -140px auto;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    filter: blur(2px);
}

.ct-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2px;
    margin-bottom: 16px;
}

.ct-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    color: var(--mc-white);
    letter-spacing: -.03em;
}

.ct-hero p {
    margin: 0;
    max-width: 640px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .86);
}

.ct-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.ct-stat {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 18px;
    min-height: 110px;
}

.ct-stat i {
    font-size: 20px;
    margin-bottom: 12px;
    color: #d8f4ea;
}

.ct-stat strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.ct-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, .84);
    line-height: 1.55;
}


.ct-card {
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(226, 226, 226, .85);
    border-radius: 24px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .06);
    backdrop-filter: blur(6px);
}

.ct-card-head h2 {
    margin: 0 0 8px;
    font-size: 24px;
    color: var(--mc-emerald);
}

.ct-contact-list {
    padding: 20px 24px 24px;
    display: grid;
    gap: 14px;
}

.ct-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #fafcfb);
    border: 1px solid var(--mc-border);
}

.ct-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    color: var(--mc-emerald);
    background: var(--mc-soft-green);
    font-size: 18px;
}

.ct-contact-item h3 {
    margin: 0 0 6px;
    font-size: 15px;
    color: var(--mc-deep-indigo);
}

.ct-contact-item p,
.ct-contact-item a {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #4b5552;
    word-break: break-word;
}

.ct-contact-item a:hover {
    color: var(--mc-emerald);
}

.ct-form-wrap {
    padding: 24px;
}

.ct-form {
    display: grid;
    gap: 14px;
}

.ct-field label {
    display: block;
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mc-deep-indigo);
}

.ct-field input,
.ct-field textarea {
    width: 100%;
    border: 1px solid var(--mc-border);
    border-radius: 14px;
    padding: 14px 15px;
    font: inherit;
    background: var(--mc-white);
    color: var(--mc-text);
    outline: none;
    transition: .2s ease;
}

.ct-field input:focus,
.ct-field textarea:focus {
    border-color: var(--mc-emerald);
    box-shadow: 0 0 0 4px rgba(15, 107, 87, .10);
}

.ct-field textarea {
    min-height: 145px;
    resize: vertical;
}

.ct-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.ct-btn {
    border: 0;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ct-btn-primary {
    background: linear-gradient(135deg, var(--mc-emerald), #146d5a);
    color: var(--mc-white);
    box-shadow: 0 14px 26px rgba(15, 107, 87, .18);
}

.ct-btn-primary:hover {
    transform: translateY(-1px);
}

.ct-btn-secondary {
    background: var(--mc-white);
    color: var(--mc-deep-indigo);
    border: 1px solid var(--mc-border);
}

.ct-social {
    margin-top: 18px;
    padding: 0 24px 24px;
}

.ct-social h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: var(--mc-deep-indigo);
}

.ct-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ct-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--mc-soft-green);
    color: var(--mc-deep-indigo);
    border: 1px solid rgba(15, 107, 87, .10);
    font-weight: 600;
}

.ct-social-links a:hover {
    background: #d8e9de;
}


@media (max-width: 640px) {
    .ct-contact-page {
        padding: 14px 12px 30px;
    }

    .ct-social-links a {
        padding: 8px 10px;
        font-size: 13px;
        gap: 6px;
    }

    .ct-hero,
    .ct-card,
    .ct-map {
        border-radius: 20px;
    }

    .ct-btn {
        padding: 10px 15px;
    }

    .ct-hero {
        padding: 24px 12px;
    }

    .ct-form-wrap,
    .ct-contact-list,
    .ct-social {
        padding-left: 12px;
        padding-right: 12px;
    }

}


/* faq */


.mc-faq-section {
    padding: 80px 0;
    background: var(--mc-light-bg);
}

.mc-faq-sidebar {
    background: linear-gradient(135deg, var(--mc-deep-indigo), var(--mc-emerald));
    border-radius: 18px;
    padding: 30px 15px;
    color: var(--mc-white);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.mc-faq-sidebar::before {
    content: "";
    position: absolute;
    inset: auto -30px -30px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.mc-faq-sidebar-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 16px;
    font-size: 22px;
}

.mc-faq-sidebar h4 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--mc-white);
}

.mc-faq-sidebar p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.mc-faq-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
}

.mc-faq-sidebar-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.86);
}

.mc-faq-sidebar-list i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    flex: 0 0 28px;
}

.mc-faq-sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 20px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--mc-white);
    color: var(--mc-deep-indigo);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: 0.2s ease;
}

.mc-faq-sidebar-btn:hover {
    background: var(--mc-soft-green);
    color: var(--mc-emerald);
    transform: translateY(-1px);
}

.mc-faq-item {
    background: var(--mc-white);
    border: 1px solid var(--mc-border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.mc-faq-item:hover {
    box-shadow: 0 6px 18px rgba(15, 107, 87, 0.06);
    transform: translateY(-1px);
}

.mc-faq-item.active {
    border-color: rgba(15, 107, 87, 0.35);
    box-shadow: 0 10px 30px rgba(15, 107, 87, 0.10);
}

.mc-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 0;
    background: transparent;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.mc-faq-num {
    min-width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7e7e1;
    background: var(--mc-soft-green);
    color: var(--mc-emerald);
    font-size: 12px;
    font-weight: 800;
    transition: 0.25s ease;
}

.mc-faq-q-text {
    flex: 1;
    color: var(--mc-deep-indigo);
    font-weight: 700;
    line-height: 1.45;
    font-size: 18px;
    transition: color 0.25s ease;
}

.mc-faq-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--mc-soft-green);
    border: 1px solid #d7e7e1;
    flex: 0 0 34px;
    position: relative;
    transition: 0.25s ease;
}

.mc-faq-toggle::before,
.mc-faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--mc-emerald);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
}

.mc-faq-toggle::before {
    width: 12px;
    height: 2px;
}

.mc-faq-toggle::after {
    width: 2px;
    height: 12px;
}

.mc-faq-item.active .mc-faq-num {
    background: var(--mc-emerald);
    color: var(--mc-white);
    border-color: var(--mc-emerald);
}

.mc-faq-item.active .mc-faq-q-text {
    color: var(--mc-emerald);
}

.mc-faq-item.active .mc-faq-toggle {
    background: var(--mc-emerald);
    border-color: var(--mc-emerald);
}

.mc-faq-item.active .mc-faq-toggle::before,
.mc-faq-item.active .mc-faq-toggle::after {
    background: var(--mc-white);
}

.mc-faq-item.active .mc-faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.mc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mc-faq-answer-inner {
    padding: 0 20px 20px 72px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}


.mc-faq-answer-inner p {
    margin: 0;
    color: rgba(44, 44, 44, 0.78);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .mc-faq-wrap {
        max-width: 760px;
    }
}

@media (max-width: 767px) {
    .mc-faq-section {
        padding: 60px 0;
    }

    .mc-faq-question {
        padding: 16px 16px;
    }

    .mc-faq-answer-inner {
        padding: 0 16px 18px 16px;
    }

    .mc-faq-sidebar {
        padding: 22px 18px;
    }
}


/* footer */

/* ── Footer Wrapper ── */
.mc-footer-wrap {
    padding: 30px 40px;
    background-color: var(--mc-light-bg);
}

.mc-footer {
    background-color: var(--mc-white);
    border-radius: 20px;
    padding: 48px 50px 36px;
    border: 1px solid var(--mc-border);
}


/* Social Icons */
.mc-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mc-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.mc-social-link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.mc-social-whatsapp {
    background-color: #e6f4ef;
    color: #25d366;
}

.mc-social-instagram {
    background-color: #fce8f3;
    color: #e1306c;
}

.mc-social-facebook {
    background-color: #e8eefa;
    color: #1877f2;
}

.mc-social-youtube {
    background-color: #fde8e8;
    color: #ff0000;
}

.mc-footer-col h6 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1.4px;
    color: var(--mc-deep-indigo);
}

.mc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.mc-footer-links li a {
    text-decoration: none;
    font-size: 16px;
    color: var(--mc-deep-indigo);
    opacity: 0.75;
    transition: color 0.2s, opacity 0.2s;
}

.mc-footer-links li a:hover {
    color: var(--mc-emerald);
    opacity: 1;
}

/* ── Contact Items ── */
.mc-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.mc-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.mc-contact-icon.phone {
    background: #e6f4ef;
    color: #0f6b57;
}

.mc-contact-icon.whatsapp {
    background: #e6f4ef;
    color: #25d366;
}

.mc-contact-icon.email {
    background: #eaf0fb;
    color: #3b5bdb;
}

.mc-contact-icon.address {
    background: #fff3e8;
    color: #e07b3a;
}

.mc-contact-icon.time {
    background: #fde8e8;
    color: #d94040;
}

.mc-contact-text {
    font-size: 13.5px;
    color: var(--mc-text);
    opacity: 0.8;
    line-height: 1.5;
    padding-top: 7px;
}

.mc-contact-text a {
    color: var(--mc-text);
    text-decoration: none;
}

.mc-contact-text a:hover {
    color: var(--mc-emerald);
}

/* ── Doctor Info Card ── */
.mc-doctor-card {
    background: var(--mc-soft-green);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.mc-doctor-card h5 {
    font-size: 24px;
    font-weight: 800;
    color: var(--mc-deep-indigo);
    margin: 0 0 4px;
}

.mc-doctor-card .qualification {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--mc-emerald);
    margin: 0 0 4px;
}

.mc-doctor-card .hospital {
    font-size: 14px;
    color: var(--mc-text);
    opacity: 0.7;
    margin: 0 0 12px;
}

/* ── Divider ── */
.mc-footer-divider {
    border: none;
    border-top: 1px solid var(--mc-border);
    margin: 25px 0 15px;
}

/* ── Bottom Bar ── */
.mc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.mc-footer-bottom p {
    font-size: 16px;
    color: var(--mc-deep-indigo);
    opacity: 0.55;
    margin: 0;
    line-height: 1.6;
}

.mc-footer-bottom p strong {
    font-weight: 600;
    color: var(--mc-deep-indigo);
    opacity: 1;
}


/* ── Responsive ── */
@media (max-width: 991px) {
    .mc-footer {
        padding: 36px 28px 28px;
    }
}

@media (max-width: 767px) {
    .mc-footer-wrap {
        padding: 20px 12px;
    }

    .mc-footer {
        padding: 28px 12px 24px;
    }

    .mc-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}