
/* Custom header styles for Future theme */
:root {
    --main-color: #F76C5E;
    --text-color: #444444;
}
.header-future {
    background: hsl(0, 0%, 100%);
    padding: 0;
    height: 74px;
}
.header-future .navbar {
    padding: 0;
    background: none;
    border: none;
}
.header-future .container {
    max-width: unset;
    padding: 16px 32px;
}
.header-future .navbar-brand {
    padding: 0;
}
.header-future .navbar-nav {
    gap: 33px;
    align-items: center;
}
.header-future .navbar-nav .menu-item a {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
}
.header-future .navbar-nav .menu-item a:hover {
    color: var(--main-color);
}
.header-future .navbar-nav .current-menu-item a, .header-future .navbar-nav .menu-item a:focus, .header-future .navbar-nav .menu-item a:hover {
    color: var(--main-color);
}
.header-future .contact-btn {
    background: var(--main-color);
    color: #fff;
    border-radius: 8px;
    width: 128px;
    height: 35px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    transition: background 0.2s;
    line-height: 20px;
}
.header-future .contact-btn:hover {
    background: #ff3b2e;
    color: #fff;
}

/* Mobile menu overlay */
.header-future .mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 9999;
    display: none;
    flex-direction: column;
    padding: 2rem 1.5rem;
    animation: fadeIn 0.2s;
}
.header-future .mobile-menu-overlay.active {
    display: flex;
}
.header-future .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}
.header-future .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
}
.header-future .mobile-menu-list li {
    margin-bottom: 22px;
}
.header-future .mobile-menu-list .nav-link {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
}
.header-future .mobile-contact-btn {
    background: var(--main-color);
    color: #fff;
    padding: 0.7rem 0;
    font-size: 14px;
    font-weight: 400;
    border: none;
    width: 100%;
    border-radius: 0;
    max-width: 300px;
    margin: 40px auto 0;
}
@media (max-width: 991.98px) {
    .header-future .navbar-collapse {
        display: none !important;
    }
    .header-future .navbar-toggler {
        display: block !important;
        padding: 0;
    }
}
@media (min-width: 992px) {
    .header-future .mobile-menu-overlay {
        display: none !important;
    }
    .header-future .navbar-toggler {
        display: none !important;
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.header-future .navbar-brand svg path {
    fill: #539DF2 !important;
}

