@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    /* Gold palette */
    --gold: #C9A227;
    --gold-lt: #E8C96D;
    --gold-dk: #9A7A1A;
    --gold-pale: #FDF6E3;
    --gold-soft: #F5EAC8;
    /* Dark palette */
    --dark: #1A1204;
    --dark-mid: #231A06;
    --dark-soft: #2E2108;
    /* Neutrals */
    --white: #FFFFFF;
    --off: #F8F7F4;
    --off2: #FAF7EF;
    --gray: #F2F0EC;
    --text: #1A1200;
    --muted: #7A7060;
    --border: #EAE5D5;
    --border-gold: #E8E2D6;
    --shadow: 0 4px 24px rgba(201, 162, 39, .07);
    --shadow-lg: 0 12px 48px rgba(201, 162, 39, .13);
    --shadow-gold: 0 8px 32px rgba(201, 162, 39, .22)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    color: var(--text);
    background: #fff;
    overflow-x: hidden
}

::selection {
    background: var(--gold);
    color: #fff
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--gold-pale)
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold), var(--gold-dk));
    border-radius: 3px
}

h1,
h2,
h3,
h4 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    line-height: 1.18;
    color: var(--text)
}
p{
    line-height: 1.1;
}

.tag {
    align-items: center;
    gap: .38rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid var(--gold-soft);
    padding: .3rem .85rem;
    border-radius: 20px;
    margin-bottom: .75rem;
    width: max-content;
    margin: 20px auto;
}

.section-title {
    font-size: clamp(2.5rem, 3.5vw, 2.9rem);
    margin-bottom: 1rem
}

.gradient-title {
    color: var(--gold-dk);
    background-clip: text;
    display: inline-block;
    position: relative;
    padding-bottom: 0.18em;
}

.gradient-title::after {
    content: '';
    display: block;
    height: 59px;
    margin-top: 8px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent 0%, #fff1c6 20%, #fff3cc 50%, #fff1c6 80%, transparent 100%);
    position: absolute;
    z-index: -1;
    width: 100%;
    top: -8px;
}

.lead-text {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.9;
    font-weight: 400
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gold);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .8rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 30px;
    text-decoration: none;
    transition: all .3s;
    cursor: pointer;
    width: max-content
}

.btn-gold:hover {
    background: var(--gold-dk);
    border-color: var(--gold-dk);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 162, 39, .3)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--gold);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .78rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 30px;
    text-decoration: none;
    transition: all .3s
}

.btn-outline:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px)
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    color: var(--gold-dk);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .8rem 2rem;
    border: 2px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: all .3s
}

.btn-white:hover {
    background: transparent;
    color: #fff;
    border-color: #fff
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: transparent;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .88rem 2.1rem;
    border: 2px solid rgba(255, 255, 255, .55);
    border-radius: 30px;
    text-decoration: none;
    transition: all .3s;
    backdrop-filter: blur(4px)
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18)
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .88rem 2.1rem;
    border: 2px solid transparent;
    border-radius: 30px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 6px 24px rgba(201, 162, 39, .45)
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, var(--gold-lt), var(--gold));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(201, 162, 39, .55)
}

/* TOP BAR */
#topbar {
    background: linear-gradient(90deg, var(--dark) 0%, var(--dark-mid) 50%, var(--dark) 100%);
    padding: .48rem 0;
    border-bottom: 2px solid var(--gold)
}

#topbar .info {
    font-size: .77rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .4rem
}

#topbar .info i {
    color: var(--gold-lt)
}

#topbar .socials a {
    color: rgba(255, 255, 255, .6);
    font-size: .78rem;
    margin-left: .6rem;
    transition: all .2s;
    text-decoration: none
}

#topbar .socials a:hover {
    color: var(--gold)
}

/* LANGUAGE TOGGLE */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(201, 162, 39, .3);
    border-radius: 20px;
    padding: 2px;
    gap: 0
}

.lang-btn {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: .18rem .65rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .25s;
    line-height: 1.6
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #fff;
    box-shadow: 0 2px 8px rgba(201, 162, 39, .4)
}

.lang-btn:not(.active):hover {
    color: var(--gold-lt)
}

/* NAVBAR */
.navbar {
    padding: 5px 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(26, 18, 4, .06);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all .3s
}

.navbar-brand {
    width: 220px;
    height: 90px;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.navbar.scrolled {
    box-shadow: 0 4px 28px rgba(26, 18, 4, .12);
    border-bottom-color: var(--gold-soft)
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--text) !important;
    padding: .4rem .9rem !important;
    position: relative;
    transition: color .25s
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: .9rem;
    right: .9rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .3s;
    border-radius: 1px
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: .9rem;
    right: .9rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold));
    transform: scaleX(0);
    transition: transform .3s;
    border-radius: 1px
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1)
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dk)) !important;
    color: #fff !important;
    border-radius: 24px;
    padding: .45rem 1.4rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(201, 162, 39, .3) !important
}

.nav-cta::after {
    display: none !important
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-dk), var(--dark-soft)) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(201, 162, 39, .4) !important
}

/* NAVBAR TREATMENT DROPDOWN */
.treat-arrow {
    font-size: .6rem;
    margin-left: .3rem;
    vertical-align: middle;
    transition: transform .25s;
    color: var(--gold)
}

.dropdown.show .treat-arrow {
    transform: rotate(180deg)
}

.treat-drop {
    border: none !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 40px rgba(26, 18, 4, .14) !important;
    padding: .6rem !important;
    min-width: 380px !important;
    border-top: 2px solid var(--gold) !important;
    margin-top: 0 !important;
    padding-top: calc(.6rem + 6px) !important;
    gap: 0
}

.treat-drop .dropdown-item {
    font-size: .86rem;
    font-weight: 600;
    color: var(--text);
    padding: .58rem 1rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    transition: all .2s;
    border-radius: 8px
}

.treat-drop .dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--gold);
    font-size: .82rem;
    flex-shrink: 0
}

.treat-drop .dropdown-item:hover,
.treat-drop .dropdown-item:focus {
    background: var(--gold-pale);
    color: var(--gold-dk);
    padding-left: 1.2rem
}

/* TREATMENT SUB-MENUS */
.treat-has-sub {
    position: relative
}

.treat-has-sub>.dropdown-item {
    justify-content: flex-start;
    transition: all .2s;
}

.treat-sub-arrow {
    margin-left: auto;
    font-size: .55rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .3s ease;
}

.treat-submenu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 210px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(26, 18, 4, .15);
    padding: .5rem;
    border-top: 2px solid var(--gold);
    list-style: none;
    z-index: 1060;
    transition: opacity .15s, visibility 0s linear .15s
}

.treat-has-sub:hover>.treat-submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity .15s, visibility 0s linear 0s
}

.treat-submenu .dropdown-item {
    font-size: .83rem;
    font-weight: 500;
    color: var(--text);
    padding: .5rem .9rem;
    border-radius: 7px;
    transition: all .2s
}

.treat-submenu .dropdown-item:hover {
    background: var(--gold-pale);
    color: var(--gold-dk);
    padding-left: 1.15rem
}

/* Desktop behavior */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .treat-drop {
        display: grid;
    }

    .nav-item.dropdown:hover .treat-arrow {
        transform: rotate(180deg);
    }
}

/* Tablet & Mobile behavior */
@media (max-width: 991px) {
    .navbar-collapse {
        overflow-y: auto !important;
        max-height: calc(100vh - 110px);
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .navbar-collapse.show {
        padding-bottom: .75rem;
    }

    .treat-drop {
        position: static !important;
        float: none !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border-top: 2px solid var(--gold) !important;
        margin-top: 0 !important;
        padding: .6rem 0 !important;
    }

    .dropdown.show > .treat-drop {
        display: block !important;
    }

    .treat-drop .dropdown-item {
        font-size: .8rem;
        padding: .5rem 1rem;
    }

    .treat-submenu {
        position: static !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        min-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: var(--off) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border-top: 1px solid var(--border) !important;
        border-left: 3px solid var(--gold) !important;
        list-style: none !important;
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height .25s ease, opacity .2s ease !important;
    }

    .treat-has-sub.expanded > .treat-submenu {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        padding: .4rem 0 .4rem 1.2rem !important;
        display: block !important;
        max-height: 600px !important;
    }

    .treat-has-sub.expanded > .dropdown-item {
        background: var(--gold-pale);
        color: var(--gold-dk);
    }

    .treat-has-sub.expanded .treat-sub-arrow {
        transform: rotate(90deg);
    }

    .treat-submenu .dropdown-item {
        font-size: .75rem;
        padding: .35rem .8rem;
        color: var(--muted);
    }

    .treat-submenu .dropdown-item:hover {
        background: transparent;
        color: var(--gold);
        padding-left: 1rem;
    }
}

.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='%23C9A227' stroke-linecap='round' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}



/* HERO SLIDER */
#hero {
    position: relative;
    /* background: var(--dark) */
}

.hero-swiper {
    position: relative;
    overflow: hidden
}

.hero-swiper .swiper-slide {
    position: relative;
    min-height: 88vh
}

.hslide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 6s ease;
}

.swiper-slide-active .hslide-bg {
    transform: scale(1.06)
}

.hslide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgb(26 18 4 / 93%) 0%, rgb(26 18 4 / 84%) 55%, rgba(201, 162, 39, .22) 100%)
}

.hslide-inner {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 1rem
}

.min-vh-slide {
    min-height: 88vh
}

.hslide-content {
    padding: 5rem 0 3rem
}

.hslide-content .hero-etag {
    animation: fadeInUp .7s ease both;
    animation-delay: .1s
}

.hslide-content .hero-title {
    animation: fadeInUp .7s ease both;
    animation-delay: .25s
}

.hslide-content .hero-sub {
    animation: fadeInUp .7s ease both;
    animation-delay: .4s
}

.hslide-content .d-flex {
    animation: fadeInUp .7s ease both;
    animation-delay: .55s
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 1.06;
    margin-bottom: 1.3rem;
    color: #fff
}

.hero-title span {
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: .95rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 2rem
}

.hero-etag {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .38rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .22);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1.2rem
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 30px;
    padding: .38rem .95rem .38rem .42rem;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    margin: .3rem .3rem 0 0
}

.hero-pill .dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    color: #fff
}

/* Slider arrows */
.hslide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all .3s
}

.hslide-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.08)
}

.hslide-prev {
    left: 1.5rem
}

.hslide-next {
    right: 1.5rem
}

/* Dots */
.hslide-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .55rem;
    z-index: 20
}

.hsd {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: all .35s;
    padding: 0
}

.hsd.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px
}

/* Progress bar */
.hslide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, .12);
    z-index: 20
}

.hslide-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold));
    width: 0%;
    transition: none
}

/* Stat bar below slider */
.stat-bar {
    background: #fff;
    border-radius: 16px;
    padding: 1.3rem 1.8rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    border: 1px solid var(--bs-highlight-bg);
}

.st {
    text-align: center;
    padding: .75rem .8rem;
    border-right: 1px solid var(--border)
}

.st:last-child {
    border-right: none
}

.st-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.st-lbl {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .2rem
}

.h-dots,
.h-circle1,
.h-circle2 {
    display: none
}


/* SERVICES */
#services {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--off2) 100%)
}

.svc {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 1.3rem;
    text-align: center;
    transition: all .35s;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.svc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-soft));
    opacity: 0;
    transition: opacity .35s;
    border-radius: 16px
}

.svc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-pale));
    opacity: 0;
    transition: opacity .35s;
    border-radius: 16px
}

.svc:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(201, 162, 39, .14)
}

.svc:hover::before {
    opacity: 1
}

.svc * {
    position: relative;
    z-index: 1
}

.svc-ic {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.45rem;
    color: var(--gold);
    transition: all .35s;
    border: 1.5px solid var(--gold-soft)
}

.svc:hover .svc-ic {
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 6px 18px rgba(201, 162, 39, .35)
}

.svc-ttl {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    margin-bottom: .42rem;
    color: var(--gold);
    line-height: 1.2;
}

.svc-dsc {
    font-size: 0.9rem;
    color: var(--gold-dk);
    line-height: 1.2
}

@media (min-width: 992px) {
    #services .services-grid>[class*="col-"] {
        flex: 0 0 20%;
        max-width: 20%
    }
}

/* ABOUT */
#about {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--off) 0%, var(--gold-pale) 100%)
}

.abt-img-wrap {
    position: relative;
    padding-bottom: 2.5rem
}

.abt-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--gold-pale), var(--gold-soft));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    position: relative
}

.abt-img-placeholder::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(201, 162, 39, .08);
    top: -40px;
    right: -40px
}

.abt-img-placeholder i {
    font-size: 5.5rem;
    color: rgba(201, 162, 39, .35);
    position: relative;
    z-index: 1
}

.abt-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    border-radius: 20px
}

.abt-badge {
    position: absolute;
    bottom: 0;
    right: -16px;
    background: #fff;
    border-radius: 14px;
    padding: 1.1rem 1.4rem;
    box-shadow: var(--shadow-lg);
    min-width: 150px
}

.abt-yr {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.abt-yr-lbl {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted)
}

.divline {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold));
    border-radius: 2px;
    margin: 1rem 0 1.4rem
}

.cnt-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.8rem 0
}

.cnt-item {
    text-align: center
}

.cnt-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.cnt-lbl {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .18rem
}

/* PROCEDURES */
#procedures {
    padding: 6rem 0;
    background: #fff;
    overflow: hidden;
    position: relative
}

#procedures::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, .04), transparent 70%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none
}

.proc-ring-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    margin: 25px auto
}

.proc-center-icon {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-pale));
    border: 2px dashed var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8.2rem;
    color: var(--gold)
}

.proc-r1 {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-soft);
    animation: sp 30s linear infinite
}

.proc-r2 {
    position: absolute;
    inset: -36px;
    border-radius: 50%;
    border: 1px dashed rgba(201, 162, 39, .18);
    animation: sp 50s linear infinite reverse
}

@keyframes sp {
    to {
        transform: rotate(360deg)
    }
}

.proc-item {
    text-align: center;
    padding: 1.1rem .75rem;
    border-radius: 12px;
    transition: all .3s;
    cursor: pointer
}

.proc-item:hover {
    background: var(--gold-pale)
}

.proc-ic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .7rem;
    font-size: 1.5rem;
    color: var(--gold);
    transition: all .3s;
    border: 1.5px solid var(--gold-soft)
}

.proc-item:hover .proc-ic {
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #fff;
    box-shadow: 0 4px 14px rgba(201, 162, 39, .3)
}

.proc-ttl {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    margin-bottom: .28rem
}

.proc-sub {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6
}

/* TREATMENTS */
#treatments {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--off) 0%, var(--gold-pale) 100%)
}

.t-tab {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 30px;
    padding: .47rem 1.15rem;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--muted);
    cursor: pointer;
    transition: all .3s;
    white-space: nowrap;
    line-height: 1.5
}

.t-tab.active,
.t-tab:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 4px 12px rgba(201, 162, 39, .25)
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: .8rem;
    margin-top: 1.8rem
}

.t-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: .95rem;
    transition: all .3s;
    cursor: pointer;

}

.t-item:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(201, 162, 39, .13);
    transform: translateY(-2px)
}

.t-num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--gold-soft);
    line-height: 1;
    min-width: 2rem;
    transition: color .3s;
    margin-top: 8px;
}

.t-item:hover .t-num {
    color: var(--gold)
}

.t-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text)
}

.t-sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: .12rem
}

.t-arr {
    margin-left: auto;
    color: var(--border);
    transition: all .3s;
    font-size: .75rem;
    margin-top: 8px;
}

.t-item:hover .t-arr {
    color: var(--gold);
    transform: translateX(3px)
}

.sub-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-pale));
    border: 1px solid var(--gold-soft);
    border-radius: 20px;
    padding: .27rem .8rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold-dk);
    margin: .18rem;
    transition: all .2s
}

.sub-chip:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

.sub-chip i {
    font-size: .5rem
}

/* TEAM */
#team {
    padding: 6rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

#team::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(201, 162, 39, .10) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 10% 100%, rgba(201, 162, 39, .07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 90% 100%, rgba(201, 162, 39, .07) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

#team .container {
    position: relative;
    z-index: 1;
}

.tm-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all .4s;
    height: 100%
}

.tm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-soft)
}

.tm-photo {
    aspect-ratio: 1/1.15;
    background: linear-gradient(140deg, var(--gold-soft), var(--gold-pale));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.tm-photo i {
    font-size: 5.5rem;
    color: rgba(201, 162, 39, .33)
}

.tm-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    inset: 0
}

.tm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 4, .72) 0%, rgba(201, 162, 39, .28) 55%, transparent 100%);
    opacity: 0;
    transition: opacity .4s
}

.tm-card:hover .tm-overlay {
    opacity: 1
}

.tm-socials {
    position: absolute;
    bottom: .9rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .45rem;
    opacity: 0;
    transition: all .4s;
    white-space: nowrap
}

.tm-card:hover .tm-socials {
    opacity: 1
}

.tm-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dk);
    font-size: .72rem;
    text-decoration: none;
    transition: all .3s
}

.tm-socials a:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #fff
}

.tm-body {
    padding: 1.3rem
}

.tm-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    margin-bottom: .12rem
}

.tm-spec {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .55rem
}

.tm-bio {
    font-size: .77rem;
    color: var(--muted);
    line-height: 1.73
}

/* APPOINTMENT */
#appointment {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 45%, var(--gold-dk) 100%);
    position: relative;
    overflow: hidden
}

#appointment::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, .18), transparent 70%);
    right: -160px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none
}

#appointment::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, .08), transparent 70%);
    left: -80px;
    bottom: -80px;
    pointer-events: none
}

.appt-bdg {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 162, 39, .2);
    border: 1px solid rgba(232, 201, 109, .3);
    border-radius: 20px;
    padding: .32rem .9rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: .9rem
}

.appt-ttl {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 2.9rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: .7rem
}

.appt-sub {
    font-size: .87rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.85;
    margin-bottom: 2rem
}

.appt-form {
    background: #fff;
    border-radius: 20px;
    padding: 2.3rem;
    box-shadow: var(--shadow-lg)
}

.appt-form .form-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .32rem
}

.appt-form .form-control,
.appt-form .form-select {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: .84rem;
    padding: .72rem 1rem;
    color: var(--text);
    transition: border-color .25s;
    background: #fff
}

.appt-form .form-control:focus,
.appt-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .2rem rgba(201, 162, 39, .1)
}

.ai-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.35rem
}

.ai-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 162, 39, .35);
    background: rgba(201, 162, 39, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-lt);
    font-size: .95rem;
    flex-shrink: 0
}

.ai-lbl {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: .08rem
}

.ai-val {
    font-size: .86rem;
    color: #fff;
    line-height: 1.5
}

/* EQUIPMENT */
#equipment {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--gold-pale) 0%, var(--off) 100%)
}

.eq-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all .35s;
    height: 100%
}

.eq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-lt)
}

.eq-img {
    height: 155px;
    background: linear-gradient(140deg, var(--gold-soft), var(--gold-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold);
    border-bottom: 1.5px solid var(--border)
}

.eq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.eq-body {
    padding: 1.35rem
}

.eq-tag {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .35rem
}

.eq-ttl {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    margin-bottom: .45rem
}

.eq-txt {
    font-size: .77rem;
    color: var(--muted);
    line-height: 1.73
}

.steril-box {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    height: 100%
}

.steril-row {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .7rem 0;
    border-bottom: 1px solid var(--border)
}

.steril-row:last-child {
    border-bottom: none
}

.steril-ic {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .75rem;
    flex-shrink: 0;
    margin-top: .1rem
}

.steril-ttl {
    font-size: .78rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .18rem
}

.steril-dsc {
    font-size: .73rem;
    color: var(--muted);
    line-height: 1.63
}

.pol-strip {
    background: linear-gradient(135deg, var(--gold-pale), var(--dark) 300%);
    border-radius: 14px;
    padding: 1.6rem;
    border: 1.5px solid var(--gold-soft);
    position: relative;
    overflow: hidden
}

.pol-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--gold))
}

.pol-ttl {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin-bottom: .35rem
}

.pol-txt {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.83
}

.s-chip {
    background: linear-gradient(135deg, var(--gold-pale), #fff);
    border: 1px solid var(--gold-soft);
    border-radius: 12px;
    padding: 1.1rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(201, 162, 39, .08);
    transition: all .3s
}

.s-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, .15);
    border-color: var(--gold)
}

.s-chip-n {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.s-chip-l {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .18rem
}

/* TESTIMONIALS */
#testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--gold-pale) 100%)
}

.testi {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all .35s;
    position: relative;
    overflow: hidden
}

.testi::before {
    content: '\201C';
    position: absolute;
    top: -.5rem;
    right: 1.3rem;
    font-family: 'DM Serif Display', serif;
    font-size: 7rem;
    color: var(--gold-soft);
    line-height: 1;
    pointer-events: none
}

.testi:hover {
    border-color: var(--gold-soft);
    box-shadow: 0 8px 32px rgba(201, 162, 39, .1);
    transform: translateY(-4px)
}

.testi-stars {
    color: var(--gold);
    font-size: .83rem;
    margin-bottom: .85rem;
    letter-spacing: .08em
}

.testi-txt {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.88;
    margin-bottom: 1.3rem;
    font-style: italic;
    position: relative;
    z-index: 1
}

.testi-auth {
    display: flex;
    align-items: center;
    gap: .85rem
}

.testi-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    color: #fff;
    flex-shrink: 0
}

.testi-name {
    font-size: .79rem;
    font-weight: 700;
    color: var(--text)
}

.testi-role {
    font-size: .69rem;
    color: var(--muted)
}

/* BLOG */
#blog {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--off) 0%, var(--off2) 100%)
}

.bl-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all .35s;
    height: 100%
}

.bl-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-lt)
}

.bl-img {
    height: 200px;
    background: linear-gradient(140deg, var(--gold-soft), var(--gold-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 3.3rem;
    color: rgba(201, 162, 39, .45);
    overflow: hidden
}

.bl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.bl-card:hover .bl-img img {
    transform: scale(1.07)
}

.bl-cat {
    position: absolute;
    top: .9rem;
    left: .9rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .27rem .75rem;
    border-radius: 20px
}

.bl-body {
    padding: 1.5rem
}

.bl-meta {
    font-size: .67rem;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: .55rem;
    display: flex;
    align-items: center;
    gap: .35rem
}

.bl-ttl {
    font-family: 'DM Serif Display', serif;
    font-size: 1.12rem;
    color: var(--text);
    line-height: 1.38;
    text-decoration: none;
    display: block;
    margin-bottom: .65rem;
    transition: color .25s
}

.bl-ttl:hover {
    color: var(--gold)
}

.bl-exc {
    font-size: .77rem;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: .9rem
}

.bl-lnk {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .38rem;
    transition: gap .25s
}

.bl-lnk:hover {
    gap: .65rem;
    color: var(--gold-dk)
}

/* CONTACT */
#contact {
    padding: 6rem 0;
    background: #fff
}

.ct-card {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin-bottom: .9rem;
    transition: all .3s
}

.ct-card:hover {
    border-color: var(--gold-soft);
    box-shadow: 0 4px 20px rgba(201, 162, 39, .1)
}

.ct-ic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .95rem;
    flex-shrink: 0;
    transition: all .3s
}

.ct-card:hover .ct-ic {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 14px rgba(201, 162, 39, .3)
}

.ct-lbl {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .18rem
}

.ct-val {
    font-size: .87rem;
    color: var(--text);
    line-height: 1.68
}

.map-box {
    background: linear-gradient(140deg, var(--gold-soft), var(--gold-pale));
    border-radius: 16px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .9rem;
    border: 1.5px solid var(--gold-soft)
}

.map-box i {
    font-size: 2.8rem;
    color: rgba(201, 162, 39, .45)
}

.map-box span {
    font-size: .77rem;
    font-weight: 600;
    color: var(--gold-dk);
    letter-spacing: .07em
}

/* BEFORE & AFTER */
#before-after {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--off2) 0%, #fff 100%)
}

/* Tabs */
.ba-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center
}

.ba-tab {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: .52rem 1.4rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--muted);
    cursor: pointer;
    transition: all .25s
}

.ba-tab:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.ba-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(201, 162, 39, .35)
}

/* Card */
.ba-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: #fff;
    transition: transform .25s, box-shadow .25s
}

.ba-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.ba-label-top {
    background: linear-gradient(90deg, var(--dark), var(--dark-mid));
    color: rgba(255, 255, 255, .9);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .6rem 1.1rem
}

/* img-comparison-slider component */
.ba-slider {
    width: 100%;
    height: 240px;
    display: block;
    --divider-width: 2px;
    --divider-color: var(--gold);
    --default-handle-opacity: 1;
    --default-handle-color: var(--gold);
    --default-handle-width: 42px
}

.ba-slider img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block
}

.ba-handle {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    box-shadow: 0 4px 16px rgba(201, 162, 39, .45);
    cursor: ew-resize;
    user-select: none
}

/* Card footer */
.ba-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1.1rem;
    border-top: 1px solid var(--border)
}

.ba-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold-dk);
    background: var(--gold-pale);
    border: 1px solid var(--gold-soft);
    border-radius: 50px;
    padding: .22rem .75rem
}

.ba-badge i {
    font-size: .55rem
}

.ba-badge-aes {
    color: #7B3FA0;
    background: #F5EEFF;
    border-color: #E5D0FF
}

.ba-badge-ortho {
    color: #0369A1;
    background: #EFF6FF;
    border-color: #BFDBFE
}

.ba-badge-perio {
    color: #166534;
    background: #F0FDF4;
    border-color: #BBF7D0
}

.ba-duration {
    font-size: .72rem;
    color: var(--muted);
    font-weight: 500
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #0C0903 100%);
    padding: 4.5rem 0 2rem;
    border-top: 3px solid var(--gold)
}

.f-logo {
    height: 40px;
    margin-bottom: .9rem
}

.f-tag {
    font-size: .8rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.88;
    max-width: 265px;
    margin-bottom: 1.4rem
}

.f-soc a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .45);
    font-size: .76rem;
    text-decoration: none;
    margin-right: .4rem;
    transition: all .3s
}

.f-soc a:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    border-color: var(--gold);
    color: #fff
}

.f-hd {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 1.2rem;
    padding-bottom: .45rem;
    border-bottom: 1px solid rgba(201, 162, 39, .2)
}

.f-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.f-links li {
    margin-bottom: .52rem
}

.f-links a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .42);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .45rem;
    transition: color .25s
}

.f-links a i {
    font-size: .48rem;
    color: var(--gold-lt)
}

.f-links a:hover {
    color: var(--gold-lt)
}

.f-hr-row {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    margin-bottom: .42rem
}

.f-hr-day {
    font-weight: 600;
    color: rgba(255, 255, 255, .62)
}

.f-bot {
    margin-top: 3rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: .7rem;
    font-size: .73rem;
    color: rgba(255, 255, 255, .28)
}

.f-bot a {
    color: rgba(255, 255, 255, .28);
    text-decoration: none;
    transition: color .25s
}

.f-bot a:hover {
    color: var(--gold-lt)
}

/* FOOTER — ACCREDITATIONS */
.f-accred-row {
    margin-top: 2.5rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.f-accred-lbl {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 1rem
}

.f-accred-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem
}

.f-accred-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .9rem;
    border: 1px solid rgba(201, 162, 39, .3);
    border-radius: 6px;
    background: rgba(201, 162, 39, .06);
    font-size: .73rem;
    color: rgba(255, 255, 255, .55);
    transition: border-color .25s, background .25s
}

.f-accred-badge i {
    color: var(--gold-lt)
}

.f-accred-badge:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, .12);
    color: rgba(255, 255, 255, .8)
}

.f-accred-badge--dbd .f-accred-dbd-txt {
    font-weight: 800;
    font-size: .78rem;
    color: var(--gold);
    letter-spacing: .08em
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 8, 3, .97);
    border-top: 2px solid var(--gold);
    padding: 1rem 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, .45);
    transform: translateY(100%);
    transition: transform .45s cubic-bezier(.22, 1, .36, 1)
}

.cookie-banner.show {
    transform: translateY(0)
}

.cookie-inner {

    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .9rem
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    flex: 1;
    min-width: 240px
}

.cookie-text i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: .15rem;
    flex-shrink: 0
}

.cookie-text span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65
}

.cookie-text a {
    color: var(--gold-lt);
    text-decoration: underline
}

.cookie-actions {
    display: flex;
    gap: .6rem;
    flex-shrink: 0
}

.cookie-btn-outline {
    padding: .5rem 1.1rem;
    border: 1px solid rgba(201, 162, 39, .4);
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, .55);
    font-size: .76rem;
    cursor: pointer;
    transition: all .25s
}

.cookie-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-lt)
}

.cookie-btn-gold {
    padding: .5rem 1.3rem;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #fff;
    font-size: .76rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .25s
}

.cookie-btn-gold:hover {
    opacity: .88
}

/* ═══ SWIPER OVERRIDES — HERO ═══ */
/* Suppress Swiper's default arrow icons; use our custom Font Awesome ones */
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    display: none
}

/* Ensure hero dots container sits correctly */
.hero-swiper .hslide-dots {
    z-index: 20
}

/* ═══ SWIPER OVERRIDES — TESTIMONIALS ═══ */
#testimonials .testi-swiper-wrap {
    position: relative;
    padding: 0 3rem 3.5rem
}

#testimonials .testi-swiper {
    overflow: hidden
}

/* Navigation arrows */
#testimonials .ts-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 1.75rem));
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--text);
    font-size: .82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all .25s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08)
}

#testimonials .ts-arrow:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 6px 18px rgba(201, 162, 39, .3)
}

#testimonials .ts-prev {
    left: 0
}

#testimonials .ts-next {
    right: 0
}

/* Pagination dots */
#testimonials .testi-swiper {
    padding-bottom: 3rem
}

#testimonials .ts-dots {
    bottom: .75rem
}

#testimonials .ts-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201, 162, 39, .28);
    opacity: 1;
    transition: all .3s;
    margin: 5px
}

#testimonials .ts-dots .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 22px;
    border-radius: 4px
}

/* Equal-height slides so cards stretch to full row height */
#testimonials .testi-swiper .swiper-slide {
    height: auto;
    padding: .25rem .5rem
}

#testimonials .testi-swiper .swiper-slide .testi {
    height: 100%
}

/* BACK TO TOP */
#btt {
    position: fixed;
    bottom: 1.7rem;
    right: 1.7rem;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    transform: translateY(12px);
    transition: all .35s;
    box-shadow: 0 6px 20px rgba(201, 162, 39, .4)
}

#btt.show {
    opacity: 1;
    transform: translateY(0)
}

#btt:hover {
    background: linear-gradient(135deg, var(--gold-dk), var(--dark-soft));
    color: #fff
}

/* REVEAL — handled by ScrollReveal library (see index.js) */

@media(max-width:991px) {
    .h-img-wrap {
        margin-top: 3rem
    }

    .stat-bar {
        grid-template-columns: repeat(2, 1fr)
    }

    .st:nth-child(2) {
        border-right: none
    }

    .st:nth-child(n+3) {
        border-top: 1px solid var(--border)
    }

    /* About section responsive */
    #about .row {
        flex-direction: column
    }

    .abt-img-wrap {
        padding-right: 1.2rem;
        padding-bottom: 2rem;
        margin-bottom: .5rem
    }

    .abt-badge {
        right: 0 !important;
        bottom: .5rem
    }

    .abt-img-placeholder {
        aspect-ratio: 16/10
    }
}

@media(max-width:767px) {

    .h-badge1,
    .h-badge2 {
        display: none
    }

    /* About section small screen */
    .abt-img-placeholder {
        aspect-ratio: 4/3
    }

    .abt-badge {
        right: 0 !important;
        min-width: 130px
    }
}

/* ═══ FOUNDERS / ABOUT US SECTION ═══ */
#founders {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--gold-pale) 0%, #fff 100%);
    position: relative;
    overflow: hidden
}

#founders::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, .06), transparent 70%);
    right: -100px;
    top: -100px;
    pointer-events: none
}

/* Mission / Vision pillars */
.fnd-pillar {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 2rem 1.6rem;
    text-align: center;
    height: 100%;
    transition: all .35s;
    position: relative;
    overflow: hidden
}

.fnd-pillar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dk));
    transform: scaleX(0);
    transition: transform .35s;
    transform-origin: left
}

.fnd-pillar:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-soft)
}

.fnd-pillar:hover::after {
    transform: scaleX(1)
}

.fnd-pillar-ic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: var(--gold);
    border: 1.5px solid var(--gold-soft);
    transition: all .35s
}

.fnd-pillar:hover .fnd-pillar-ic {
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #fff;
    box-shadow: 0 6px 18px rgba(201, 162, 39, .3)
}

.fnd-pillar-ttl {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    margin-bottom: .55rem
}

.fnd-pillar-txt {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.85;
    margin: 0
}

/* Founder cards */
.fnd-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all .4s;
    box-shadow: 0 4px 20px rgba(201, 162, 39, .05)
}

.fnd-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-soft)
}

.fnd-photo-wrap {
    position: relative;
    flex-shrink: 0
}

.fnd-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(140deg, var(--gold-soft), var(--gold-pale))
}

.fnd-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .6s ease
}

.fnd-card:hover .fnd-photo img {
    transform: scale(1.05)
}

.fnd-badge-founder {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .28rem .85rem;
    border-radius: 20px
}

.fnd-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1
}

.fnd-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.55rem;
    color: var(--text);
    margin-bottom: .18rem
}

.fnd-desig {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem
}

.fnd-bio {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.9;
    margin: .8rem 0 1.1rem
}

.fnd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: .4rem
}

.fnd-tags span {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    background: var(--gold-pale);
    border: 1px solid var(--gold-soft);
    border-radius: 20px;
    padding: .28rem .82rem;
    font-size: .68rem;
    font-weight: 600;
    color: var(--gold-dk)
}

.fnd-tags span i {
    font-size: .62rem;
    color: var(--gold)
}

/* Responsive */
@media (max-width: 991px) {
    .fnd-photo {
        height: 220px
    }
}

@media (max-width: 767px) {
    .fnd-card {
        border-radius: 16px
    }

    .fnd-photo {
        height: 220px
    }

    .fnd-name {
        font-size: 1.3rem
    }
}

/* ═══ GOOGLE-STYLE COLOURED REVIEW CARDS ═══
   Each slide gets a distinct accent colour — top border + subtle background
   tint + matching avatar gradient — cycling through 7 vibrant hues.          */

/* ── Slide 1 — Google Blue ── */
#testimonials .testi-swiper .swiper-slide:nth-child(7n+1) .testi {
    border-top: 4px solid #4285F4;
    background: linear-gradient(160deg, #eef4ff 0%, #fff 55%)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+1) .testi-av {
    background: linear-gradient(135deg, #4285F4, #1a6ed8)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+1) .testi::before {
    color: rgba(66, 133, 244, .14)
}

/* ── Slide 2 — Google Red ── */
#testimonials .testi-swiper .swiper-slide:nth-child(7n+2) .testi {
    border-top: 4px solid #EA4335;
    background: linear-gradient(160deg, #fff0ef 0%, #fff 55%)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+2) .testi-av {
    background: linear-gradient(135deg, #EA4335, #b71c1c)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+2) .testi::before {
    color: rgba(234, 67, 53, .14)
}

/* ── Slide 3 — Google Green ── */
#testimonials .testi-swiper .swiper-slide:nth-child(7n+3) .testi {
    border-top: 4px solid #34A853;
    background: linear-gradient(160deg, #edfaf2 0%, #fff 55%)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+3) .testi-av {
    background: linear-gradient(135deg, #34A853, #1b5e20)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+3) .testi::before {
    color: rgba(52, 168, 83, .14)
}

/* ── Slide 4 — Amber / Google Yellow ── */
#testimonials .testi-swiper .swiper-slide:nth-child(7n+4) .testi {
    border-top: 4px solid #FBBC05;
    background: linear-gradient(160deg, #fffbea 0%, #fff 55%)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+4) .testi-av {
    background: linear-gradient(135deg, #FBBC05, #e65100);
    color: #fff
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+4) .testi::before {
    color: rgba(251, 188, 5, .18)
}

/* ── Slide 5 — Purple ── */
#testimonials .testi-swiper .swiper-slide:nth-child(7n+5) .testi {
    border-top: 4px solid #9C27B0;
    background: linear-gradient(160deg, #f9eeff 0%, #fff 55%)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+5) .testi-av {
    background: linear-gradient(135deg, #9C27B0, #4a0072)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+5) .testi::before {
    color: rgba(156, 39, 176, .13)
}

/* ── Slide 6 — Teal ── */
#testimonials .testi-swiper .swiper-slide:nth-child(7n+6) .testi {
    border-top: 4px solid #00ACC1;
    background: linear-gradient(160deg, #e8fbfd 0%, #fff 55%)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+6) .testi-av {
    background: linear-gradient(135deg, #00ACC1, #006064)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+6) .testi::before {
    color: rgba(0, 172, 193, .14)
}

/* ── Slide 7 — Deep Orange ── */
#testimonials .testi-swiper .swiper-slide:nth-child(7n+7) .testi {
    border-top: 4px solid #FF5722;
    background: linear-gradient(160deg, #fff3ef 0%, #fff 55%)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+7) .testi-av {
    background: linear-gradient(135deg, #FF5722, #bf360c)
}
#testimonials .testi-swiper .swiper-slide:nth-child(7n+7) .testi::before {
    color: rgba(255, 87, 34, .14)
}