/* ========================================================
   CRAZY ATTRACTIVE, ULTRA-PREMIUM DARK MODE DESIGN
   Next-Gen Glassmorphism, Neon Accents, Fluid Animations
   (SCALED DOWN PROFESSIONAL TYPOGRAPHY VERSION)
======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* Next-Gen Cyber-Health Palette */
    --bg-base: #050914;
    /* Pitch Dark Navy */
    --bg-surface: #0a1128;
    /* Slightly Lighter Panel */
    --bg-glass: rgba(10, 17, 40, 0.6);

    --accent-1: #00f0ff;
    /* Cyber Cyan */
    --accent-2: #0047ff;
    /* Deep Neon Blue */
    --accent-3: #7000ff;
    /* Purple Glow */
    --warning: #ffbf00;
    /* Star Gold */
    --whatsapp: #25D366;

    --text-pure: #ffffff;
    --text-bright: #e2e8f0;
    --text-muted: #8b9bb4;

    --border-glow: rgba(0, 240, 255, 0.3);
    --border-dim: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-base);
    color: var(--text-bright);
    overflow-x: hidden;
    /* Animated subtle background gradient */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 71, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Glassmorphism Dynamic Separators */
section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text-pure);
}

/* Stunning Gradient Text Effect for Headers */
h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff, #8b9bb4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

h3 {
    font-size: 1.3rem;
    color: var(--text-pure);
}

p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* =========================================================
   EXTREME BUTTONS 
========================================================= */
.btn,
.whatsapp-btn,
.google-btn,
.review-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    /* Perfect pill */
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    color: var(--text-pure);
    background: transparent;
    border: 1px solid var(--accent-1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Magic Glowing Hover Sweep Effect */
.btn::before,
.review-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn:hover,
.review-btn:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.4), 0 0 15px var(--accent-2);
    color: #fff;
}

.btn:hover::before,
.review-btn:hover::before {
    opacity: 1;
}

.btn-secondary {
    border-color: var(--text-muted);
    box-shadow: none;
    color: var(--text-bright);
}

.btn-secondary::before {
    background: rgba(255, 255, 255, 0.1);
}

/* WhatsApp Specialized Neon */
.whatsapp-btn {
    border-color: var(--whatsapp);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn::before {
    background: linear-gradient(90deg, #128C7E, var(--whatsapp));
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 15px #128C7E;
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

.google-btn {
    border-color: #DB4437;
    background: rgba(219, 68, 55, 0.05);
}

.google-btn i {
    color: #fbbc05;
}

.google-btn:hover {
    background: #DB4437;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(219, 68, 55, 0.4);
}

.google-btn:hover i {
    color: #fff;
}

/* Pulse floating widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatNeon 3s infinite alternate;
}

@keyframes floatNeon {
    0% {
        transform: translateY(0);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    100% {
        transform: translateY(-10px);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.whatsapp-float-text {
    display: none;
}

/* Kept clean */

/* =========================================================
   HEADER: DARK FROSTED GLASS
========================================================= */
header {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dim);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* 
   THE PERFECT COMPROMISE:
   We give the logo a native white "Premium Badge" background with padding and rounded corners.
   This perfectly masks the ugly sharp edges of your jpeg/png's white box.
   It completely preserves your exact, true original colors.
   And it looks incredibly stylish on the dark header!
*/
.logo-img,
.footer-logo {
    height: 52px;
    width: auto;
    background-color: #ffffff;
    /* Premium white badge */
    padding: 6px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    mix-blend-mode: normal;
    filter: none;
    /* No color inversion whatsoever! */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo:hover .logo-img {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 240, 255, 0.3);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-bright);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
}

nav ul li a:not(.whatsapp-btn):hover {
    color: var(--accent-1);
    text-shadow: 0 0 10px var(--accent-1);
}

.mobile-menu {
    display: none;
    font-size: 1.6rem;
    color: var(--accent-1);
    cursor: pointer;
}

/* =========================================================
   HERO: CINEMATIC DARKNESS
========================================================= */
.hero {
    /* Deep fade over the original background */
    background:
        linear-gradient(135deg, rgba(5, 9, 20, 0.95) 0%, rgba(5, 9, 20, 0.7) 100%),
        url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover fixed;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

/* Glowing Orb behind Hero */
.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 71, 255, 0.12) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

/* Gradient word highlight */
.hero h1 span {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.3));
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-bright);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* =========================================================
   SERVICES: 3D FLOATING NEON CARDS
========================================================= */
.swiper {
    width: 100%;
    padding: 20px 0 60px;
}

.swiper-slide {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 15px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* Glowing top edge */
.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.swiper-slide:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--border-glow);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 240, 255, 0.1);
    background: #0d1633;
}

.swiper-slide:hover::before {
    opacity: 1;
}

.swiper-slide a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.service-image {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
    border-radius: 50%;
    position: relative;
    background: var(--text-pure);
    box-shadow: 0 0 0 3px var(--bg-surface), 0 0 0 5px var(--border-dim), 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    overflow: hidden;
}

.swiper-slide:hover .service-image {
    box-shadow: 0 0 0 3px var(--bg-surface), 0 0 0 6px var(--accent-1), 0 0 30px rgba(0, 240, 255, 0.3);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    /* Fixes white box */
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.swiper-slide:hover .service-image img {
    transform: scale(1.1);
}

.service-name {
    font-size: 1.15rem;
    color: var(--text-pure);
    font-weight: 600;
    text-align: center;
    transition: color 0.3s;
}

.swiper-slide:hover .service-name {
    color: var(--accent-1);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.swiper-pagination-bullet {
    background-color: var(--text-muted);
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-1);
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--accent-1);
}

.services-buttons {
    margin-top: -10px;
    text-align: center;
}

/* =========================================================
   ABOUT SECTION: GLASS PANEL MESH
========================================================= */
.about {
    background: var(--bg-surface);
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px 45px;
    border-radius: 25px;
    border: 1px solid var(--border-dim);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Corner Glow inside About */
.about-content::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: var(--accent-3);
    filter: blur(80px);
    opacity: 0.25;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-bright);
}

.about-content i.fa-check-circle {
    color: var(--accent-1);
    font-size: 1.2rem;
    margin-right: 12px;
    text-shadow: 0 0 8px var(--accent-1);
}

/* =========================================================
   DOCTORS SECTION: CYBER PORTRAITS 
========================================================= */
.doctors-content>p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.doctors-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.doctor-card {
    background: var(--bg-surface);
    padding: 35px 25px;
    border-radius: 20px;
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-dim);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.doctor-card:hover {
    transform: translateY(-8px);
    background: #0d1633;
    border-color: var(--border-glow);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 240, 255, 0.08);
}

.doctor-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 25px;
    border: 2px solid var(--border-dim);
    padding: 6px;
    position: relative;
    background: #fff;
    /* Native image background handler */
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    mix-blend-mode: multiply;
    /* Solves white box natively */
    transition: transform 0.4s;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.08);
}

.doctor-name {
    font-size: 1.4rem;
    color: var(--text-pure);
    margin-bottom: 5px;
}

.doctor-title {
    color: var(--accent-1);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}

.doctor-card p:last-child {
    font-size: 0.95rem;
    padding: 0 10px;
}

.doctors-buttons {
    text-align: center;
}

/* =========================================================
   REVIEWS: GIANT HOLOGRAM TEXT
========================================================= */
.reviews {
    background: var(--bg-surface);
}

.reviews-content>p {
    text-align: center;
}

.reviews-stats {
    background: var(--bg-base);
    padding: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    border: 1px solid var(--border-glow);
    box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.05), 0 20px 40px rgba(0, 0, 0, 0.5);
}

.rating-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent-1);
    background: linear-gradient(135deg, var(--accent-1), #fff);
    -webkit-background-clip: text;
    line-height: 1;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.rating-stars {
    color: var(--warning);
    font-size: 1.6rem;
    margin: 10px 0;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 8px rgba(255, 191, 0, 0.4));
}

.rating-count {
    color: var(--text-bright);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.reviews-stats>div:last-child strong {
    color: var(--text-pure);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 8px;
}

.reviews-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* =========================================================
   CONTACT: ABSTRACT GLOW MESH
========================================================= */
.contact {
    background: var(--bg-base);
    position: relative;
    overflow: hidden;
}

.contact-shape {
    position: absolute;
    filter: blur(100px);
    z-index: 0;
    animation: floatShape 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-1 {
    top: 5%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: var(--accent-2);
    border-radius: 50%;
    opacity: 0.15;
}

.shape-2 {
    bottom: -5%;
    left: 0;
    width: 450px;
    height: 450px;
    background: var(--accent-3);
    border-radius: 50%;
    opacity: 0.12;
    animation-delay: -5s;
}

@keyframes floatShape {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(60px, 30px);
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.contact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-glow);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.04);
}

.contact-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(0, 240, 255, 0.08);
    border-radius: 50%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.15);
    background: var(--accent-1);
    box-shadow: 0 0 20px var(--accent-1);
    border-color: transparent;
}

.contact-icon {
    font-size: 1.6rem;
    color: var(--accent-1);
    transition: color 0.4s;
}

.contact-card:hover .contact-icon {
    color: var(--bg-base);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 1rem;
    flex-grow: 1;
    margin-bottom: 25px;
}

.contact-card .btn,
.contact-card .whatsapp-btn {
    border-radius: 50px;
}

/* =========================================================
   CTA SECTION
========================================================= */
.cta {
    background: linear-gradient(45deg, var(--bg-surface), #001a4d);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(0,240,255,0.03)" stroke-width="1"/></svg>') repeat;
    background-size: 40px 40px;
    pointer-events: none;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta h2::after {
    display: none;
}

.cta p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

/* =========================================================
   FOOTER: DARK CYBER MINIMAL
========================================================= */
footer {
    background: #02040a;
    padding: 70px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: var(--text-pure);
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-column ul li i {
    color: var(--accent-1);
    margin-top: 4px;
    text-shadow: 0 0 8px var(--accent-1);
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--accent-1);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-bright);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border-dim);
}

.social-icons a:hover {
    background: var(--accent-1);
    color: var(--bg-base);
    border-color: transparent;
    box-shadow: 0 0 15px var(--accent-1);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-dim);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */
@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }

    .hero {
        padding: 160px 0 90px;
    }

    .doctor-image {
        height: 140px;
        width: 140px;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(10, 17, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 0;
        border-bottom: 1px solid var(--border-glow);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 12px 0;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }

    .reviews-stats {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .contact {
        padding: 80px 0;
    }

    .footer-content {
        gap: 35px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }

    .btn,
    .whatsapp-btn,
    .review-btn,
    .google-btn {
        width: 100%;
        text-align: center;
        padding: 12px 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .about-content {
        padding: 35px 20px;
    }

    .contact-card {
        padding: 35px 20px;
    }

    .rating-number {
        font-size: 3.5rem;
    }

    .doctor-card {
        padding: 25px 15px;
    }

    .doctor-image {
        height: 120px;
        width: 120px;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}