/* ==========================================
   Top Header Styles
   ========================================== */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    height: 80px;
}

.top-header .container-fluid {
    height: 100%;
}

.top-header .row {
    height: 100%;
}

.header-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-logo .logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.header-logo .logo-text {
    font-family: var(--title-font);
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    color: var(--text-dark);
}

.phone-number a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
}

.phone-number a:hover {
    color: var(--ligt-blue);
}

.phone-number__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
}

.callback-btn-header {
    color: white;
    padding: 10px 20px;
    font-weight: 500;
    transform: scale(1);
    transition: color .3s ease, background .3s ease, transform .3s ease;
}

.callback-btn-header:hover {
    transform: scale(1.05);
}

/* ==========================================
   Menu Toggle Button
   ========================================== */
.menu-toggle {
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}
