/* ===== HEADER STYLES ===== */

/* Main Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-wrapper {
    width: 100%;
}

.header-wrapper .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    max-width: 180px;
    height: auto;
    display: block;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 800;
    color: #059669;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 14px;
    font-weight: 600;
    color: #F97316;
    margin-top: -2px;
}

/* Desktop Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #0B1220;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.nav-link:hover {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(5, 150, 105, 0.1);
    /* Ensure dropdown can overflow header */
    overflow: visible !important;
    max-height: none !important;
    /* Prevent dropdown from going off-screen */
    max-width: calc(100vw - 40px);
}

/* Adjust dropdown position if it would overflow viewport */
@media (max-width: 1400px) {
    .nav-item:last-of-type .dropdown-menu,
    .nav-item:nth-last-of-type(2) .dropdown-menu {
        left: auto;
        right: 0;
        transform: translateX(0) translateY(-10px);
    }
    
    .nav-item:last-of-type:hover .dropdown-menu,
    .nav-item:nth-last-of-type(2):hover .dropdown-menu {
        transform: translateX(0) translateY(0);
    }
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Courses Dropdown - Tabbed Structure */
.courses-dropdown {
    min-width: min(800px, calc(100vw - 40px));
    max-width: min(1200px, calc(100vw - 40px));
    padding: 0;
    /* Allow scrolling inside dropdown, not header */
    overflow: visible !important;
    max-height: none !important;
}

.courses-wrapper {
    display: flex;
    min-height: 300px;
    max-height: min(450px, 70vh);
    /* Scroll inside wrapper, not header */
    overflow-y: auto;
    overflow-x: hidden;
}

.courses-sidebar {
    width: clamp(120px, 15%, 200px);
    min-width: 120px;
    max-width: 200px;
    background: rgba(5, 150, 105, 0.05);
    border-right: 1px solid rgba(5, 150, 105, 0.1);
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-shrink: 0;
}

.course-tab {
    background: transparent;
    border: none;
    padding: 10px 12px;
    border-radius: 0;
    cursor: pointer;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
}

.course-tab:hover {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
}

.course-tab.active {
    background: white;
    color: #059669;
    border-left-color: #059669;
    font-weight: 700;
}

.courses-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 500px;
}

.courses-content::-webkit-scrollbar {
    width: 6px;
}

.courses-content::-webkit-scrollbar-track {
    background: rgba(5, 150, 105, 0.05);
    border-radius: 10px;
}

.courses-content::-webkit-scrollbar-thumb {
    background: rgba(5, 150, 105, 0.3);
    border-radius: 10px;
}

.courses-content::-webkit-scrollbar-thumb:hover {
    background: rgba(5, 150, 105, 0.5);
}

.course-tab-panel {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.course-tab-panel.active {
    display: grid;
}

.course-tab-panel .dropdown-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #0B1220;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 10px;
    line-height: 1.5;
    background: rgba(5, 150, 105, 0.03);
    border: 1px solid rgba(5, 150, 105, 0.1);
    position: relative;
    overflow: hidden;
}

.course-tab-panel .dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.course-tab-panel .dropdown-link:hover {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    border-color: rgba(5, 150, 105, 0.3);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.15);
}

.course-tab-panel .dropdown-link:hover::before {
    transform: scaleY(1);
}

/* Regular Dropdown (Non-courses) */
.dropdown-menu:not(.courses-dropdown) {
    padding: 8px;
}

.dropdown-menu:not(.courses-dropdown) .dropdown-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #0B1220;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 2px 0;
    position: relative;
}

.dropdown-menu:not(.courses-dropdown) .dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 3px;
    height: 60%;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    border-radius: 0 3px 3px 0;
    transition: transform 0.2s ease;
}

.dropdown-menu:not(.courses-dropdown) .dropdown-link:hover {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    padding-left: 20px;
}

.dropdown-menu:not(.courses-dropdown) .dropdown-link:hover::before {
    transform: translateY(-50%) scaleX(1);
}

/* Dropdown CTA */
.dropdown-cta {
    padding: 16px 20px;
    border-top: 1px solid rgba(5, 150, 105, 0.1);
    background: rgba(5, 150, 105, 0.03);
    border-radius: 0 0 12px 12px;
}

.dropdown-cta-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown-cta-btn:hover {
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    transform: translateY(-2px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 20px;
    color: #0B1220;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(5, 150, 105, 0.15);
    border-color: #059669;
}

.lang-flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.lang-text {
    font-weight: 600;
}

.lang-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-btn[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #0B1220;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.lang-option:hover {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
}

.lang-option .flag-img {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    transform: translateY(-2px);
}

.cta-button i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1003;
    transition: opacity 0.3s ease;
}

/* Mobil menü açıkken hamburger butonunu gizle */
@media (max-width: 1024px) {
    .mobile-menu.active ~ .header-wrapper .mobile-menu-btn,
    body:has(.mobile-menu.active) .mobile-menu-btn {
        display: none !important;
    }
}

/* Hamburger çizgileri - daha spesifik selector */
.mobile-menu-btn .hamburger-line,
.mobile-menu-btn > .hamburger-line,
span.hamburger-line,
.hamburger-line {
    display: block !important;
    width: 24px !important;
    height: 2.5px !important;
    min-height: 2.5px !important;
    max-height: 2.5px !important;
    background: #0B1220 !important;
    background-color: #0B1220 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1005;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.mobile-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mobile-logo-img {
    max-width: 150px;
    height: auto;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.08);
    border: none;
    border-radius: 8px;
    color: #059669;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1006;
}

.mobile-menu-close:hover {
    background: rgba(5, 150, 105, 0.15);
}

/* Hide mobile menu close button on desktop to prevent double X */
@media (min-width: 1025px) {
    .mobile-menu,
    .mobile-menu-close {
        display: none !important;
    }
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.mobile-menu-link {
    display: block;
    padding: 16px 20px;
    color: #0B1220;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
}

/* Mobile dropdown header wrapper */
.mobile-menu-header-item {
    display: flex;
    align-items: center;
    width: 100%;
    background: white;
    transition: background 0.2s ease;
}

.mobile-menu-header-item:hover {
    background: rgba(5, 150, 105, 0.05);
}

/* Mobile dropdown link (sol taraf - sayfaya git) */
.mobile-menu-link-with-dropdown {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #0B1220;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-menu-link-with-dropdown:hover {
    color: #059669;
}

.mobile-menu-link-with-dropdown i {
    width: 18px;
    color: #059669;
    font-size: 16px;
}

/* Mobile dropdown toggle button (sağ taraf - ok butonu) */
.mobile-menu-toggle-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-left: 1px solid rgba(5, 150, 105, 0.1);
    color: #059669;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-toggle-arrow:hover {
    background: rgba(5, 150, 105, 0.1);
}

.mobile-menu-toggle-arrow .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle-arrow[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

/* Eski mobile-menu-toggle backward compatibility */
.mobile-menu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    color: #0B1220;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
}

.mobile-menu-toggle i:first-child {
    width: 18px;
    color: #059669;
    font-size: 16px;
}

.mobile-menu-toggle .fa-chevron-down {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(5, 150, 105, 0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.open {
    max-height: 3000px;
}

.mobile-submenu-category {
    padding: 12px 20px 8px 40px;
}

.mobile-submenu-category-title {
    font-size: 13px;
    font-weight: 700;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px 14px 50px;
    color: #64748B;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-submenu-link:hover {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.mobile-submenu-link i {
    width: 18px;
    color: #059669;
    font-size: 14px;
}

/* Mobile Actions */
.mobile-actions {
    padding: 20px;
    border-top: 1px solid rgba(5, 150, 105, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #1F3A5F 0%, #059669 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    transform: translateY(-2px);
}

.mobile-lang-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.mobile-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 20px;
    color: #0B1220;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-lang-toggle:hover {
    background: rgba(5, 150, 105, 0.15);
    border-color: #059669;
}

.mobile-lang-flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}

.mobile-lang-menu {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    z-index: 1003;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.mobile-lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #0B1220;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.mobile-lang-option:hover {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
}

.mobile-lang-option .flag-img {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .courses-dropdown {
        min-width: 800px;
        max-width: min(1000px, calc(100vw - 40px));
    }
}

@media (max-width: 1400px) {
    .courses-dropdown {
        min-width: 700px;
        max-width: calc(100vw - 60px);
        left: 50%;
        right: auto;
    }
    
    .courses-sidebar {
        width: 160px;
        font-size: 13px;
    }
    
    .course-tab {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .course-tab-panel {
        grid-template-columns: 1fr;
    }
    
    .courses-content {
        padding: 15px;
    }
}

@media (max-width: 1200px) {
    .courses-dropdown {
        min-width: 600px;
        max-width: calc(100vw - 40px);
    }
    
    .courses-sidebar {
        width: 140px;
    }
    
    .courses-wrapper {
        min-height: 350px;
        max-height: 450px;
    }
    
    .dropdown-menu {
        max-width: calc(100vw - 40px);
    }
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Mobilde desktop header'daki dil butonunu gizle */
    .language-selector {
        display: none !important;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-wrapper .container {
        padding: 12px 16px;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 40px !important;
        height: 40px !important;
        padding: 8px !important;
        flex-shrink: 0 !important;
        order: 3 !important;
        margin-left: auto !important;
    }
    
    .mobile-menu-btn .hamburger-line {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: #0B1220 !important;
    }
    
    .logo-section {
        flex-shrink: 0;
        max-width: calc(100% - 100px);
    }
    
    .logo-main {
        font-size: 20px;
    }
    
    .logo-sub {
        font-size: 12px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .cta-button {
        display: none;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header-wrapper .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 40px !important;
        height: 40px !important;
        padding: 6px !important;
        flex-shrink: 0 !important;
        order: 3 !important;
        margin-left: auto !important;
    }
    
    .mobile-menu-btn .hamburger-line {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: #0B1220 !important;
        width: 22px !important;
        height: 2.5px !important;
    }
    
    .logo-section {
        flex-shrink: 0;
        max-width: calc(100% - 100px);
    }
}
