:root {
    --primary-vibrant: #0079C1;
    --primary-deep: #003B5C;
    --accent-teal: #00D1B2;
    --accent-glass: rgba(255, 255, 255, 0.7);
    --bg-gradient: linear-gradient(135deg, #F0F9FF 0%, #FFFFFF 100%);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --text-main: #1E293B;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --card-shadow: 0 20px 40px rgba(0, 59, 92, 0.08);
    --hover-shadow: 0 30px 60px rgba(0, 59, 92, 0.12);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    /* Fluid Spacing & Section Padding */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-padding: clamp(1.5rem, 5vw, 3rem);

    /* Fluid Typography - scaled for premium feel */
    --fs-h1: clamp(2.5rem, 6vw + 1rem, 5rem);
    --fs-h2: clamp(2rem, 4vw + 1rem, 3.5rem);
    --fs-h3: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    --fs-body: clamp(1rem, 1vw + 0.6rem, 1.2rem);
    --fs-nav: clamp(0.9rem, 0.5vw + 0.5rem, 1rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background: var(--bg-gradient);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

input,
textarea,
select,
button {
    font: inherit;
    max-width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-vibrant);
    border-radius: 10px;
}


.container {
    width: 100%;
    max-width: 1300px;
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

/* --- LOGO --- */
.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* --- LOGO --- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    z-index: 1200;
}

.logo-img {
    height: clamp(35px, 5vw, 45px);
    width: auto;
    display: block;
}

.logo-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, var(--primary-deep), var(--primary-vibrant));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- HEADER / NAV --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1100;
    transition: var(--transition-smooth);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 1rem;
    position: relative;
}

.nav-links {
    display: none;
    /* Mobile-first: hidden */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    padding: 2rem var(--container-padding);
    gap: 1.5rem;
    list-style: none;
}

.nav-links.active {
    display: flex;
}

.nav-links li.mobile-only {
    display: block;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    padding-block: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.nav-links li:last-child a {
    border-bottom: none;
}

.nav-cta-mobile {
    display: inline-flex;
    width: 100%;
    justify-content: center;
}

/* Hamburger Styles */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1200;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-deep);
    border-radius: 4px;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Desktop Navigation Enhancement */
@media (min-width: 992px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: clamp(1.5rem, 3vw, 2.5rem);
    }

    .nav-links li.mobile-only {
        display: none;
    }

    .nav-links a {
        font-size: var(--fs-nav);
        padding: 0;
        border-bottom: none;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-vibrant);
        transition: var(--transition-smooth);
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-cta-desktop {
        display: block;
    }

    .nav-cta-mobile {
        display: none;
    }

    .hamburger {
        display: none;
    }
}

/* --- BUTTONS --- */
.btn {
    padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    width: fit-content;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-vibrant) 0%, var(--primary-deep) 100%);
    color: white;
    box-shadow: 0 15px 30px rgba(0, 121, 193, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 121, 193, 0.35);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-deep);
}

.btn-glass:hover {
    background: white;
    transform: translateY(-4px);
}

/* --- HERO SECTION --- */
.hero {
    min-height: clamp(600px, 95vh, 1000px);
    display: flex;
    align-items: center;
    padding-block: clamp(100px, 15vh, 180px) clamp(60px, 8vh, 100px);
    position: relative;
    overflow: hidden;
    /* Prevent accent leaking */
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 6rem;
        align-items: center;
    }
}

.hero-content {
    animation: slideInLeft 1s var(--transition-smooth);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    background: rgba(0, 121, 193, 0.1);
    color: var(--primary-vibrant);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero h1 {
    font-size: var(--fs-h1);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-deep);
}

.hero h1 span {
    color: var(--primary-vibrant);
    position: relative;
}

.hero-desc {
    font-size: var(--fs-body);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .hero-btns {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hero-image-container {
    position: relative;
    animation: fadeIn 1.5s var(--transition-smooth);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        scale: 0.95;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

.hero-image-wrapper {
    position: relative;
    border-radius: clamp(24px, 5vw, 40px);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 59, 92, 0.15);
}

.hero-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transform: scale(1.05);
    transition: var(--transition-smooth);
}

.hero-image-container:hover .hero-img {
    transform: scale(1);
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-accent-shape {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(0, 121, 193, 0.1) 0%, transparent 50%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: -1;
}

/* --- DOCTORS SECTION --- */
.doctors-section {
    padding: var(--section-padding) 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1rem;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
}

.doctor-card {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.doc-image-wrap {
    height: 350px;
    overflow: hidden;
    background: #f8fafc;
}

.doc-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.doctor-card:hover .doc-image-wrap img {
    transform: scale(1.05);
}

.doc-info {
    padding: 2.5rem;
}

.doc-info h3 {
    font-size: var(--fs-h3);
    color: var(--primary-deep);
    margin-bottom: 0.5rem;
}

.doc-role {
    display: block;
    color: var(--primary-vibrant);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.doc-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.btn-sm {
    padding: 0.7rem 2rem;
    font-size: 0.9rem;
}

/* --- SERVICES --- */
.services {
    padding: var(--section-padding) 0;
    background: #F8FAFC;
}

.section-tag {
    text-align: center;
    color: var(--primary-vibrant);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    text-align: center;
    font-size: var(--fs-h2);
    color: var(--primary-deep);
    margin-bottom: clamp(3rem, 8vw, 5rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
}

.service-item {
    background: white;
    padding: 4rem 3rem;
    border-radius: 32px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-vibrant) 0%, var(--primary-deep) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.service-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
}

.service-item:hover * {
    color: white !important;
    z-index: 1;
    position: relative;
}

.service-item:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 121, 193, 0.05);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    transition: var(--transition-smooth);
}

.service-item h3 {
    font-size: var(--fs-h3);
    margin-bottom: 1.5rem;
    color: var(--primary-deep);
}

.service-item p {
    color: var(--text-muted);
}

/* --- ABOUT / JOURNEY --- */
.about-section {
    padding: var(--section-padding) 0;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.image-reveal-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.image-reveal-wrapper:hover .about-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-vibrant);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 121, 193, 0.3);
}

.experience-badge strong {
    font-size: 1.5rem;
    line-height: 1;
}

.experience-badge span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.h2-large {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-deep);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.p-large {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.timeline {
    margin-top: 3rem;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-vibrant), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.t-dot {
    position: absolute;
    left: -2.4rem;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary-vibrant);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 5px rgba(0, 121, 193, 0.1);
}

.t-content h4 {
    font-size: 1.1rem;
    color: var(--primary-deep);
    margin-bottom: 0.5rem;
}

.t-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- PHILOSOPHY --- */
.philosophy-section {
    padding: var(--section-padding) 0;
    background: var(--primary-deep);
    border-radius: 60px;
    margin: 0 2.5rem;
}

@media (max-width: 768px) {
    .philosophy-section {
        margin: 0 1.5rem;
        border-radius: 40px;
    }
}

.philosophy-card {
    color: white;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-header h2 {
    font-size: 3.5rem;
    margin-top: 1rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(2rem, 5vw, 4rem);
}

.p-feature {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    transition: var(--transition-smooth);
}

.p-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.p-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.p-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.p-feature p {
    color: rgba(255, 255, 255, 0.7);
}

/* --- LIFESTYLE --- */
.lifestyle-section {
    padding: var(--section-padding) 0;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.lifestyle-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.lifestyle-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
}

.l-image {
    height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: white;
}

.l-icon-box {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.l-image h3 {
    font-size: 1.8rem;
}

.l-content {
    padding: 2.5rem;
}

.l-content p {
    color: var(--text-muted);
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 100px 0 150px;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    max-width: 900px;
    background: white;
    padding: 6rem;
    border-radius: 48px;
    position: relative;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--primary-vibrant);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-deep);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.author-info strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-deep);
}

.author-info span {
    color: var(--primary-vibrant);
    font-weight: 600;
}

/* --- FOOTER --- */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #E2E8F0;
}

/* --- RESPONSIVE --- */
/* --- REVIEWS SECTION --- */
.reviews-section {
    padding: 120px 0;
    background: #f8fafc;
}

.reviews-stats {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    font-size: 1.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.r-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-vibrant);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
}

/* --- RICH FOOTER --- */
.rich-footer {
    background: var(--primary-deep);
    color: white;
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 4rem;
    padding-bottom: 80px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-vibrant);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.medical-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1050;
    transition: var(--transition-smooth);
    user-select: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.whatsapp-text {
    font-weight: 700;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .medical-badges {
        justify-content: center;
    }
}

/* --- PREMIUM BOOKING FORM --- */
.contact-section {
    padding: 100px 0;
    background: #f1f5f9;
}

.booking-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 40px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

/* Left Panel - Info */
.booking-info-panel {
    flex: 1;
    background: var(--primary-deep);
    color: white;
    padding: 100px 80px;
    display: flex;
    align-items: center;
}

.booking-heading {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.booking-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 4rem;
}

.booking-contact-items {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.bci {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.bci-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-vibrant);
    flex-shrink: 0;
}

.bci-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-bottom: 0.3rem;
}

.bci-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.booking-google-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-google-badge strong {
    font-size: 1.2rem;
}

.booking-google-badge span {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Right Panel - Form */
.booking-form-panel {
    flex: 1.2;
    padding: 100px 80px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.bf-field {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bf-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-deep);
}

.bf-input {
    width: 100%;
    padding: 1.2rem 1.8rem;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--primary-deep);
    transition: all 0.3s ease;
}

.bf-input:focus {
    outline: none;
    border-color: var(--primary-vibrant);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 79, 155, 0.05);
}

.bf-input::placeholder {
    color: #94a3b8;
}

.bf-select-wrap {
    position: relative;
}

.bf-select {
    appearance: none;
    cursor: pointer;
}

.bf-select-arrow {
    position: absolute;
    right: 1.8rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 12px;
}

.bf-textarea {
    resize: none;
}

.bf-submit {
    margin-top: 1rem;
    background: var(--primary-vibrant);
    color: white;
    padding: 1.4rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
}

.bf-submit:hover {
    background: var(--primary-deep);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bf-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* --- REVIEWS NO-EMOJI --- */
.stars-display {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-deep);
}

/* --- MAP --- */
.map-embed-wrapper {
    overflow: hidden;
    line-height: 0;
}

@media (max-width: 1024px) {
    .booking-wrapper {
        flex-direction: column;
        margin: 0 2rem;
    }

    .booking-info-panel {
        padding: 60px 40px;
    }

    .booking-form-panel {
        padding: 60px 40px;
    }
}

.menu-toggle,
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 991px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2000;
        padding: 5px;
    }

    .menu-toggle .bar {
        width: 28px;
        height: 3px;
        background: var(--primary-deep);
        border-radius: 2px;
        transition: var(--transition-smooth);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 120px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        overflow-y: auto;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .mobile-nav-links {
        list-style: none;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-nav-links li {
        margin-bottom: 0;
    }

    .mobile-nav-links a {
        font-size: 1.8rem;
        font-weight: 800;
        text-decoration: none;
        color: var(--primary-deep);
        transition: var(--transition-smooth);
        display: block;
    }

    .mobile-nav-links a.active {
        color: var(--primary-vibrant);
    }

    /* Hero Section Mobile */
    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-desc {
        margin: 0 auto 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .floating-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
        transform: none !important;
        animation: none;
    }
}

@media (max-width: 768px) {
    .bf-row {
        grid-template-columns: 1fr;
    }

    .booking-heading {
        font-size: 2.5rem;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-float {
        padding: 12px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .services-grid,
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .medical-badges {
        justify-content: center;
    }

    /* Hamburger Animation to X */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem;
        /* Better tap target */
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}