/********** Template CSS **********/
:root {
    --primary: #D6B16B;
    --secondary: #ffffff;
    --light: #FAF8F1;
    --dark: #091E3E;
    --fixed-topbar-height: 44px;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

        body.gold-gradient-page {
            min-height: 100vh;
            background: linear-gradient(
              180deg, #ffffff 0%, #ffffff 14%, #ffffff 34%, #f5f3ee 58% 58%, #fbf8f0 80%, #efebe2 100%
            );
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        body.gold-gradient-page .container-fluid.py-5 {
            background: transparent;
        }
h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    background-color: var(--primary);
    border-color:   var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--secondary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    display: none;
    z-index: 99;
}

.floating-contact-actions {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.floating-action-btn {
    box-shadow: 0 14px 30px rgba(9, 30, 62, .18);
}

.floating-action-wide {
    min-width: 170px;
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, .35);
    background: linear-gradient(135deg, #d6b16b 0%, #c59a46 100%);
}

.floating-action-wide:hover {
    color: var(--primary);
    background: #fff;
}

.whatsapp-floating-btn {
    position: relative;
    min-width: 136px;
    padding: 0.65rem 1rem;
    border-radius: 999px !important;
    border-color: #25D366;
    background: #25D366;
    color: #fff;
    animation: whatsappNeonPulse 2.8s ease-in-out infinite;
    isolation: isolate;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, .72),
        0 0 0 5px rgba(37, 211, 102, .22),
        0 0 18px rgba(204, 255, 226, .9),
        0 0 36px rgba(109, 244, 164, .72),
        0 0 62px rgba(37, 211, 102, .42),
        0 14px 30px rgba(9, 30, 62, .16);
}

.whatsapp-floating-btn::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    z-index: -1;
    background: radial-gradient(circle, rgba(205, 255, 227, .48) 0%, rgba(37, 211, 102, .24) 45%, transparent 72%);
    filter: blur(10px);
    animation: whatsappNeonAura 2.8s ease-in-out infinite;
}

.whatsapp-floating-btn:hover {
    color: #25D366;
    background: #fff;
    border-color: #25D366;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, .86),
        0 0 0 6px rgba(37, 211, 102, .28),
        0 0 24px rgba(224, 255, 237, .98),
        0 0 46px rgba(109, 244, 164, .82),
        0 0 76px rgba(37, 211, 102, .52),
        0 14px 30px rgba(9, 30, 62, .16);
}

@keyframes whatsappNeonPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 2px rgba(255, 255, 255, .62),
            0 0 0 4px rgba(37, 211, 102, .18),
            0 0 14px rgba(210, 255, 230, .7),
            0 0 28px rgba(109, 244, 164, .48),
            0 0 52px rgba(37, 211, 102, .28),
            0 14px 30px rgba(9, 30, 62, .16);
    }
    50% {
        box-shadow:
            0 0 0 2px rgba(255, 255, 255, .92),
            0 0 0 6px rgba(37, 211, 102, .28),
            0 0 24px rgba(235, 255, 243, 1),
            0 0 44px rgba(136, 247, 182, .84),
            0 0 82px rgba(37, 211, 102, .48),
            0 14px 30px rgba(9, 30, 62, .16);
    }
}

@keyframes whatsappNeonAura {
    0%,
    100% {
        opacity: .62;
        transform: scale(.98);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.whatsapp-icon {
    color: #25D366;
}

.whatsapp-floating-btn .whatsapp-icon {
    color: inherit;
}

.we-call-you-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 136px;
    padding: 0.65rem 1rem;
    border-radius: 999px !important;
    border: 1px solid rgba(214, 177, 107, .84);
    color: #fff;
    background: linear-gradient(135deg, #d9bc79 0%, #c79c4d 55%, #b88733 100%);
}

.we-call-you-btn:hover {
    color: var(--primary);
    background: #fff;
    border-color: rgba(214, 177, 107, .95);
}

.consultation-modal-card {
    border: 1px solid rgba(214, 177, 107, .18);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f0 100%);
    box-shadow: 0 24px 48px rgba(9, 30, 62, .18);
}

.consultation-modal-header {
    padding: 1.5rem 1.5rem 0.75rem;
}

.consultation-modal-kicker {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: #b39150;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.consultation-modal-copy {
    margin-bottom: 1rem;
    color: #654c4c;
}

.consultation-modal-close {
    box-shadow: none !important;
}

.consultation-modal-upload {
    min-height: 84px;
}

/* ---- Consultation toast notification ---- */
.consultation-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 16px;
    border-left: 4px solid #D6B16B;
    box-shadow: 0 8px 32px rgba(9, 30, 62, .18);
    min-width: 300px;
    max-width: 360px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .3s ease, transform .3s ease;
}

.consultation-toast-in {
    opacity: 1;
    transform: translateY(0);
}

.consultation-toast-out {
    opacity: 0;
    transform: translateY(16px);
}

.consultation-toast-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.consultation-toast-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.consultation-toast-body strong {
    color: #3a2a2a;
    font-size: 0.95rem;
}

.consultation-toast-body span {
    color: #654c4c;
    font-size: 0.85rem;
}

.consultation-success-circle {
    stroke: #D6B16B;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: consultationCircleDraw .6s cubic-bezier(.65, 0, .45, 1) forwards;
}

.consultation-success-check {
    stroke: #D6B16B;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: consultationCheckDraw .4s .6s cubic-bezier(.65, 0, .45, 1) forwards;
}

@keyframes consultationCircleDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes consultationCheckDraw {
    to { stroke-dashoffset: 0; }
}

@media (max-width: 576px) {
    .consultation-toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        min-width: 0;
    }
}

.consultation-form-error {
    margin-top: 0.75rem;
    margin-bottom: 0;
    color: #dc3545;
    font-size: 0.9rem;
    text-align: center;
}

.whatsapp-floating-btn {
    order: 1;
}

.we-call-you-btn {
    order: 2;
}

.back-to-top {
    order: 3;
}

@media (max-width: 576px) {
    .floating-contact-actions {
        left: 50%;
        right: auto;
        bottom: 14px;
        width: calc(100% - 24px);
        transform: translateX(-50%);
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .floating-action-wide {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 126px;
        min-width: 126px;
        height: 46px;
        padding: 0.65rem 0.8rem;
        font-size: 0.84rem;
    }

    .whatsapp-floating-btn {
        min-width: 126px;
        padding: 0.65rem 0.8rem;
    }

    .we-call-you-btn {
        align-items: center;
        justify-content: center;
        width: 126px;
        min-width: 126px;
        height: 46px;
        padding: 0.65rem 0.8rem;
        font-size: 0.84rem;
        line-height: 1.1;
        order: 1;
    }

    .whatsapp-floating-btn {
        order: 2;
    }

    .back-to-top {
        order: 3;
    }

    .back-to-top {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .consultation-modal .modal-dialog {
        margin: 0.75rem;
    }

    .consultation-modal-header {
        padding: 1.25rem 1.25rem 0.5rem;
    }

    .consultation-modal .modal-body {
        padding: 0 1.25rem 1.25rem;
    }

    .custom-title-contact-text {
        font-size: 31px !important;
    }
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: #E5BA73;
    transform: skew(40deg);
}

.site-fixed-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1035;
    transition: opacity .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}

.site-fixed-navbar {
    position: fixed;
    top: var(--fixed-topbar-height);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    transition: background-color .25s ease, opacity .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}

body.header-scrolled .site-fixed-topbar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
}

body.header-scrolled .site-fixed-navbar {
    top: 0;
    opacity: .92;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, .88) !important;
    box-shadow: 0 12px 28px rgba(9, 30, 62, .10) !important;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-light .navbar-nav .dropdown-menu {
    min-width: 220px;
    border: 1px solid rgba(9, 30, 62, .12);
    border-radius: 4px;
    box-shadow: 0 14px 30px rgba(9, 30, 62, .14);
    padding: 10px 0;
    margin-top: 8px;
}

.navbar-light .navbar-nav .about-plus-toggle::after {
    display: none !important;
}

.navbar-light .navbar-nav .about-plus-toggle,
.navbar-light .navbar-nav .about-plus-toggle:hover,
.navbar-light .navbar-nav .about-plus-toggle:focus,
.navbar-light .navbar-nav .show > .about-plus-toggle,
.navbar-light .navbar-nav .show > .about-plus-toggle:focus {
    background: transparent !important;
    box-shadow: none !important;
}

.navbar-light .navbar-nav .dropdown-item {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    color: var(--dark);
    padding: 11px 18px;
    transition: .3s;
}

.navbar-light .navbar-nav .dropdown-item:hover {
    color: var(--primary);
    background: rgba(214, 177, 107, .12);
}

.wrapper .text::after {
    content: "" !important;
    width: 28px;
    height: 28px;
    display: inline-block;
    margin-left: 64px;
    border: 2px solid #D6B16B;
    border-radius: 50%;
    box-sizing: border-box;
    color: transparent !important;
    -webkit-text-stroke: 0 !important;
}

@media (max-width: 991.98px) {
    .site-fixed-navbar {
        top: 0;
    }

    .navbar {
        padding: 16px 20px !important;
    }

    .navbar-brand {
        margin-right: auto;
    }

    .site-logo {
        height: 76px !important;
        width: auto !important;
        max-width: 220px;
        object-fit: contain;
    }

    .wrapper .text::after {
        width: 18px;
        height: 18px;
        margin-left: 36px;
    }

    .navbar-toggler {
        margin-left: auto;
        flex-shrink: 0;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-collapse > div:not(.navbar-nav) {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
    }

    .navbar-collapse > .btn {
        display: block;
        width: fit-content;
        margin-top: 14px;
        margin-left: 0 !important;
    }

    #header-carousel .carousel-item img {
        height: 420px;
        object-fit: cover;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.34), rgba(38, 46, 61, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1;
}

.mobile-hero-actions {
    display: none;
}

@media (max-width: 576px) {
    .hero-carousel-content {
        padding-top: 2rem !important;
        padding-bottom: 4.5rem !important;
    }

    .hero-carousel-content .btn {
        display: inline-block;
        margin-top: 1rem;
        vertical-align: top;
    }

    .hero-carousel-content .btn + .btn {
        margin-left: 0 !important;
        margin-top: 1rem;
    }

    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }

    .mobile-hero-actions {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 1.25rem;
        flex-wrap: wrap;
    }

    .mobile-hero-btn {
        min-width: 132px;
        padding: 0.85rem 1.25rem;
        border-radius: 999px;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .mobile-hero-btn-outline {
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .72);
        background: rgba(255, 255, 255, .08);
        backdrop-filter: blur(8px);
    }

    .mobile-hero-btn-solid {
        color: #fff;
        border: 1px solid rgba(214, 177, 107, .88);
        background: linear-gradient(135deg, #d9bc79 0%, #c79c4d 55%, #b88733 100%);
        box-shadow: 0 12px 24px rgba(9, 30, 62, .18);
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

/* .section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--primary);
} */

.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)),
url(../img/bannar2.png) center center no-repeat;
    background-size: cover;
}


.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-light {
    background-color: #FAF8F1 !important;
}

.bg-Primary-me {
    background-color: #D6B16B !important;
}

.text-primary {
    color: #D6B16B !important;
}

.custom-title-contact{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    display: inline-block;
    color: var(--primary);
}

.custom-title-contact-black{
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    display: inline-block;
    color: #000000;
}

.custom-title-contact-text {
    display: inline-block;
}

.about-slider-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(9, 30, 62, .14);
    border: 1px solid rgba(255, 255, 255, .36);
    background: #fff;
}

.home-about-slider {
    min-height: 420px;
}

.home-about-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 52px 0 52px 88px;
}

.home-about-content .btn {
    align-self: flex-start;
}

.about-intro-title {
    color: #654c4c;
    line-height: 1.45;
    max-width: 680px;
}

.about-copy-block {
    padding-right: 18px;
}

.about-copy-paragraph {
    position: relative;
    margin-bottom: 0;
    padding: 20px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(214, 177, 107, .16);
    box-shadow: 0 14px 32px rgba(9, 30, 62, .06);
    color: #596273;
    font-size: 1.03rem;
    line-height: 1.9;
}

.about-copy-highlight {
    color: #8f7340;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}

.about-video-card {
    position: sticky;
    top: calc(var(--fixed-topbar-height) + 110px);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(250, 248, 241, .98) 100%);
    box-shadow: 0 24px 48px rgba(9, 30, 62, .16);
}

.about-video-frame {
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    aspect-ratio: 4 / 5;
}

.about-video-element {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 540px;
    max-height: 720px;
    object-fit: cover;
}

.about-video-caption {
    padding: 18px 6px 4px;
    color: rgba(255, 255, 255, .82);
}

.about-video-caption-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-video-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 28px 20px 0;
}

.about-video-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 260px);
    min-height: 58px;
    padding: 1rem 2rem;
    border: 1px solid rgba(214, 177, 107, .88);
    border-radius: 999px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #d9bc79 0%, #c79c4d 55%, #b88733 100%);
    box-shadow:
        0 16px 32px rgba(197, 154, 70, .22),
        inset 0 1px 0 rgba(255, 255, 255, .3);
    margin-top: 3rem;
}

.about-video-cta-btn:hover {
    color: var(--primary);
    background: #fff;
    border-color: rgba(214, 177, 107, .95);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(9, 30, 62, .12);
}


.home-services {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(9, 30, 62, .14);
    border: 1px solid rgba(255, 255, 255, .36);
}

.about-slide-image {
    object-fit: cover;
    filter: saturate(1.03) contrast(1.03);
}

.about-slider .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 30, 62, .15), rgba(9, 30, 62, 0) 45%);
}

.about-slider .carousel-indicators {
    margin-bottom: 12px;
}

.about-slider .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, .68);
    opacity: 1;
}

.about-slider .carousel-indicators .active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.dropdown-item.active{
    background-color: var(--primary) !important;
}

.about-slider-control {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(9, 30, 62, .36);
    border-radius: 50%;
    opacity: 0;
    transition: .3s;
}

.about-slider:hover .about-slider-control {
    opacity: 1;
}

.about-slider .carousel-control-prev.about-slider-control {
    left: 12px;
}

.about-slider .carousel-control-next.about-slider-control {
    right: 12px;
}

@media (max-width: 991.98px) {
    .home-about-slider {
        min-height: 360px;
    }

    .home-about-content {
        padding: 16px 18px 0;
    }

    .home-about-content .btn {
        margin-top: 1rem !important;
    }

    .about-copy-block {
        padding-right: 0;
    }

    .about-video-card {
        position: static;
        margin-top: 8px;
    }

    .about-video-element {
        min-height: 380px;
        max-height: 520px;
    }
}


/*
review
*/
.reviews-section{
    padding:100px 5%;
}

.slider-wrapper{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.slider-container{
    overflow:hidden;
    padding: 10px;
}

.reviews-slider{
    display:flex;
    gap:30px;
    transition:transform .5s ease;
}

.review-card{
    min-width:360px;
    max-width: 360px;
    width: 360px;
    background:#fff;
    border-radius:18px;
    padding:30px;
    flex-shrink:0;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.review-header{
    display:flex;
    align-items:center;
    margin-bottom:15px;
}

.review-avatar{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;
    border:3px solid #c6a85e;
}

.stars{
    color:#f5b301;
    margin:8px 0;
}

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border-radius:50%;
    background:#c6a85e;
    border:none;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    z-index:999;
    box-shadow: 0 10px 22px rgba(9, 30, 62, .16);
}

.arrow.left{ left:-25px; }
.arrow.right{ right:-25px; }

.blog-card {
    transition: .4s;
    box-shadow: 0 10px 30px rgba(9, 30, 62, .08);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(9, 30, 62, .15);
}

.blog-card-image {
    height: 240px;
    object-fit: cover;
    transition: .5s;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.06);
}

.blog-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    background: var(--primary);
    color: var(--light);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: .2px;
}

.blog-detail-content {
    box-shadow: 0 10px 30px rgba(9, 30, 62, .08);
}

.blog-quote {
    border-left: 4px solid var(--primary);
    background: rgba(214, 177, 107, .12);
}

.pricing-table-wrap {
    box-shadow: 0 10px 30px rgba(9, 30, 62, .08);
}

.pricing-table thead th {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid rgba(9, 30, 62, .12);
    padding: 16px 12px;
}

.pricing-table tbody td {
    border-bottom: 1px solid rgba(9, 30, 62, .08);
    padding: 14px 12px;
    color: #4a5568;
    vertical-align: middle;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.package-card {
    box-shadow: 0 8px 24px rgba(9, 30, 62, .07);
    transition: .35s;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(9, 30, 62, .14);
}

.pricing-check-list li {
    margin-bottom: 12px;
}

.pricing-check-list li:last-child {
    margin-bottom: 0;
}

.process-step {
    border-left: 3px solid var(--primary);
    padding-left: 16px;
}

.service-feature-card {
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(9, 30, 62, .08);
    transition: .35s;
}

.service-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(9, 30, 62, .14);
}

.service-feature-image {
    height: 220px;
    object-fit: cover;
}

.service-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(214, 177, 107, .18);
    color: var(--primary);
    margin-bottom: 14px;
    font-size: 16px;
}

.services-accordion .accordion-item {
    box-shadow: 0 8px 22px rgba(9, 30, 62, .08);
}

.services-accordion .accordion-button {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
}

.services-accordion .accordion-button:not(.collapsed) {
    color: var(--dark);
    background: rgba(214, 177, 107, .18);
    box-shadow: none;
}

.services-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.service-detail-list {
    padding-left: 18px;
}

.service-detail-list li {
    margin-bottom: 6px;
}

.service-detail-list li:last-child {
    margin-bottom: 0;
}

.service-toggle-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: #fff;
}

.service-toggle-btn:hover {
    color: #fff;
    background: var(--primary);
}

.service-collapse {
    border-top: 1px solid rgba(9, 30, 62, .1);
    padding-top: 12px;
}

.service-page-intro {
    max-width: 820px;
    margin: 0 auto;
}

.service-detail-link {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.service-detail-link:hover {
    color: #fff;
    background: var(--primary);
}

.service-list-link {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color .3s ease;
}

.service-list-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.service-page-kicker {
    font-size: 26px;
    font-family: 'Jost', sans-serif;
    color: #000;
    font-weight: 500;
}

.services-category-stack {
    display: grid;
    gap: 24px;
}

.services-category-panel {
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(500px, 240px) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    padding: 28px 30px;
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 248, 241, .96));
    border: 1px solid rgba(9, 30, 62, .10);
    box-shadow: 0 10px 30px rgba(9, 30, 62, .08);
}

.services-category-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(9, 30, 62, .06);
    border-radius: 10px;
}

.services-category-image {
    border-radius: 8px;
    box-shadow: none;
    width: 100%;
    height: 100%;
    max-height: 218px;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.6s ease;
}

.services-category-index {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    color: var(--primary);
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.services-category-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.services-category-copy {
    padding-right: 0;
    align-self: start;
}

.services-category-copy h2 {
    margin-bottom: 18px;
    line-height: 1.12;
    color: #595660;
}

.services-category-copy p {
    margin-bottom: 0;
    color: #5d6777;
    font-size: 1.05rem;
    line-height: 1.75;
}

.services-category-list-wrap {
    align-self: stretch;
}

.services-category-list-card {
    height: 100%;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.services-category-list-head h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.services-category-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.subject-picker {
    position: relative;
}

.subject-picker-input {
    padding-right: 52px !important;
}

.subject-picker-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--primary);
    font-size: 16px;
    line-height: 1;
    z-index: 2;
}

.subject-picker-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 10px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 248, 241, .98));
    border: 1px solid rgba(214, 177, 107, .28);
    box-shadow: 0 18px 36px rgba(9, 30, 62, .12);
    z-index: 20;
}

.subject-picker.is-open .subject-picker-menu {
    display: grid;
    gap: 8px;
}

.subject-picker.is-open .subject-picker-toggle i {
    transform: rotate(180deg);
}

.form-upload-card {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .9);
    border: 1px dashed rgba(214, 177, 107, .5);
    cursor: pointer;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.form-upload-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(9, 30, 62, .06);
    transform: translateY(-1px);
}

.form-upload-input {
    display: none;
}

.form-upload-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(214, 177, 107, .14);
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
}

.form-upload-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-upload-copy strong {
    font-family: 'Jost', sans-serif;
    color: var(--dark);
    font-size: 18px;
}

.form-upload-copy small {
    color: #697283;
    line-height: 1.6;
}

.subject-picker-toggle i {
    transition: transform .25s ease;
}

.subject-picker-option {
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 12px 14px;
    text-align: left;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    color: var(--dark);
    background: rgba(214, 177, 107, .1);
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.subject-picker-option:hover,
.subject-picker-option:focus {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.contact-inline-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .25s ease, border-color .25s ease;
}

.contact-inline-link:hover,
.contact-inline-link:focus {
    color: var(--primary);
    border-color: transparent;
}

.top-shape .contact-inline-link:hover,
.top-shape .contact-inline-link:focus {
    color: #000 !important;
    border-color: transparent;
}

.appointment-hero {
    position: relative;
    overflow: hidden;
    padding: 30px 34px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(214, 177, 107, .24), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 242, 232, .94));
    border: 1px solid rgba(214, 177, 107, .18);
    box-shadow: 0 18px 40px rgba(9, 30, 62, .08);
}

.appointment-hero-title {
    max-width: 22ch;
    margin-bottom: 12px;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1.04;
}

.appointment-hero-text {
    max-width: 720px;
    color: #596273;
    font-size: 16px;
}

.appointment-hero-inline-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(214, 177, 107, .18);
    box-shadow: 0 12px 30px rgba(9, 30, 62, .06);
}

.appointment-hero-inline-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 24px;
    font-family: 'Jost', sans-serif;
}

.appointment-hero-inline-card span {
    color: #5b6575;
}

.appointment-hero-mini-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.appointment-hero-mini-metrics span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(214, 177, 107, .12);
    color: var(--dark);
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.appointment-sidebar {
    position: sticky;
    top: 108px;
}

.appointment-stepper,
.appointment-summary-card,
.appointment-panel {
    border-radius: 28px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(214, 177, 107, .16);
    box-shadow: 0 16px 38px rgba(9, 30, 62, .08);
}

.appointment-stepper {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.appointment-step {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 0;
    border-radius: 22px;
    background: transparent;
    text-align: left;
    transition: background .25s ease, transform .25s ease;
}

.appointment-step-no {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(214, 177, 107, .14);
    color: var(--primary);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}

.appointment-step strong,
.appointment-step small {
    display: block;
}

.appointment-step small {
    margin-top: 4px;
    color: #737c8c;
}

.appointment-step.is-active {
    background: linear-gradient(135deg, rgba(214, 177, 107, .16), rgba(214, 177, 107, .08));
    transform: translateY(-1px);
}

.appointment-step.is-active .appointment-step-no {
    background: var(--primary);
    color: #fff;
}

.appointment-summary-card {
    padding: 26px;
}

.appointment-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(9, 30, 62, .08);
}

.appointment-summary-item span {
    color: #737c8c;
}

.appointment-summary-item strong {
    text-align: right;
    color: var(--dark);
}

.appointment-summary-item-stack {
    display: block;
}

.appointment-summary-item-stack strong {
    display: block;
    margin-top: 10px;
    text-align: left;
    white-space: normal;
    line-height: 1.5;
}

.appointment-summary-note {
    margin-top: 18px;
    color: #5b6575;
}

.appointment-panel {
    padding: 26px;
}

.appointment-stage {
    display: none;
}

.appointment-stage.is-active {
    display: block;
}

.appointment-stage-head {
    margin-bottom: 24px;
}

.appointment-stage-head h2 {
    margin: 14px 0 10px;
}

.appointment-stage-head p {
    margin-bottom: 0;
    color: #5f6878;
}

.appointment-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(214, 177, 107, .14);
    color: var(--dark);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.appointment-input {
    min-height: 58px;
    border: 1px solid rgba(214, 177, 107, .18) !important;
    border-radius: 18px;
    background: rgba(255, 255, 255, .92) !important;
    box-shadow: none !important;
    color: var(--dark);
}

.appointment-input:focus {
    border-color: rgba(214, 177, 107, .68) !important;
    box-shadow: 0 0 0 .25rem rgba(214, 177, 107, .14) !important;
}

.appointment-textarea {
    min-height: 150px;
    padding-top: 16px;
}

.appointment-select-wrap {
    position: relative;
}

.appointment-doctor-card {
    position: relative;
    display: block;
    height: 100%;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 248, 241, .94));
    border: 1px solid rgba(214, 177, 107, .16);
    box-shadow: 0 14px 34px rgba(9, 30, 62, .07);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.appointment-doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(9, 30, 62, .12);
}

.appointment-doctor-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 16px;
}

.appointment-doctor-card strong,
.appointment-doctor-card small {
    display: block;
}

.appointment-doctor-card small {
    margin-top: 8px;
    color: #6c7585;
}

.appointment-doctor-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.appointment-doctor-card.is-selected {
    border-color: rgba(214, 177, 107, .68);
    box-shadow: 0 18px 42px rgba(214, 177, 107, .16);
}

.appointment-doctor-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.appointment-slot-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
}

.appointment-date-grid,
.appointment-time-grid {
    display: grid;
    gap: 12px;
}

.appointment-date-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.appointment-time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.appointment-slot-btn {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(214, 177, 107, .18);
    background: rgba(255, 255, 255, .92);
    color: var(--dark);
    text-align: left;
    transition: all .25s ease;
}

.appointment-slot-btn strong,
.appointment-slot-btn small {
    display: block;
}

.appointment-slot-btn small {
    color: #717a89;
}

.appointment-slot-btn:hover,
.appointment-slot-btn.is-active {
    border-color: rgba(214, 177, 107, .74);
    background: linear-gradient(135deg, rgba(214, 177, 107, .18), rgba(214, 177, 107, .08));
    box-shadow: 0 14px 32px rgba(214, 177, 107, .14);
}

.appointment-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
}

.appointment-nav-btn,
.appointment-submit-btn {
    min-width: 170px;
    border-radius: 999px;
    padding: 14px 24px;
    font-family: 'Jost', sans-serif;
}

.appointment-success {
    margin-top: 28px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(214, 177, 107, .18), rgba(255, 255, 255, .96));
    border: 1px solid rgba(214, 177, 107, .24);
    text-align: center;
}

.appointment-success-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 28px;
}

.brand-landing-hero {
    border-radius: 30px;
    padding: 42px;
    background:
        radial-gradient(circle at top right, rgba(214, 177, 107, .24), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 242, 232, .94));
    border: 1px solid rgba(214, 177, 107, .18);
    box-shadow: 0 18px 40px rgba(9, 30, 62, .08);
}

.brand-landing-image {
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(9, 30, 62, .1);
}

.brand-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.brand-metric-card,
.brand-info-card,
.brand-detail-card {
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(214, 177, 107, .16);
    box-shadow: 0 14px 32px rgba(9, 30, 62, .07);
}

.brand-metric-card h3 {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 28px;
}

.brand-info-card h5,
.brand-detail-card h5 {
    margin-bottom: 12px;
}

.brand-check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.brand-check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #576172;
}

.brand-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

.brand-detail-card p,
.brand-info-card p,
.brand-metric-card p {
    margin-bottom: 0;
    color: #596273;
}

.brand-cta-panel {
    border-radius: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #8f7a4c 0%, #c5a15d 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(9, 30, 62, .12);
}

.brand-cta-panel p {
    color: rgba(255, 255, 255, .9);
}


.appointment-validation-alert {
    margin-top: 24px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(220, 53, 69, .08);
    border: 1px solid rgba(220, 53, 69, .18);
    color: #a6404e;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .appointment-hero {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .appointment-sidebar {
        position: static;
    }

    .appointment-slot-layout {
        grid-template-columns: 1fr;
    }

    .appointment-hero-inline-card {
        padding: 16px 18px;
    }

    .appointment-stepper {
        grid-template-columns: 1fr;
    }

    .brand-landing-hero {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .brand-metric-grid {
        grid-template-columns: 1fr;
    }

}

.service-detail-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-detail-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(214, 177, 107, .14);
    color: var(--dark);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.service-detail-nav a:hover {
    background: var(--primary);
    color: #fff;
}

.service-detail-section {
    scroll-margin-top: 100px;
}

.service-detail-card {
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, .76);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(214, 177, 107, .22);
    box-shadow: 0 16px 40px rgba(9, 30, 62, .08);
}

.service-detail-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.service-detail-copy {
    padding: 36px;
}

.service-detail-copy p {
    color: #5b6575;
}

.service-detail-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.service-detail-fact {
    border-radius: 14px;
    background: rgba(214, 177, 107, .12);
    padding: 16px 18px;
}

.service-detail-fact h6 {
    margin-bottom: 6px;
    color: var(--dark);
}

.service-detail-fact p {
    margin-bottom: 0;
    font-size: 14px;
}

.service-detail-list-clean {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-detail-list-clean li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #4a5568;
}

.service-detail-list-clean li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

.service-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 56px;
    background:
        radial-gradient(circle at top left, rgba(214, 177, 107, .3), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(247, 242, 232, .92));
    box-shadow: 0 18px 40px rgba(9, 30, 62, .08);
    border: 1px solid rgba(214, 177, 107, .18);
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: auto -120px -120px auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 177, 107, .24), transparent 68%);
    pointer-events: none;
}

.service-hero-copy {
    position: relative;
    z-index: 1;
}

.service-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(214, 177, 107, .14);
    color: var(--dark);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
}

.service-hero-title {
    max-width: 10ch;
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.02;
}

.service-hero-text {
    max-width: 640px;
    color: #596273;
    font-size: 17px;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.service-secondary-btn {
    border: 1px solid rgba(9, 30, 62, .12);
    background: #fff;
    color: var(--dark);
}

.service-secondary-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.service-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-metric-card {
    border-radius: 22px;
    padding: 22px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(214, 177, 107, .16);
    box-shadow: 0 12px 32px rgba(9, 30, 62, .06);
}

.service-metric-card h3 {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 28px;
}

.service-metric-card p {
    margin-bottom: 0;
    color: #5f6878;
}

.service-showcase {
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 38px rgba(9, 30, 62, .08);
    border: 1px solid rgba(214, 177, 107, .14);
}

.service-showcase-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.service-showcase-copy {
    padding: 36px;
}

.service-showcase-copy p {
    color: #596273;
}

.service-icon-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 0;
}

.service-icon-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    color: #4f5968;
}

.service-icon-list i {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(214, 177, 107, .14);
    color: var(--primary);
}

.service-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-step-card {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(247, 242, 232, .82));
    border: 1px solid rgba(214, 177, 107, .14);
    padding-bottom: 20px;
}

.service-step-no {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}

.service-cta-panel {
    border-radius: 28px;
    padding: 44px;
    background: linear-gradient(135deg, #8f7a4c 0%, #c5a15d 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(9, 30, 62, .12);
}

.service-cta-panel p {
    color: rgba(255, 255, 255, .88);
}

.service-cta-panel .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.service-cta-panel .btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.lead-doctor-card {
    box-shadow: 0 12px 30px rgba(9, 30, 62, .08);
}

.team-intro-text {
    max-width: 920px;
    margin: 0 auto;
    color: #5b6575;
}

.lead-doctor-image-wrap {
    text-align: center;
}

.lead-doctor-image {
    width: 72%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}

.expert-team-card {
    box-shadow: 0 10px 24px rgba(9, 30, 62, .08);
    transition: .35s;
}

.expert-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(9, 30, 62, .14);
}

.expert-team-image {
    height: 260px;
    object-fit: cover;
}

.footer-gradient-main {
    background: linear-gradient(140deg, #6e6142 0%, #8d7b52 32%, #a48f62 60%, #b9a171 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.footer-gradient-sub {
    background: linear-gradient(135deg, #5d5238 0%, #7b6a47 55%, #938055 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-pair {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.footer-logo-item {
    width: 40%;
    height: auto;
}

.footer-logo-divider {
    width: 1px;
    height: 86px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, rgba(214, 177, 107, .95) 50%, rgba(255, 255, 255, .18) 100%);
    box-shadow: 0 0 10px rgba(214, 177, 107, .18);
}

@media(max-width:768px){
    .footer-gradient-main {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important;
    }

    .footer-gradient-main .container.pt-5 {
        padding-top: 0.5rem !important;
    }

    .footer-gradient-main .row.g-5 {
        --bs-gutter-x: 1.1rem;
        --bs-gutter-y: 1.5rem;
    }

    .footer-gradient-sub {
        padding-top: 0.85rem !important;
        padding-bottom: 0.85rem !important;
    }

    .footer-logo-pair {
        gap: 12px;
    }

    .footer-logo-divider {
        height: 56px;
    }

    .appointment-panel,
    .appointment-summary-card {
        padding: 22px;
        border-radius: 22px;
    }

    .appointment-stepper {
        padding: 14px;
        border-radius: 22px;
    }

    .appointment-step {
        padding: 14px;
    }

    .appointment-date-grid,
    .appointment-time-grid {
        grid-template-columns: 1fr;
    }

    .appointment-actions {
        flex-direction: column;
    }

    .appointment-nav-btn,
    .appointment-submit-btn {
        width: 100%;
    }

    .appointment-doctor-card img {
        height: 200px;
    }

    .slider-wrapper{
        max-width: 100%;
        padding: 0 10px;
    }

    .slider-container{
        padding: 10px 0;
    }

    .reviews-slider{
        gap: 16px;
    }

    .review-card{
        min-width: 100%;
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
    }

    .arrow{
        display: none;
    }

    .blog-card-image {
        height: 220px;
    }

    .mobile-services {
        margin-top: 0px;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 12px 8px;
        font-size: 14px;
    }

    .service-feature-image {
        height: 200px;
    }

    .service-detail-copy {
        padding: 26px 22px;
    }

    .service-detail-facts {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding: 34px 24px;
        border-radius: 22px;
    }

    .service-showcase-copy {
        padding: 26px 22px;
    }

    .service-metric-grid,
    .service-steps {
        grid-template-columns: 1fr;
    }

    .service-cta-panel {
        padding: 32px 24px;
        border-radius: 22px;
    }

    .services-category-panel {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .services-category-media {
        min-height: 200px;
    }

    .services-category-image {
        max-width: 260px;
        height: 200px;
    }

    .services-category-copy {
        padding-right: 0;
    }

    .services-category-list {
        gap: 12px;
    }

    .services-service-link {
        width: 100%;
        padding: 16px 18px;
    }

    .lead-doctor-image {
        width: 78%;
        max-width: 260px;
        height: 220px;
    }

    .expert-team-image {
        height: 240px;
    }
}

@font-face {
    font-family: 'Staylucky';
    src: url('/fonts/Staylucky.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ── Floating blobs ── */
        .doctors-blob-wrap {
            position: fixed;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }
        .doctors-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.13;
            animation: blobDrift 18s ease-in-out infinite alternate;
        }
        .doctors-blob-1 {
            width: 520px; height: 520px;
            background: radial-gradient(circle, #D6B16B, #e8c97a);
            top: -120px; left: -160px;
            animation-duration: 20s;
        }
        .doctors-blob-2 {
            width: 400px; height: 400px;
            background: radial-gradient(circle, #b8922a, #D6B16B);
            bottom: 10%; right: -100px;
            animation-duration: 25s;
            animation-delay: -8s;
        }
        .doctors-blob-3 {
            width: 300px; height: 300px;
            background: radial-gradient(circle, #091E3E, #1a3566);
            top: 50%; left: 40%;
            opacity: 0.07;
            animation-duration: 30s;
            animation-delay: -15s;
        }
        @keyframes blobDrift {
            0%   { transform: translate(0, 0) scale(1); }
            33%  { transform: translate(60px, 40px) scale(1.08); }
            66%  { transform: translate(-40px, 70px) scale(0.95); }
            100% { transform: translate(30px, -50px) scale(1.04); }
        }

        /* ── Hero ── */
        .doctors-hero {
            position: relative;
            z-index: 1;
            padding: 80px 0 56px;
            text-align: center;
        }
        .doctors-hero-kicker {
            display: inline-block;
            padding: 6px 20px;
            border-radius: 999px;
            background: rgba(214, 177, 107, 0.15);
            border: 1px solid rgba(214, 177, 107, 0.45);
            color: #b8922a;
            font-family: 'Jost', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .doctors-hero h1 {
            font-family: 'Jost', sans-serif;
            font-size: clamp(2.2rem, 4vw, 3.4rem);
            font-weight: 700;
            color: var(--dark);
            line-height: 1.15;
            margin-bottom: 24px;
        }
        .doctors-hero h1 span {
            color: var(--primary);
        }
        .doctors-hero-lead {
            max-width: 720px;
            margin: 0 auto;
            color: #5d6777;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* ── Divider ── */
        .doctors-divider {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 18px;
            max-width: 240px;
            margin: 0 auto 64px;
        }
        .doctors-divider::before,
        .doctors-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(214,177,107,0.6));
        }
        .doctors-divider::after {
            background: linear-gradient(90deg, rgba(214,177,107,0.6), transparent);
        }
        .doctors-divider-icon {
            color: var(--primary);
            font-size: 1.2rem;
        }

        /* ── Section label ── */
        .doctors-section-label {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 52px;
        }
        .doctors-section-label h2 {
            font-family: 'Jost', sans-serif;
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: var(--dark);
            font-weight: 700;
        }
        .doctors-section-label p {
            color: #7a8697;
            font-size: 0.95rem;
            margin-top: 6px;
            margin-bottom: 0;
        }

        /* ── Doctor cards grid ── */
        .doctors-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            padding-bottom: 80px;
        }

        /* ── Single doctor card ── */
        .doctor-card {
            border-radius: 24px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.62);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(214, 177, 107, 0.22);
            box-shadow:
                0 8px 32px rgba(9, 30, 62, 0.08),
                inset 0 1px 0 rgba(255,255,255,0.9);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .doctor-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 24px 56px rgba(9, 30, 62, 0.13),
                inset 0 1px 0 rgba(255,255,255,0.9);
        }

        /* Photo area */
        .doctor-card-photo-wrap {
            position: relative;
            height: 460px;
            overflow: hidden;
        }
        .doctor-card-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            transition: transform 0.6s ease;
        }
        .doctor-card:hover .doctor-card-photo {
            transform: scale(1.03);
        }

        /* Photo gradient overlay */
        .doctor-card-photo-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                transparent 50%,
                rgba(9, 30, 62, 0.6) 100%
            );
        }

        /* Name badge on photo */
        .doctor-card-name-badge {
            position: absolute;
            bottom: 20px;
            left: 24px;
            right: 24px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 12px;
        }
        .doctor-card-name-badge h3 {
            font-family: 'Jost', sans-serif;
            font-size: 1.45rem;
            font-weight: 700;
            color: #fff;
            margin: 0;
            line-height: 1.2;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        .doctor-card-name-badge h3 small {
            display: block;
            font-size: 0.78rem;
            font-weight: 500;
            color: rgba(255,255,255,0.8);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 3px;
        }
        .doctor-card-badge-icon {
            flex-shrink: 0;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(214, 177, 107, 0.85);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            box-shadow: 0 4px 14px rgba(214,177,107,0.5);
        }

        /* Card body */
        .doctor-card-body {
            padding: 28px 28px 32px;
        }

        /* Glass stat chips */
        .doctor-stats {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .doctor-stat-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 13px;
            border-radius: 999px;
            background: rgba(214, 177, 107, 0.1);
            border: 1px solid rgba(214, 177, 107, 0.35);
            font-size: 0.78rem;
            font-weight: 600;
            color: #8a6820;
            font-family: 'Jost', sans-serif;
        }
        .doctor-stat-chip i {
            font-size: 0.8rem;
            color: var(--primary);
        }

        /* Bio */
        .doctor-card-bio {
            color: #5d6777;
            font-size: 0.93rem;
            line-height: 1.78;
            margin-bottom: 24px;
        }

        /* Specialties */
        .doctor-specialties-label {
            font-family: 'Jost', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .doctor-specialties {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-bottom: 26px;
        }
        .doctor-specialty-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 11px;
            border-radius: 6px;
            background: rgba(9, 30, 62, 0.05);
            border: 1px solid rgba(9, 30, 62, 0.08);
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--dark);
        }
        .doctor-specialty-tag i {
            color: var(--primary);
            font-size: 0.72rem;
        }

        /* CTA strip */
        .doctor-card-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid rgba(9, 30, 62, 0.07);
        }
        .doctor-card-cta-text {
            font-size: 0.82rem;
            color: #8a95a5;
        }
        .doctor-card-cta .btn {
            font-size: 0.82rem;
            padding: 8px 20px;
            border-radius: 999px;
        }

        /* ── Floating ring decorations ── */
        .doctors-ring {
            position: absolute;
            border-radius: 50%;
            border: 1.5px solid rgba(214,177,107,0.2);
            pointer-events: none;
            animation: ringPulse 6s ease-in-out infinite alternate;
        }
        .doctors-ring-1 {
            width: 180px; height: 180px;
            top: -40px; right: -50px;
        }
        .doctors-ring-2 {
            width: 100px; height: 100px;
            top: 20px; right: 20px;
            animation-delay: -2s;
        }
        @keyframes ringPulse {
            0%   { transform: scale(1);   opacity: 0.5; }
            100% { transform: scale(1.1); opacity: 1; }
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .doctors-grid {
                grid-template-columns: 1fr;
                max-width: 540px;
                margin: 0 auto;
            }
            .doctor-card-photo-wrap {
                height: 400px;
            }
        }
        @media (max-width: 576px) {
            .doctors-hero {
                padding: 52px 0 36px;
            }
            .doctor-card-body {
                padding: 22px 20px 26px;
            }
        }