:root {
    /* Colors sampled directly from Nita's Logo */
    --brand-navy: #0e173a;
    --brand-teal: #00a4c5;
    --brand-lavender: #8a6fb2;
    --brand-purple: #5c3e86;
    --brand-gradient: linear-gradient(135deg, #00a4c5 0%, #6f4fa6 100%);
    
    --text-dark: #0e173a;
    --text-muted: #707b8e;
    --bg-white: #ffffff;
    --border-light: rgba(14, 23, 58, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    padding-top: 75px;
    padding-bottom: 90px;
}

/* =========================================================
   TOP NAVBAR (DESKTOP)
========================================================= */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(14, 23, 58, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-size: 0.72rem;
    color: var(--brand-teal);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-link {
    text-decoration: none;
    color: var(--brand-navy);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.desktop-link:hover,
.desktop-link.active {
    color: var(--brand-teal);
}

.desktop-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.desktop-link:hover::after,
.desktop-link.active::after {
    width: 100%;
}

.header-btn {
    background: var(--brand-gradient);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0, 164, 197, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 164, 197, 0.4);
}

/* =========================================================
   BOTTOM PILL MOBILE NAVBAR
========================================================= */
.pill-mobile-nav {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 440px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 26px;
    box-shadow: 0 10px 30px rgba(14, 23, 58, 0.12);
    padding: 10px 16px;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
}

.pill-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.pill-nav-link i {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.pill-nav-link.active,
.pill-nav-link:hover {
    color: var(--brand-teal);
}

.pill-nav-link.active i {
    color: var(--brand-teal);
    transform: scale(1.1);
}

/* =========================================================
   FLOATING CALL BUTTON (RIPPLE EFFECT)
========================================================= */
.floating-call-btn {
    position: fixed;
    right: 24px;
    bottom: 90px;
    width: 52px;
    height: 52px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 164, 197, 0.4);
    z-index: 999;
}

.floating-call-btn .ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--brand-teal);
    border-radius: 50%;
    opacity: 0.6;
    animation: rippleWave 2.2s infinite ease-out;
    z-index: -1;
}

.floating-call-btn .ripple:nth-child(2) {
    animation-delay: 0.9s;
}

@keyframes rippleWave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */
@media (max-width: 820px) {
    .desktop-nav,
    .header-action {
        display: none;
    }

    .pill-mobile-nav {
        display: flex;
    }

    .floating-call-btn {
        bottom: 84px;
        right: 16px;
    }
}

@media (min-width: 821px) {
    .floating-call-btn {
        bottom: 28px;
    }
}


/* Fotter Style */

/* =========================================================
   FOOTER STYLES
========================================================= */
.clinic-footer {
    background: #0b112c;
    color: #e2e8f0;
    font-size: 0.92rem;
    position: relative;
    border-top: 3px solid var(--brand-teal);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.3fr 1.1fr;
    gap: 32px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: #ffffff;
}

.brand-desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.88rem;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--brand-teal);
    transform: translateY(-3px);
}

.footer-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--brand-teal);
    border-radius: 2px;
}

/* Links */
.footer-links,
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--brand-teal);
    transition: transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Map Column */
.footer-map-wrapper {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.footer-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Info */
.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #94a3b8;
    margin-bottom: 14px;
    line-height: 1.4;
}

.footer-contact-info li i {
    color: var(--brand-teal);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact-info a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-info a:hover {
    color: #ffffff;
}

/* Bottom Bar */
.footer-bottom {
    background: #070b1e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #64748b;
    gap: 16px;
    flex-wrap: wrap;
}

.developed-by {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    font-size: 0.82rem;
}

.developed-by i {
    color: #e91e63;
    font-size: 0.75rem;
    animation: heartPulse 1.5s infinite ease-in-out;
}

.developed-by a {
    color: var(--brand-teal);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.developed-by a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--brand-teal);
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-bottom: 5rem;
    }
}

/* Remove unwanted space below footer */
html,
body {
    margin: 0;
    padding: 0;
}

.clinic-footer {
    margin-bottom: 0;
}

.footer-bottom {
    margin-bottom: 0;
}

/* Prevent extra bottom whitespace */
body > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   PREMIUM CLINIC SCROLLBAR
========================================================= */

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #08a9d0 #080d25;
}

/* Chrome / Edge / Safari */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #080d25;
}

::-webkit-scrollbar-thumb {
    background: #08a9d0;
    border-radius: 20px;
    border: 2px solid #080d25;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #10c6ed;
}

::-webkit-scrollbar-corner {
    background: #080d25;
}