/* ─── RESET & BASE ──────────────────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
 
html,
body{
    margin:0;
    padding:0;
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

:root {
    --teal: #0ea5e9;
    --teal-dark: #0a5c5c;
    --navy: #0f2044;
    --navy-mid: #0a3d6b;
    --white: #fff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-600: #475569;
    --slate-800: #1e293b;
    --text: #1e293b;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.nav-logo img,
.dentist-card img,
.gallery-item img {
    border-radius: 0;
    /* Keep photo square/rectangular by default */
}

.container {
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    box-sizing:border-box;
}

.text-teal {
    color: #00c9b7;
}

.text-center {
    text-align: center;
}

/* ─── TOP BAR ───────────────────────────────────────────────────────────────── */
.topbar {
    background: var(--navy);
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .4rem 2rem;
    font-size: .8rem;
}

/* ─── NAVBAR ────────────────────────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 32, 68, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: all .3s;
}

.navbar.scrolled {
    background: rgba(15, 32, 68, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: .9rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.testi-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00c9b7, #0ea5e9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 1rem;
            flex-shrink: 0;
        }

.testi-avatar.alt1 {
            background: linear-gradient(135deg, #f59e0b, #ef4444);
        }

.testi-avatar.alt2 {
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
        }

.testi-avatar.alt3 {
            background: linear-gradient(135deg, #10b981, #0ea5e9);
        }

.testi-author-name {
            font-size: 0.92rem;
            font-weight: 700;
            color: #0f2044;
        }

.testi-author-loc {
            font-size: 0.76rem;
            color: #94a3b8;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: #fff;
    font-size: 1.1rem;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c9b7, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    margin: 0 auto;
}

.nav-links a {
    color: #cbd5e1;
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00c9b7;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00c9b7;
    border-radius: 2px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0a2a50;
    border-radius: var(--radius);
    padding: .5rem;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: .5rem 1rem;
    color: #cbd5e1;
    font-size: .85rem;
    border-radius: 8px;
}

.dropdown-menu a:hover {
    background: rgba(0, 201, 183, .1);
    color: #00c9b7;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: #fff;
    padding: .45rem 1.1rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    transition: all .2s;
}

.btn-outline:hover {
    border-color: #00c9b7;
    color: #00c9b7;
}

.btn-primary {
    background: linear-gradient(135deg, #00c9b7, #0ea5e9);
    color: #fff;
    padding: .45rem 1.2rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 201, 183, .4);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

@media(max-width:900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--navy);
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.hero-slides {
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity .8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    max-width: 640px;
    padding: 3rem 2rem 3rem 5vw;
    z-index: 2;
}

.hero-badges {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    padding: .3rem .8rem;
    border-radius: 50px;
    font-size: .75rem;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-tagline {
    color: #00c9b7;
}

.hero p {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary-lg {
    background: linear-gradient(135deg, #00c9b7, #0ea5e9);
    color: #fff;
    padding: .75rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: all .25s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 201, 183, .5);
}

.btn-outline-lg {
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    padding: .75rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: all .25s;
    display: inline-block;
}

.btn-outline-lg:hover {
    border-color: #00c9b7;
    color: #00c9b7;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
}

.trust-avatars {
    display: flex;
}

.trust-avatars img {
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    margin-left: -8px;
    border-radius: 50%;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.tooth-bg {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 500px;
    height: 80%;
    opacity: .06;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M100 10 C60 10 30 40 30 80 C30 110 40 130 50 150 C55 165 60 185 70 190 C75 192 80 188 85 175 L100 140 L115 175 C120 188 125 192 130 190 C140 185 145 165 150 150 C160 130 170 110 170 80 C170 40 140 10 100 10Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 5;
}

.dot {
    width: 36px;
    height: 5px;
    border-radius: 3px;
    border: none;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all .3s;
}

.dot.active {
    background: #00c9b7;
    width: 54px;
}

/* ─── STATS ──────────────────────────────────────────────────────────────────── */
.stats-section {
    padding: 4rem 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media(max-width:768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
}

.stat-label {
    color: var(--slate-600);
    font-size: .85rem;
    margin-top: .4rem;
    font-weight: 500;
}

.stat-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
}

/* ─── SERVICES ────────────────────────────────────────────────────────────────── */
.services-section {
    padding: 5rem 0;
    background: var(--slate-50);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    background: rgba(14, 165, 233, .08);
    color: #0ea5e9;
    border: 1px solid rgba(14, 165, 233, .2);
    padding: .3rem .9rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 1rem 0 .5rem;
    color: var(--text);
}

.section-header p {
    color: var(--slate-600);
    font-size: .95rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media(max-width:768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all .3s;
    position: relative;
    background: #fff;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03), transparent);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 32, 68, 0.1);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2.8rem;
    background: #f0f9ff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f2044;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-link {
    color: #0ea5e9;
    font-size: .85rem;
    font-weight: 600;
    transition: color .2s;
}

.service-link:hover {
    color: #00c9b7;
}

/* ─── WHY CHOOSE US ─────────────────────────────────────────────────────────── */
.why-section {
    padding: 5rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media(max-width:768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 1rem 0 1.5rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-icon {
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--slate-50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item strong {
    display: block;
    font-weight: 700;
    margin-bottom: .2rem;
}

.why-item p {
    color: var(--slate-600);
    font-size: .85rem;
}

.why-image-card {
    background: linear-gradient(135deg, var(--navy), var(--teal-dark));
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}

.clinic-mockup {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, .1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.why-badge-float {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #fff;
    border-radius: 12px;
    padding: .8rem 1.2rem;
    font-weight: 700;
    font-size: .85rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.why-badge-float small {
    color: var(--slate-600);
    font-weight: 400;
}

/* ─── DENTISTS ────────────────────────────────────────────────────────────────── */
.dentists-section {
    padding: 5rem 0;
    background: var(--slate-50);
}

.dentists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media(max-width:768px) {
    .dentists-grid {
        grid-template-columns: 1fr;
    }
}

.dentist-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .3s;
}

.dentist-card:hover {
    transform: translateY(-6px);
}

.dentist-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dentist-info {
    padding: 1.5rem;
}

.dentist-info h3 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .3rem;
}

.dentist-spec {
    background: rgba(14, 165, 233, .08);
    color: #0ea5e9;
    padding: .2rem .7rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
}

.dentist-info p {
    color: var(--slate-600);
    font-size: .85rem;
    margin-top: .8rem;
    line-height: 1.6;
}

.dentist-exp {
    background: var(--slate-50);
    border-radius: 8px;
    padding: .4rem .8rem;
    font-size: .8rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.btn-outline-dark {
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: .75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all .25s;
    display: inline-block;
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: #fff;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────────────────────── */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media(max-width:768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all .3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.stars {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--slate-600);
    font-size: .9rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-size: .9rem;
}

.testimonial-author span {
    font-size: .78rem;
    color: var(--slate-600);
}

/* ─── CTA ────────────────────────────────────────────────────────────────────── */
.cta-section {
    padding: 3rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--navy), var(--teal-dark));
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-card h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.8rem;
}

.cta-card p {
    color: rgba(255, 255, 255, .75);
    margin-top: .5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--navy);
    padding: .75rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    transition: all .25s;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, .5);
    color: #fff;
    padding: .75rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    transition: all .25s;
    display: inline-block;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */

.footer{
    background:#081633;
    color:#fff;
    padding:70px 0 25px;
    overflow:hidden;
}

.footer .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/*================ GRID ================*/

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    margin-bottom:50px;
}

.footer-grid > div{
    min-width:0;
}

/*================ LOGO ================*/

.footer-logo{
    display:inline-flex;
    align-items:center;
    gap:15px;
    color:#fff;
    text-decoration:none;
    margin-bottom:25px;
}

.logo-icon{
    width:78px;
    height:78px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2.2rem;
    font-weight:700;
    color:#fff;

    background:linear-gradient(135deg,#00d4c7,#1696f4);
}

.footer-logo span{
    font-size:2rem;
    font-weight:700;
    line-height:1.2;
}

.footer-logo strong{
    font-weight:800;
}

/*================ DESCRIPTION ================*/

.footer-desc{

    color:#94a3b8;
    line-height:1.9;
    font-size:1.05rem;
    margin:25px 0;

}

/*================ SUBTITLE ================*/

.footer-subtitle{

    margin-top:35px;
    margin-bottom:18px;

    color:#fff;
    font-size:1rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

}

/*================ PAYMENT BADGES ================*/

.payment-badges{

    display:flex;
    flex-wrap:wrap;
    gap:12px;

}

.payment-badge{

    border:1px solid rgba(255,255,255,.12);

    padding:12px 22px;

    border-radius:12px;

    color:#fff;

    background:rgba(255,255,255,.04);

    font-weight:600;

    transition:.3s;

}

.payment-badge:hover{

    background:#00c9b7;

}

/*================ TITLES ================*/

.footer-column-title{

    color:#fff;
    font-size:2rem;
    margin-bottom:25px;
    position:relative;

}

.footer-column-title::after{

    content:"";

    display:block;

    width:70px;

    height:4px;

    background:#00c9b7;

    margin-top:12px;

}

/*================ LINKS ================*/

.footer-list{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-list li{

    margin-bottom:16px;

}

.footer-list a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;

    font-size:1.05rem;

}

.footer-list a:hover{

    color:#00c9b7;

    padding-left:6px;

}

/*================ NEWSLETTER ================*/

.newsletter-form{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.newsletter-input{

    width:100%;

    padding:16px 18px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.15);

    background:#16213d;

    color:#fff;

    font-size:1rem;

    outline:none;

}

.newsletter-input::placeholder{

    color:#94a3b8;

}

.newsletter-btn{

    width:100%;

    padding:16px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#00d4c7,#1696f4);

    color:#fff;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.newsletter-btn:hover{

    transform:translateY(-2px);

}

/*================ SOCIAL ================*/

.footer-social-title{

    margin-top:30px;

    margin-bottom:18px;

    color:#fff;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}

.social-grid{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

}

.social-link-btn{

    width:46px;

    height:46px;

    border-radius:12px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.06);

    color:#fff;

    text-decoration:none;

    transition:.3s;

    font-weight:700;

}

.social-link-btn:hover{

    background:#00c9b7;

    transform:translateY(-3px);

}

/*================ BOTTOM ================*/

.bottom-divider{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

}

.bottom-flex{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.bottom-flex p{

    color:#64748b;

}

.bottom-flex a{

    color:#64748b;

    text-decoration:none;

}

.bottom-flex a:hover{

    color:#00c9b7;

}

/*================ RESPONSIVE ================*/

@media(max-width:992px){

.footer-grid{

    grid-template-columns:1fr 1fr;

    gap:40px;

}

}

@media(max-width:768px){

.footer{

    padding:55px 0 20px;

}

.footer-grid{

    grid-template-columns:1fr;

    gap:45px;

}

.footer-logo{

    justify-content:center;

    text-align:center;

}

.footer-logo span{

    font-size:1.7rem;

}

.footer-desc,

.footer-subtitle,

.footer-column-title,

.footer-list,

.footer-social-title{

    text-align:center;

}

.footer-column-title::after{

    margin-left:auto;

    margin-right:auto;

}

.payment-badges{

    justify-content:center;

}

.social-grid{

    justify-content:center;

}

.bottom-flex{

    flex-direction:column;

    text-align:center;

}

.bottom-flex>div{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

}

@media (max-width:768px){
    .floating-actions{
        right:15px;
        bottom:15px;
    }

    .float-btn{
        width:52px;
        height:52px;
    }
}

/* ─── PAGE HERO (for inner pages) ──────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #0f2044, #0a5c5c);
    padding: 5rem 0 3rem;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: .5rem 0;
}

.page-hero p {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
}

/* ─── SERVICES PAGE FILTERS ─────────────────────────────────────────────────── */
.filter-bar {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 0;
}

.filter-btn {
    border: 1.5px solid var(--slate-200);
    background: var(--white);
    color: var(--slate-600);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .82rem;
    cursor: pointer;
    transition: all .2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #00c9b7, #0ea5e9);
    color: #fff;
    border-color: transparent;
}

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 0 4rem;
}

@media(max-width:768px) {
    .all-services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-icon {
    font-size: 2.5rem;
    margin: 1rem 0 0.5rem 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background: #25d366;
    color: #fff !important;
    padding: 0.9rem 1.6rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float span {
    font-size: 1.8rem;
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 2rem;
        right: 2rem;
        padding: 0.8rem;
    }

    .whatsapp-float small {
        display: none;
    }
}

.service-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-icon {
    font-size: 2.5rem;
    margin: 1rem 0 0.5rem 1rem;
}

.book-btn {
    background: #14b8a6;
    color: white;
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.book-btn:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.3);
}

/* ==========================================================================
   HOMEPAGE healthcare MODERNIZATION STYLES
   ========================================================================== */

/* ─── SMOOTH SCROLLING ─── */
html {
    scroll-behavior: smooth;
}

/* ─── ANIMATED HERO SLIDER ─── */
.hero {
    position: relative;
    overflow: hidden;
    height: 90vh;
    min-height: 650px;
    background: var(--navy);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Glass panel background style for content */
.hero-content {
    background: rgba(15, 32, 68, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3.5rem;
    max-width: 680px;
    margin-left: 5%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Slide Transition Animations for children of active slide */
.hero-slide .hero-content>* {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-content>* {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .hero-content .badge {
    transition-delay: 0.1s;
}

.hero-slide.active .hero-content h1 {
    transition-delay: 0.2s;
}

.hero-slide.active .hero-content p {
    transition-delay: 0.3s;
}

.hero-slide.active .hero-content .hero-btns,
.hero-slide.active .hero-content .hero-actions {
    transition-delay: 0.4s;
}

/* Slide controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: #00c9b7;
    border-color: #00c9b7;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 201, 183, 0.4);
}

.slider-arrow.prev {
    left: 24px;
}

.slider-arrow.next {
    right: 24px;
}

/* ─── ANIMATED STATISTICS ─── */
.stats-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    z-index: 3;
    margin-top: -50px;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -15px 30px rgba(15, 32, 68, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media(max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section {
        margin-top: -30px;
        padding: 4rem 0;
    }
}

@media(max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 32, 68, 0.06);
    border-color: #0ea5e9;
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.stat-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-family: 'Inter', sans-serif;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0f2044;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: #00c9b7;
    margin-left: 2px;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.stat-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover .stat-bar {
    width: 100% !important;
}

/* ─── RICH SERVICE CARDS WITH GLASS EFFECT ─── */
.services-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

@media(max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    box-shadow: 0 10px 30px rgba(15, 32, 68, 0.03);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-glass {
    position: relative;
    z-index: 2;
    flex: 1;
    background: rgba(255, 255, 255, 0.30);
    /* 70% — image clearly shows through */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 3rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.4s, backdrop-filter 0.4s;
    height: 100%;
}

.service-card-glass.glass-bold {
    background: rgba(255, 255, 255, 0.78);
    /* 78% for services page */
}

.service-card-wrapper:hover .service-card-glass.glass-bold {
    background: rgba(255, 255, 255, 0.40);
    /* hover: more image visible */
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.service-card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(15, 32, 68, 0.18);
    border-color: rgba(14, 165, 233, 0.4);
}

.service-card-wrapper:hover .service-card-bg {
    transform: scale(1.08);
}

.service-card-wrapper:hover .service-card-glass {
    background: rgba(255, 255, 255, 0.60);
    /* hover: image pops through more */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 201, 183, 0.1), rgba(14, 165, 233, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-icon-box svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card-wrapper:hover .service-icon-box {
    background: linear-gradient(135deg, #00c9b7, #0ea5e9);
    color: #fff;
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 201, 183, 0.3);
}

.service-card-info h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f2044;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.service-card-info p {
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.service-card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0ea5e9;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.service-card-link span {
    transition: transform 0.3s;
}

.service-card-wrapper:hover .service-card-link {
    color: #00c9b7;
}

.service-card-wrapper:hover .service-card-link span {
    transform: translateX(4px);
}

/* ─── BEFORE/AFTER SMILE GALLERY ─── */
.before-after-section {
    padding: 6rem 0;
    background: var(--white);
}

.before-after-container {
    max-width: 800px;
    margin: 0 auto 3.5rem;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 32, 68, 0.15);
    border: 8px solid #fff;
    aspect-ratio: 16 / 9;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-after-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-label {
    position: absolute;
    bottom: 20px;
    background: rgba(15, 32, 68, 0.85);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 20;
    user-select: none;
    backdrop-filter: blur(4px);
}

.slider-label.before {
    right: 20px;
}

.slider-label.after {
    left: 20px;
}

.slider-control {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    opacity: 0;
    cursor: col-resize;
}

.slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    z-index: 25;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #00c9b7;
    border: 4px solid #fff;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 26;
}

.handle-arrow-left,
.handle-arrow-right {
    margin: 0 1px;
    font-size: 8px;
}

/* Success Cases Grid */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .before-after-container {
        aspect-ratio: 4 / 3;
    }
}

.case-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 32, 68, 0.02);
}

.case-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 200px;
    background: #f1f5f9;
    gap: 2px;
}

.case-img-box {
    position: relative;
    height: 100%;
}

.case-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-badge {
    position: absolute;
    top: 10px;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    color: #fff;
}

.case-badge.before {
    left: 10px;
    background: #e11d48;
}

.case-badge.after {
    right: 10px;
    background: #10b981;
}

.case-info {
    padding: 1.5rem;
}

.case-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f2044;
    margin-bottom: 0.4rem;
}

.case-info p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
}

/* ─── INSURANCE LOGO MARQUEE ─── */
.partners-marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 3rem;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    padding: 1rem 0;
}

.partners-marquee {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: 3rem;
    animation: marquee 28s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 3rem));
    }
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 64px;
    min-width: 140px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    opacity: 0.6;
    filter: grayscale(1);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    border-color: #00c9b7;
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 10px 20px rgba(15, 32, 68, 0.05);
}

.partner-logo .logo-text {
    font-weight: 800;
    font-size: 1.15rem;
    color: #0f2044;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
}

.partner-logo .logo-sub {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ─── INTERACTIVE FAQ SECTION ─── */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00c9b7;
    background: #fff;
    box-shadow: 0 10px 25px rgba(15, 32, 68, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f2044;
    cursor: pointer;
    font-family: inherit;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #0ea5e9;
    transition: transform 0.3s ease, background 0.3s;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
}

.faq-item.active {
    background: #fff;
    border-color: #00c9b7;
    box-shadow: 0 15px 30px rgba(15, 32, 68, 0.05);
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    background: #00c9b7;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 1.5rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─── EMBEDDED MAP & CLINIC INFO ─── */
.clinic-map-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.clinic-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .clinic-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 2rem;
}

.contact-details-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.details-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f2044;
    margin-bottom: 0.2rem;
}

.contact-details-item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.clinic-map-container {
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(15, 32, 68, 0.08);
    border: 8px solid #fff;
}

/* ─── FLOATING QUICK CONTACT ACTION MENU ─── */
.floating-contact-menu {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.menu-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c9b7, #0ea5e9);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    position: relative;
}

.menu-trigger:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.6);
}

.menu-trigger .trigger-close {
    display: none;
}

.floating-contact-menu.open .menu-trigger {
    background: #1e293b;
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.3);
}

.floating-contact-menu.open .menu-trigger .trigger-icon {
    display: none;
}

.floating-contact-menu.open .menu-trigger .trigger-close {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-contact-menu.open .menu-items {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(10px);
    opacity: 0;
}

.floating-contact-menu.open .menu-item {
    transform: translateX(0);
    opacity: 1;
}

/* Stagger item loads in panel */
.floating-contact-menu.open .menu-item:nth-child(1) {
    transition-delay: 0.05s;
}

.floating-contact-menu.open .menu-item:nth-child(2) {
    transition-delay: 0.1s;
}

.floating-contact-menu.open .menu-item:nth-child(3) {
    transition-delay: 0.15s;
}

.floating-contact-menu.open .menu-item:nth-child(4) {
    transition-delay: 0.2s;
}

.menu-item:hover {
    transform: translateX(-4px) !important;
    box-shadow: 0 8px 22px rgba(15, 32, 68, 0.12);
}

.menu-item .item-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.menu-item.whatsapp .item-icon {
    background: #25d366;
}

.menu-item.phone .item-icon {
    background: #0ea5e9;
}

.menu-item.book .item-icon {
    background: #00c9b7;
}

.menu-item.map .item-icon {
    background: #f59e0b;
}

.menu-item .item-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
}

/* ─── SCROLL TO TOP ─── */
.scroll-to-top {
    position: fixed;
    bottom: 2.5rem;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    font-size: 1.2rem;
}

.scroll-to-top.visible {
    opacity: 0.85;
    visibility: visible;
}

.scroll-to-top:hover {
    opacity: 1;
    background: #00c9b7;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 201, 183, 0.4);
}

/* ─── ENTRANCE ANIMATIONS (Scroll Observer) ─── */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos="fade-left"] {
    transform: translateX(45px);
}

[data-aos="fade-right"] {
    transform: translateX(-45px);
}

[data-aos="zoom-in"] {
    transform: scale(0.92);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ─── PREMIUM FOOTER & SOCIALS ─── */
.footer {
    background: #0f172a;
    /* Sleeker dark slate background */
    color: #cbd5e1;
    padding: 6rem 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 1.2rem 0;
}

.footer-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #e2e8f0;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.payment-badges {
    display: flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
    align-items: center;
    margin-top: 1rem;
}
.payment-badge{

    flex:1 1 110px;
    text-align:center;

}

.payment-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 0.72rem;
    color: #fff;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    letter-spacing: 0.05em;
    user-select: none;
}

.footer-column-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: #00c9b7;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-list a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-list a:hover {
    color: #00c9b7;
    transform: translateX(4px);
}

.footer-list a::before {
    content: '›';
    font-size: 1.2rem;
    line-height: 1;
    color: #00c9b7;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s;
}

.footer-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-line {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    font-size: 0.9rem;
}

.footer-contact-line span {
    color: #0ea5e9;
    flex-shrink: 0;
}

/* Newsletter Subscription */
.newsletter-container {
    margin-top: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.newsletter-input-wrapper {
    position: relative;
}

.newsletter-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    font-family: inherit;
    transition: all 0.3s;
}

.newsletter-input:focus {
    outline: none;
    border-color: #00c9b7;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(0, 201, 183, 0.25);
}

.newsletter-btn {
    background: linear-gradient(135deg, #00c9b7, #0ea5e9);
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}
.newsletter-form{

    display:flex;
    flex-direction:column;
    gap:12px;

}

.newsletter-input{

    width:100%;
    max-width:100%;
    box-sizing:border-box;

}

.newsletter-btn{

    width:100%;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 201, 183, 0.4);
}

.newsletter-status {
    font-size: 0.8rem;
    margin-top: 0.4rem;
    display: none;
    color: #10b981;
}

.footer-social-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.social-grid {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.social-link-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.3s;
    text-decoration: none !important;
}

.social-link-btn:hover {
    background: linear-gradient(135deg, #00c9b7, #0ea5e9);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 201, 183, 0.35);
}

.bottom-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
    padding-top: 2rem;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap:20px;
}

@media(max-width: 768px) {
    .bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── HERO SLIDER DOTS ─── */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.7rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active,
.dot:hover {
    background: #00c9b7;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(0, 201, 183, 0.6);
}

/* ─── FEATURED SERVICES GRID (Homepage) ─── */
.featured-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .featured-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .featured-services {
        grid-template-columns: 1fr;
    }
}

/* ─── ALL-SERVICES-GRID WRAPPER UPGRADE ─── */
.all-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 0 4rem;
}

@media (max-width: 992px) {
    .all-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .all-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── HERO RESPONSIVE ─── */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 60vh;
    }

    .hero-content {
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }

    .hero-slide .hero-content>* h1 {
        font-size: 2rem;
    }

    .slider-arrow {
        display: none;
        /* hide arrow controls on small screens */
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin: 1rem;
        padding: 2rem 1.2rem;
    }
}

/* ─── CLINIC MAP SECTION RESPONSIVE ─── */
@media (max-width: 768px) {
    .clinic-map-container {
        height: 280px;
    }
}

/* ─── FAQ RESPONSIVE ─── */
@media (max-width: 600px) {
    .faq-container {
        margin-top: 2rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.2rem;
    }
}

/* ─── BEFORE/AFTER RESPONSIVE ─── */
@media (max-width: 600px) {
    .before-after-section {
        padding: 4rem 0;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── FLOATING MENU RESPONSIVE ─── */
@media (max-width: 480px) {
    .floating-contact-menu {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .scroll-to-top {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* ─── HERO BUTTONS RESET (needed for new styled links) ─── */
.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00c9b7, #0ea5e9);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(0, 201, 183, 0.3);
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 201, 183, 0.45);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ─── PARTNERS SECTION GRADIENT FADE EDGES ─── */
@media (max-width: 768px) {
    .partners-marquee-container {
        gap: 2rem;
    }

    .partners-marquee {
        gap: 2rem;
        min-width: 200%;
    }

    .partner-logo {
        min-width: 110px;
    }
}

/* ─── TESTIMONIALS REFINED ─── */
.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    color: #475569;
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-author strong {
    display: block;
    color: #0f2044;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ─── CLINIC DETAILS SECTION ─── */
.clinic-details h2 {
    margin: 0.5rem 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.contact-details-item h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f2044;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
       /* ─── FLOATING BUTTONS ─── */
        .floating-actions {
            position: fixed;
 
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            z-index: 9999;
        }
        @media(max-width:768px){

.floating-actions{

    right:12px;
    bottom:18px;

}

.float-btn{

    width:52px;
    height:52px;

}

}

        .float-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            color: #fff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
            position: relative;
        }

        .float-btn:hover {
            transform: scale(1.12);
        }

        .float-btn.wa {
            background: linear-gradient(135deg, #25d366, #1aab4e);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }

        .float-btn.call {
            background: linear-gradient(135deg, #0ea5e9, #0f2044);
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
        }

        .float-btn .tooltip {
            position: absolute;
            right: calc(100% + 12px);
            top: 50%;
            transform: translateY(-50%);
            background: #1e293b;
            color: #fff;
            padding: 0.35rem 0.8rem;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s;
            font-family: 'Inter', sans-serif;
        }

        .float-btn:hover .tooltip {
            opacity: 1;
        }

/* ─── FOOTER LOGO DISPLAY FIX ─── */
.footer-logo {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    flex-wrap:wrap;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ─── SECTION TAG (BADGE LABEL) ─── */
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

/* Logo */

.nav-logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.logo-img{
    width:60px;
    height:60px;
    object-fit:contain;
    border-radius:50%;
    background:#fff;
    padding:4px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transition:.3s;
    border-radius:50%;
    border:3px solid #00b8b0;
}

.logo-img:hover{
    transform:rotate(-8deg) scale(1.08);
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-title{
    font-size:1.3rem;
    font-weight:700;
    color:#123456;
    line-height:1.1;
}

.logo-title strong{
    color:#00b8b0;
}

.logo-tagline{
    font-size:.75rem;
    color:#777;
    letter-spacing:.5px;
}