/* ========== TOP BAR (first design inspired) ========== */
.top-bar-modern {
    background: #0f172a;
    color: #f1f5f9;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 2px solid #f59e0b;
}
.top-bar-modern .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.top-left-highlight {
    background: #f59e0b;
    color: #0f172a;
    padding: 5px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
}
.top-right-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.top-right-links a {
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 13px;
}
.top-right-links a i {
    margin-right: 6px;
}
.top-right-links a:hover {
    color: #fbbf24;
}
.franchise-btn {
    background: #f59e0b;
    padding: 5px 16px;
    border-radius: 30px;
    color: #0f172a !important;
    font-weight: 700;
}

/* ========== HEADER (rich + modern) ========== */
.main-header {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon{
width:60px;
height:60px;
border-radius:50%;
overflow:hidden;
background:white;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.logo-icon img{
width:100%;
height:100%;
object-fit:cover;
}
.widget-info-group {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.widget-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.widget-icon {
    background: #eef2ff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #f59e0b;
    font-size: 20px;
}
.widget-content h5 {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}
.widget-content p {
    font-weight: 600;
    font-size: 14px;
    color: #0f172a;
}

/* ========== NAVIGATION ========== */
.nav-wrapper {
    background: #0f172a;
    border-top: 1px solid #1e293b;
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-menu {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.main-menu{
    transition:0.3s ease;
}
.main-menu a {
    color: #e2e8f0;
    text-decoration: none;
    padding: 14px 18px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    display: inline-block;
}
.main-menu a:hover, .main-menu .active {
    color: #fbbf24;
    background: #1e293b;
}
.mobile-menu-icon {
    display: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

    .header-inner{
        flex-direction:column;
        text-align:center;
    }

    .widget-info-group{
        justify-content:center;
    }

    .widget-info{
        justify-content:center;
    }

    .mobile-menu-icon{
        display:block;
        padding:15px 0;
    }

    .main-menu{
        display:none;
    }

    .main-menu.active-mobile{
        display:flex;
        flex-direction:column;
        width:100%;
        background:#0f172a;
        position:absolute;
        left:0;
        top:100%;
    }

    .main-menu.active-mobile a{
        width:100%;
        text-align:left;
        border-top:1px solid rgba(255,255,255,.08);
    }

    .nav-container{
        position:relative;
    }

}

@media(max-width:576px){

    .logo-area h1{
        font-size:22px;
    }

    .top-bar-modern .container{
        flex-direction:column;
        text-align:center;
    }

    .top-right-links{
        justify-content:center;
    }

}