/* ============== ROOT ============== */
:root {
    --gold: #03d6bd;
    --gold-soft: #0aa896;
    --gold-deep: #036e62;
    --gold-light: #e8faf8;
    --bg: #FFFFFF;
    --bg-alt: #FAF8F4;
    --bg-cream: #F8F5F0;
    --text: #0d1c3b;
    --text-soft: #4B5563;
    --muted: #6B7280;
    --line: #E5E0D5;
    --line-soft: #F0EBDF;
    --shadow-sm: 0 2px 8px rgba(31, 41, 55, 0.04);
    --shadow-md: 0 8px 24px rgba(31, 41, 55, 0.06);
    --shadow-lg: 0 20px 50px rgba(31, 41, 55, 0.08);
    --shadow-gold: 0 20px 50px rgba(3, 214, 189, 0.18);
    --radius: 18px;
}

a {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(900px 600px at 85% -10%, rgba(3, 214, 189, 0.06), transparent 60%),
        radial-gradient(700px 500px at -10% 30%, rgba(3, 214, 189, 0.04), transparent 60%);
    z-index: -2;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
}

/* ============== TOP BAR ============== */
.top-bar {
    background: linear-gradient(135deg, #0d1c3b, #0d1c3b);
    border-bottom: 1px solid rgba(3, 214, 189, 0.3);
    font-size: 13px;
    z-index: 50;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    transition: color .3s;
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar a i {
    color: var(--gold);
    font-size: 14px;
}

.top-bar-right {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right i {
    color: var(--gold);
    font-size: 14px;
}

/* ============== NAVBAR ============== */
.navbar {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--line-soft);
    transition: all .4s;
    padding: 14px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 4px 20px rgba(31, 41, 55, 0.06);
}

.logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(3, 214, 189, 0.35);
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(3, 214, 189, 0.3);
}

.logo-text {
    font-size: 17px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text);
}

.logo-text small {
    display: block;
    color: var(--gold-deep);
    letter-spacing: .16em;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-nav .nav-link {
    font-size: 14px;
    color: #0d1c3b !important;
    font-weight: 500;
    padding: 6px 14px !important;
    position: relative;
    transition: color .3s;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 14px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .35s;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-deep) !important;
}

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 28px);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff !important;
    padding: 11px 22px !important;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .04em;
    box-shadow: 0 8px 22px rgba(3, 214, 189, 0.35);
    transition: transform .3s, box-shadow .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(3, 214, 189, 0.5);
}

/* ============== HERO ============== */
.hero-section {
    position: relative;
    padding: 80px 0 110px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #FAF8F4 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    animation: float 14s ease-in-out infinite;
}

.orb-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(3, 214, 189, 0.3), transparent 70%);
    top: -100px;
    right: -80px;
}

.orb-2 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(3, 214, 189, 0.18), transparent 70%);
    bottom: -100px;
    left: -50px;
    animation-delay: -5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(3, 214, 189, 0.25), transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -9s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 30px) scale(.95);
    }
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-soft);
    opacity: 0;
    animation: rise 8s linear infinite;
}

@keyframes rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: .6;
    }

    90% {
        opacity: .4;
    }

    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    color: var(--gold-deep);
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 11px;
}

.hero-title {
    font-size: clamp(30px, 4.2vw, 45px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 26px;
}

.hero-title .gold-text {
    background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-lead {
    color: #1e2023;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
}

.stat-num {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 500;
}

.hero-stats {
    border-top: 1px solid var(--line);
    padding-top: 28px;
}

/* Booking Card */
.booking-card {
    position: relative;
    padding: 40px 36px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(31, 41, 55, .08), 0 0 60px rgba(3, 214, 189, .06);
    overflow: hidden;
}

.booking-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-deep));
}

.corner {
    position: absolute;
    width: 50px;
    height: 50px;
    pointer-events: none;
}

.corner.tl {
    top: 14px;
    left: 14px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.corner.br {
    bottom: 14px;
    right: 14px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}

.pill {
    color: var(--gold-deep);
    background: var(--gold-light);
    border: 1px solid rgba(3, 214, 189, .3);
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
}

.form-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 600;
}

.form-control,
.form-select {
    padding: 14px 16px;
    background: #FAF8F4 !important;
    border: 1px solid var(--line-soft) !important;
    border-radius: 12px !important;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    font-weight: 400;
    transition: all .25s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(3, 214, 189, .12) !important;
}

textarea.form-control {
    min-height: 110px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    border-radius: 12px;
    border: none;
    box-shadow: 0 12px 28px rgba(3, 214, 189, .35);
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(3, 214, 189, .5);
}

.form-foot {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ============== TRUST BAR ============== */
.trust-bar {
    background: #0d1c3b;
    border-top: 1px solid #03c7b0;
    border-bottom: 1px solid #03c7b0;
    padding: 20px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 13px;
    letter-spacing: .06em;
    font-weight: 500;
}

.trust-item i {
    color: var(--gold);
    font-size: 20px;
}

/* ============== SECTION SHARED ============== */
.section-pad {
    padding: 90px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .32em;
    color: var(--gold-deep);
    font-weight: 600;
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow.center::before {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    width: 60px;
}

.eyebrow.center::after {
    content: "";
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-size: clamp(30px, 4vw, 42px);
    letter-spacing: -.025em;
    font-weight: 700;
}

.section-title em {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}

.section-subtitle {
    color: #2d2d2e;
    font-size: 15px;
    line-height: 1.7;
}

/* ============== SECTION IMAGE BANNER ============== */
.section-img-banner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 56px;
    height: 320px;
}

.section-img-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-img-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 28, 59, .7), rgba(3, 110, 98, .55));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.section-img-banner .banner-overlay h3 {
    color: #fff;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-img-banner .banner-overlay p {
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    max-width: 580px;
}

/* ============== WHY CHOOSE US ============== */
.why-card {
    position: relative;
    padding: 34px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    height: 100%;
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.why-card .num {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: .18em;
    font-weight: 700;
    opacity: .6;
}

.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold-light), #fff);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--gold-deep);
    font-size: 24px;
    transition: all .4s;
    margin-bottom: 20px;
}

.why-card:hover .icon-wrap {
    transform: rotate(-6deg) scale(1.05);
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff;
    box-shadow: 0 10px 25px rgba(3, 214, 189, .4);
    border-color: transparent;
}

/* ============== SERVICES BENTO ============== */
.services-section {
    background: var(--bg-alt);
}

.b-card {
    position: relative;
    border-radius: 22px;
    padding: 28px 28px 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    transition: all .45s cubic-bezier(.2, .8, .2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    height: 100%;
    min-height: 180px;
}

.b-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.b-icon {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-light), #fff);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--gold-deep);
    font-size: 20px;
    transition: all .4s;
}

.b-card:hover .b-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff;
    transform: rotate(-8deg);
    border-color: transparent;
}

.b-arrow {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--gold-deep);
    font-size: 14px;
    transition: all .4s;
    transform: rotate(-45deg);
    background: #fff;
}

.b-card:hover .b-arrow {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: rotate(0deg);
}

.b-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.b-card p {
    font-size: 15px;
    color: #202020;
    line-height: 1.55;
}

.featured-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(3, 214, 189, .35);
    margin-bottom: 12px;
}

.b-card-hero {
    min-height: 280px !important;
    background: linear-gradient(135deg, var(--gold-light), #fff);
    border-color: rgba(3, 214, 189, .3) !important;
}

.b-card-hero h4 {
    font-size: 28px;
}

/* ============== ABOUT ============== */
.doctor-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--gold-light), var(--bg-cream));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(3, 214, 189, .1);
    aspect-ratio: 4/5;
}

.doctor-frame::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(3, 214, 189, .3);
    border-radius: 18px;
    pointer-events: none;
    z-index: 2;
}

.doctor-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(255, 255, 255, .4) 100%),
        url("./img/about-us.jpg") center/cover;
}

.float-badge {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.float-badge .b-num {
    font-size: 22px;
    color: var(--gold-deep);
    font-weight: 800;
    line-height: 1;
}

.float-badge .b-text {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    line-height: 1.3;
}

.badge-tl {
    top: 30px;
    left: 25px;
    animation: bobble 5s ease-in-out infinite;
}

.badge-br {
    bottom: 20px;
    right: 20px;
    animation: bobble 5s ease-in-out infinite -2.5s;
}

@keyframes bobble {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.signature {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 3;
    color: #0d1c3b;
    font-style: italic;
    font-size: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
    font-weight: 500;
}

.qual-card {
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .3s;
    box-shadow: var(--shadow-sm);
}

.qual-card:hover {
    border-color: var(--gold);
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.qual-card i {
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
}

.qual-card .q-title {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

.qual-card .q-sub {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .06em;
}

/* ============== TESTIMONIALS ============== */
.testimonials-section {
    background: var(--bg-alt);
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.review-badge .num-big {
    font-size: 20px;
    font-weight: 700;
}

.t-card {
    position: relative;
    padding: 36px 30px 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: all .4s;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.t-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(3, 214, 189, .35);
    flex-shrink: 0;
}

.t-name {
    font-size: 15px;
    font-weight: 600;
}

.t-role {
    font-size: 12px;
    color: var(--muted);
}

.t-text {
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
}

.stars-gold {
    color: #F5B400;
}

/* ============== CONTACT ============== */
.contact-section {
    background: #fff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: all .3s;
}

.info-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
    background: var(--gold-light);
}

.info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold-light), #fff);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--gold-deep);
    font-size: 20px;
    flex-shrink: 0;
}

.info-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 600;
}

.info-value {
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.contact-form-card {
    padding: 42px 38px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

/* ============== FLOATING BUTTONS ============== */
.floats {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    transition: all .3s;
    position: relative;
    text-decoration: none;
}

.float-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

.float-btn.wa {
    background: #25D366;
}

.float-btn.wa::before {
    background: #25D366;
}

.float-btn.call {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.float-btn.call::before {
    background: var(--gold);
}

.float-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .5;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* ============== MOBILE CTA ============== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    z-index: 80;
    gap: 10px;
    box-shadow: 0 -8px 24px rgba(31, 41, 55, .06);
}

.mobile-cta a {
    flex: 1;
    padding: 13px;
    border-radius: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.m-call {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff !important;
}

.m-book {
    background: var(--gold-light);
    color: var(--gold-deep) !important;
    border: 1px solid rgba(3, 214, 189, .4);
}

/* ============== FOOTER ============== */
.footer-section {
    background: linear-gradient(180deg, var(--bg-cream), #F0EBDF);
    border-top: 1px solid var(--line);
    padding: 80px 0 0;
}

.footer-section::before {
    /* top gold line */
}

.footer-col h5 {
    font-size: 16px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
    font-weight: 700;
}

.footer-col h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-about p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--gold-deep);
    font-size: 16px;
    transition: all .3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-link {
    color: var(--text-soft);
    font-size: 14px;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-link i {
    font-size: 11px;
    color: var(--gold);
}

.footer-link:hover {
    color: var(--gold-deep);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 24px 0;
    color: var(--muted);
    font-size: 13px;
}

/* ============== REVEAL ============== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============== BUTTONS ============== */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    box-shadow: 0 10px 28px rgba(3, 214, 189, .35);
    border: none;
    transition: all .35s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(3, 214, 189, .5);
    color: #fff;
}

.btn-outline-gold {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: all .35s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    background: var(--gold-light);
    color: var(--gold-deep);
}

/* ============== ABOUT SECTION IMAGE ============== */
.about-section-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 300px;
}

.about-section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============== SERVICES SECTION IMAGE ============== */
.service-hero-img {
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
}

.service-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:991px) {
    .badge-tl {
        left: 10px;
    }

    .badge-br {
        right: 10px;
    }

    .booking-card {
        padding: 30px 24px;
    }

    .contact-form-card {
        padding: 30px 24px;
    }

    .floats {
        bottom: 80px;
        right: 14px;
    }

    .mobile-cta {
        display: flex;
    }
}

@media (max-width:768px) {
    .section-pad {
        padding: 60px 0;
    }

    .hero-section {
        padding: 50px 0 70px;
    }

    .stat-num {
        font-size: 28px;
    }

    .section-img-banner {
        height: 220px;
    }
}

@media (max-width:576px) {
    .top-bar-right {
        display: none;
    }
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: #f8ffff;
    padding: 15px 0;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: scrollMarquee 18s linear infinite;
}

.trust-item {
    background: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #223645;
    font-size: 15px;
}

.trust-item i {
    color: #1DB9AF;
    font-size: 18px;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}