:root {
    /*
    --navy: #002d5b;
    --navy-dark: #001e3e;
    */
    --navy: radial-gradient(circle, rgb(36, 83, 51) 0%, rgb(12, 38, 18) 100%, rgb(12, 38, 18) 100%);
    --navy-dark: #001e3e;
    --gold: #c5a059;
    --gold-lt: #d4b475;
    --gold-pale: #fcf9f4;
    --white: #ffffff;
    --gray-bg: #f8f9fa;
    --text-muted: #6c757d;
}

* {
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.text-navy {
    color: var(--navy) !important;
}
.text-gold {
    color: var(--gold) !important;
}
.bg-navy {
    background-color: var(--navy) !important;
}
.bg-gold {
    background-color: var(--gold) !important;
}
.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-gold:hover {
    background-color: #a38245;
    color: #fff;
    transform: translateY(-1px);
}

/* â”€â”€ SCROLL REVEAL â”€â”€ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.reveal.up {
    opacity: 1;
    transform: none;
}
.reveal.d1 {
    transition-delay: 0.1s;
}
.reveal.d2 {
    transition-delay: 0.2s;
}
.reveal.d3 {
    transition-delay: 0.3s;
}
.reveal.d4 {
    transition-delay: 0.4s;
}
.reveal.d5 {
    transition-delay: 0.5s;
}
.reveal.d6 {
    transition-delay: 0.6s;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
1. NAVBAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 20px rgba(0, 45, 91, 0.08);
    padding: 0;
}
.navbar .container {
    height: 100px;
}
.navbar-brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.5px;
    line-height: 1;
}
.brand-name span {
    color: var(--gold);
}
.brand-loc {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.brand-loc i {
    color: var(--gold);
    margin-right: 4px;
}

.btn-nav-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1.5px solid #d0d5dd;
    color: var(--navy);
    background: transparent;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.25s;
}
.btn-nav-call:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: #f0f4f8;
}
.btn-nav-call i {
    color: var(--gold);
}

.btn-nav-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    border: 2px solid var(--navy);
    border-radius: 8px;
    transition: 0.25s;
    cursor: pointer;
}
.btn-nav-book:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}
.btn-nav-book i {
    font-size: 0.7rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
2. HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-section {
    background:
        linear-gradient(100deg, #f8f9fa 52%, transparent 52%),
        url("../img/banner.webp")
            no-repeat center right / cover;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
/* left-side subtle vertical gold accent */
.hero-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}
.hero-eyebrow .bar {
    width: 32px;
    height: 2px;
    background: var(--gold);
}
.hero-eyebrow span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-section h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 18px;
}
.hero-section h1 span {
    color: var(--gold);
}
.hero-section .lead {
    font-size: 0.96rem;
    color: #555;
    margin-bottom: 32px;
}

.hero-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}
.hero-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.hero-check-list li:last-child {
    border: none;
}
.hero-check-list .chk {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--gold-pale);
    border: 1.5px solid rgba(197, 160, 89, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.55rem;
    font-weight: 700;
}

.hero-btn-wrap {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    border: 2px solid var(--navy);
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}
.btn-hero-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
}
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 700;
    background: transparent;
    color: var(--navy);
    text-decoration: none;
    border: 2px solid var(--navy);
    border-radius: 8px;
    transition: 0.3s;
}
.btn-hero-outline:hover {
    background: var(--navy);
    color: #fff;
}

/* floating credential cards */
.hero-cred-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    bottom: 48px;
    right: 48px;
    z-index: 2;
}
.cred-card {
    background: var(--navy);
    backdrop-filter: blur(8px);
    border-left: 3px solid var(--gold);
    padding: 14px 22px;
    min-width: 190px;
}
.cred-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.cred-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
3. ABOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#about-doctor {
    background: #fff;
}

.about-img-wrap {
    position: relative;
}
.about-img-wrap .gold-border-accent {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: 0;
    pointer-events: none;
}
.about-img-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: cover;
    display: block;
}
.about-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 28px 24px 22px;
    background: linear-gradient(to top, rgba(0, 29, 62, 0.9) 60%, transparent);
}
.about-img-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}
.about-img-role {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-top: 3px;
}

.section-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.qual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.qual-card {
    background: var(--gold-pale);
    border-left: 3px solid var(--gold);
    padding: 16px 18px;
}
.qual-card li {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
}
.qual-card li:last-child {
    margin: 0;
}

.about-body-text {
    font-size: 0.88rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}
.about-quote {
    border-left: 3px solid var(--gold);
    padding: 12px 20px;
    background: var(--gold-pale);
    margin: 20px 0 28px;
    font-size: 0.85rem;
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
4. SERVICES 
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#services {
    background: var(--gray-bg);
}

.section-divider {
    width: 72px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-lt));
    margin: 16px auto 0;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 45, 91, 0.12);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.svc-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s ease;
    position: relative;
}

/* Icon Images */

.svc-icon-wrap img {
    width: 28px;
    height: auto;
    position: absolute;
    transition: opacity 0.3s ease;
}

/* Gold version visible by default */
.svc-icon-default {
    opacity: 1;
}

/* White version hidden by default */
.svc-icon-hover {
    opacity: 0;
}

/* Hover Effects */

.service-card:hover .svc-icon-wrap {
    background: var(--gold);
}

.service-card:hover .svc-icon-default {
    opacity: 0;
}

.service-card:hover .svc-icon-hover {
    opacity: 1;
}

.service-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.services-cta-box {
    background: var(--navy);
    border-radius: 16px;
    padding: 48px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.services-cta-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.82rem;
    font-weight: 700;
    background: #fff;
    color: var(--navy);
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 8px;
    transition: 0.3s;
    white-space: nowrap;
    cursor: pointer;
}

.btn-cta-white:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.btn-cta-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.82rem;
    font-weight: 700;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-cta-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
5. WHY CHOOSE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#why-choose {
    background: #fff;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.why-feature:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.why-icon-box {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: 0.3s;
}
.why-feature:hover .why-icon-box {
    background: var(--gold);
    color: #fff;
}
.why-feature-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}
.why-feature-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.why-clinic-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 45, 91, 0.18);
    position: relative;
}
.why-clinic-img img {
    width: 100%;
    display: block;
    height: 420px;
    object-fit: cover;
}
.why-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--navy);
    padding: 14px 20px;
    border-left: 3px solid var(--gold);
}
.why-img-badge .badge-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.why-img-badge .badge-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 3px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
6. SAFETY SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.safety-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.safety-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.safety-icon-card {
    text-align: center;
    padding: 36px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
    position: relative;
}
.safety-icon-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.35s;
}
.safety-icon-card:hover {
    background: rgba(255, 255, 255, 0.04);
}
.safety-icon-card:hover::after {
    width: 60%;
}
.safety-icon-ring {
    width: 76px;
    height: 76px;
    border: 1.5px solid rgba(197, 160, 89, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}
.safety-icon-card:hover .safety-icon-ring {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
}
.safety-icon-ring i {
    font-size: 1.7rem;
    color: var(--gold);
}
.safety-icon-card h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.safety-icon-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}
.safety-bottom-note {
    margin-top: 48px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
}
.safety-bottom-note i {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
7. GALLERY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#gallery {
    background: var(--gray-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #e0e4ea;
}
.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.gallery-card:hover img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 29, 62, 0.7) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 14px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transform: translateY(4px);
    transition: transform 0.3s;
}
.gallery-card:hover .gallery-caption {
    transform: translateY(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
8. FINAL CTA
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.final-cta {
    background: linear-gradient(135deg, var(--gold-pale) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.final-cta .bg-deco {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.15);
    pointer-events: none;
}
.final-cta .bg-deco-2 {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.1);
    pointer-events: none;
}
.final-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
}
.final-cta .lead {
    color: #666;
}
.btn-final-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    font-size: 0.88rem;
    font-weight: 700;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    border: 2px solid var(--navy);
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}
.btn-final-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
}
.btn-final-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    font-size: 0.88rem;
    font-weight: 700;
    background: transparent;
    color: var(--navy);
    text-decoration: none;
    border: 2px solid var(--navy);
    border-radius: 8px;
    transition: 0.3s;
}
.btn-final-outline:hover {
    background: var(--navy);
    color: #fff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
9. FAQ
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#faq {
    background: #fff;
}

.faq-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.07) !important;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.faq-accordion .accordion-button {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    padding: 18px 24px;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--gold-pale);
    color: var(--gold);
    box-shadow: none;
}
.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c5a059'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body {
    font-size: 0.84rem;
    color: #555;
    line-height: 1.85;
    padding: 6px 24px 20px;
}

.faq-side-card {
    background: var(--navy);
    padding: 44px 36px;
    border-radius: 16px;
    position: sticky;
    top: 90px;
}
.faq-side-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.faq-side-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}
.faq-side-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.faq-side-perk i {
    color: var(--gold);
    width: 18px;
}
.faq-side-perk span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}
.btn-faq-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    border: 2px solid var(--gold);
    border-radius: 8px;
    transition: 0.3s;
    margin-top: 28px;
    cursor: pointer;
}
.btn-faq-cta:hover {
    background: #a38245;
    border-color: #a38245;
    color: #fff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
10. FOOTER / CONTACT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
footer {
    background: var(--navy);
}

.footer-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}
.footer-perk {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.footer-perk-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1.5px solid rgba(197, 160, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
}
.footer-perk-text {
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}
.footer-contact-item i {
    color: var(--gold);
    width: 16px;
}

.form-card {
    background: #fff;
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}
.form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-lt));
}
.form-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
}
.form-label-custom {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 6px;
    display: block;
}
.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    font-family: "Poppins", sans-serif;
    font-size: 0.84rem;
    color: #333;
    outline: none;
    transition: 0.25s;
    border-radius: 6px;
}
.form-control-custom:focus {
    border-color: var(--gold);
    background: #fff;
}
.form-control-custom::placeholder {
    color: #b0bbc8;
}
textarea.form-control-custom {
    resize: vertical;
    min-height: 88px;
}
.captcha-row {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}
.captcha-input {
    width: 80px;
    padding: 6px 12px;
    text-align: center;
    border: 1.5px solid #d0d5dd;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    outline: none;
}
.captcha-input:focus {
    border-color: var(--gold);
}
.btn-submit-main {
    width: 100%;
    padding: 15px;
    background: var(--navy);
    color: #fff;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-submit-main:hover {
    background: var(--gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.12) !important;
}
.footer-copy {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.8);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
POPUP MODAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.modal-backdrop-custom {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-backdrop-custom.show {
    display: block;
    opacity: 1;
}

.modal-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
}
.modal-popup.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header-custom {
    position: relative;
    padding: 32px 40px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.modal-header-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-lt));
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gold-pale);
    color: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
}
.modal-close:hover {
    background: var(--gold);
    color: #fff;
}
.modal-header-custom h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}
.modal-body-custom {
    padding: 32px 40px;
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 991px) {
    .hero-section {
        background: #f8f9fa;
        min-height: auto;
        padding: 5px 0;
    }
    .hero-cred-cards {
        display: none;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar .container {
        height: auto;
        padding: 12px 0;
    }
    .navbar .d-flex.gap-2 {
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gallery-card img {
        height: 180px;
    }
    .form-card,
    .modal-body-custom,
    .modal-header-custom {
        padding: 24px;
    }
    .qual-grid {
        grid-template-columns: 1fr;
    }
    .final-cta .bg-deco,
    .final-cta .bg-deco-2 {
        display: none;
    }
    .why-clinic-img img {
        height: 320px;
    }
    .services-cta-box {
        padding: 32px 24px;
    }
    .services-cta-box h4 {
        font-size: 1.1rem;
    }
    .hero-section .lead {
        font-size: 0.88rem;
    }
    .modal-popup {
        width: 95%;
        max-width: 95%;
    }
}
@media (max-width: 575px) {
    .hero-btn-wrap {
        flex-direction: column;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        justify-content: center;
        width: 100%;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .brand-name {
        font-size: 1rem;
    }
    .brand-loc {
        font-size: 0.6rem;
    }
    .btn-nav-book {
        font-size: 0.7rem;
        padding: 9px 16px;
    }
    .btn-nav-call {
        padding: 8px 14px;
        font-size: 0.7rem;
    }
}

/* Logo Styling */
.logo {
    width: 150px;
    padding: 10px;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile */
@media (max-width: 576px) {
    .logo {
        width: 120px;
        padding: 5px;
		margin: 1rem auto;
    }
}