.clinicNavbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #EDE9E0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.clinicNavbarContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.clinicNavbarBrand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    width: 140px;
}

.clinicNavbarBrand img {
    width: 100%;
}

.clinicNavbarLogoIcon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.clinicNavbarLogoIcon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.clinicNavbarLogoText {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.clinicNavbarLogoMain {
    font-family: "Clash Display";
    font-size: 22px;
    font-weight: 600;
    color: #0F6B5C;
}

.clinicNavbarLogoSub {
    font-family: "Clash Display";
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #38402f;
    margin-top: 2px;
}

.clinicNavbarLinks {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.clinicNavbarLinks a {
    font-family: "Clash Display";
    font-size: 15px;
    font-weight: 500;
    color: var(--ortho-clinic-black);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.clinicNavbarLinks a:hover {
    color: #6B7763;
}

.clinicNavbarActions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    background-color: #6B7763;
    padding: 5px;
}

.clinicNavbarToggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 5px;
    padding: 12px 20px;
    background-color: var(--ortho-clinic-green);
    color: var(--ortho-clinic-white);
    font-family: "Clash Display";
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.clinicNavbarToggle:hover {
    background-color: #3f4a3a;
}

.clinicNavbarToggleIcon {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    width: 16px;
}

.clinicNavbarToggleIcon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--ortho-clinic-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.clinicNavbarOpen .clinicNavbarToggleIcon span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.clinicNavbarOpen .clinicNavbarToggleIcon span:nth-child(2) {
    opacity: 0;
}

.clinicNavbarOpen .clinicNavbarToggleIcon span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.clinicNavbarCta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 12px 24px;
    background-color: var(--ortho-clinic-white);
    color: var(--ortho-clinic-black);
    font-family: "Clash Display";
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.clinicNavbarCta:hover {
    background-color: #3f4a3a;
    color: var(--ortho-clinic-white);
}

.clinicNavbarCtaMobile {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    border-radius: 5px;
    padding: 12px 24px;
    background-color: var(--ortho-clinic-green);
    color: var(--ortho-clinic-white) !important;
    font-family: "Clash Display";
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.clinicNavbarCtaMobile:hover {
    background-color: #3f4a3a;
    color: var(--ortho-clinic-white) !important;
}

/* @media (max-width: 1200px) {
    .clinicNavbarLinks {
        gap: 20px;
    }

    .clinicNavbarLinks a {
        font-size: 13px;
    }
} */

@media (max-width: 1200px) {
    .clinicNavbarLinks {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        /* flex-direction: column;
        align-items: flex-start; */
        gap: 0;
        background-color: #F2ECE2;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0 20px;
        box-shadow: 0 12px 12px rgba(0, 0, 0, 0.06);
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
    }

    .clinicNavbarLinks a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-size: 15px;
    }

    .clinicNavbarOpen .clinicNavbarLinks {
        max-height: 400px;
        opacity: 1;
        padding: 10px 20px 16px;
    }

    .clinicNavbarToggle {
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    .clinicNavbarCta {
        display: none;
    }

    .clinicNavbarCtaMobile {
        display: inline-flex;
    }
}

@media (max-width: 575px) {
    .clinicNavbarLogoMain {
        font-size: 18px;
    }

    .clinicNavbarLogoSub {
        font-size: 9px;
    }

    .clinicNavbarCta {
        padding: 10px 16px;
        font-size: 12px;
    }

    .clinicNavbarActions {
        gap: 8px;
    }
}

@media (max-width: 350px) {
    .clinicNavbarToggleText {
        display: none;
    }
}