/* ===============================

   HEADER BASE

================================ */

.site-header {

    width: 100%;

    background: #ffffff;

    position: relative;

    z-index: 999;

}



.site-header a {

    text-decoration: none;

    color: #222;

}



.site-header img {

    max-width: 100%;

    height: auto;

}



/* ===============================

   TOP BAR

================================ */

.top-header {

    /* background: #0b2c3d; */

    /* color: #ffffff; */

    font-size: 14px;

    padding: 8px 0;

}



.top-header .contact-info span {

    margin-right: 20px;

}



.top-header i {

    margin-right: 6px;

    color: #f9b233;

}



.top-social-icons ul {

    display: flex;

    gap: 12px;

    margin: 0;

    padding: 0;

    list-style: none;

}



.top-social-icons a {

    color: #ffffff;

    font-size: 14px;

}



.top-social-icons a:hover {

    color: #f9b233;

}

.contact-info a {

    color: #fff;

}

/* ===============================

   MAIN HEADER

================================ */

.main-header {

    padding: 18px 0;

}



.site-branding {

    display: flex;

    align-items: center;

}



.site-branding img {

    max-height: 80px;

}

.header-right {

    display: flex;

    align-items: center;

    justify-content: center;

}

.menu ul {

    display: flex;

    align-items: center;

    list-style: none;

    padding: 0px;

}



.menu ul li {

    padding-right: 10px;

}

/* ===============================

   NAVIGATION

================================ */

.main-navigation ul {

    list-style: none;

    margin: 0;

    padding: 0;

    display: flex;

    gap: 25px;

}



.main-navigation li {

    position: relative;

}



.main-navigation a {

    font-weight: 500;

    font-size: 15px;

    padding: 5px 0;

}



.main-navigation a:hover {

    color: #f9b233;

}



/* ===============================

   SEARCH POPUP

================================ */
#search-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99999;
}

#search-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-inner {
    background: #fff;
    padding: 10px;
    max-width: 760px;
    width: 100%;
    border-radius: 10px;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

#search-popup.active .popup-inner {
    transform: translateY(0);
}

#close-popup {
    position: absolute;
    top: 12px;
    right: 15px;
    cursor: pointer;
    font-size: 22px;
}


/* ===============================

   APPOINTMENT BUTTON

================================ */

.appointment-btn {

    margin-left: 15px;

    display: flex;

    align-items: center;

    justify-content: end;

}



.appointment-btn .login-btn {

    background: #f9b233;

    color: #fff;

    padding: 10px 8px;

    font-size: 14px;

    font-weight: 600;

    border-radius: 3px;

}



.appointment-btn i {

    margin-left: 0px;

    color: #fff;

}



/* ===============================

   STICKY HEADER

================================ */

.site-header.is-sticky {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    box-shadow: 0 2px 15px rgba(0,0,0,0.1);

    animation: slideDown 0.3s ease;

}



@keyframes slideDown {

    from {

        transform: translateY(-100%);

    }

    to {

        transform: translateY(0);

    }

}



/* ===============================

   HEADER STYLE 1

================================ */

.header-style-1 .main-header {

    display: flex;

    align-items: center;

}



.header-style-1 .site-branding {

    justify-content: flex-start;

}



.header-style-1 .header-right {

    margin-left: auto;

    display: flex;

    align-items: center;

}



/* ===============================

   HEADER STYLE 2

================================ */

.header-style-2 .main-header {

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

}



.header-style-2 .site-branding {

    justify-content: center;

}



.header-style-2 .nav-left {

    justify-content: flex-start;

}



.header-style-2 .nav-right {

    justify-content: flex-end;

}



/* ===============================

   HEADER STYLE 3

================================ */

.header-style-3 .main-header {

    text-align: center;

}



.header-style-3 .main-navigation {

    margin-top: 15px;

    justify-content: center;

}

.header-style-3 ul#primary-menu {

    justify-content: center;

}

.header-style-3 .search-appointment {

    display: flex;

    align-items: center;

    justify-content: space-between;

}

/* ===============================

   HEADER STYLE 4

================================ */

.header-style-4 {

    padding: 10px 0;

}



/* .header-style-4 .main-navigation {

    display: none;

} */



.header-style-4 .appointment-btn {

    margin-left: auto;

}



/* ===============================

   SUBHEADER

================================ */

.subheader {

    padding: 80px 0;

    background-size: cover;

    background-position: center;

    color: #ffffff;

    position: relative;

}



.subheader::before {

    content: '';

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,0.6);

}



.subheader .container {

    position: relative;

}



.subheader h1 {

    font-size: 36px;

    margin-bottom: 10px;

}

