/* ===================================================
   SUHANA CLINIC — NAVBAR STYLES FROM SCRATCH
   =================================================== */

.suhana-header {
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 10000;
    pointer-events: none; /* Allows clicking through empty space around pill */
}

.suhana-header .suhana-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.suhana-navbar {
    pointer-events: auto; /* Re-enables clicks specifically on navbar */
    height: 82px;
    gap: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    box-shadow: 0 12px 40px rgba(16,24,40,.08), 0 2px 8px rgba(16,24,40,.04);
    transition: box-shadow .35s ease;
}

.suhana-navbar:hover {
    box-shadow: 0 18px 55px rgba(16,24,40,.12), 0 6px 15px rgba(16,24,40,.05);
}

/* Logo Brand */
.suhana-nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    text-decoration: none;
}

.suhana-nav-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.suhana-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.suhana-brand-text h2 {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
    color: #172033;
    letter-spacing: .4px;
    margin: 0 0 4px 0;
}

.suhana-brand-text p {
    font-size: 11px;
    font-weight: 500;
    color: #6B7280;
    margin: 0 0 2px 0;
}

.suhana-brand-text span {
    font-size: 13px;
    font-weight: 500;
    color: #6B7280;
}

/* Nav Menu */
.suhana-nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.suhana-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 16px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #243244;
    transition: background .3s, color .3s;
}

.suhana-nav-link:hover {
    background: #EDF9F1;
    color: #179C57;
}

.suhana-nav-link.active {
    background: #DDF4E6;
    color: #111827;
}

/* CTA Button */
.suhana-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 46px;
    padding: 0 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #17A651, #2CCB6C);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(34,197,94,.28);
    transition: transform .35s, box-shadow .35s;
    flex-shrink: 0;
    white-space: nowrap;
}

.suhana-nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(34,197,94,.38);
}

/* Hamburger Menu Toggle */
.suhana-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #EDF9F1;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    pointer-events: auto !important;
    z-index: 10001;
    flex-shrink: 0;
}

.suhana-menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: #179C57;
    border-radius: 20px;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
}
