/* === NAVIGATION STYLES === */
/* Main Navigation Bar in header_bottom */
.custom_nav-container {
    padding: 0;
}

.navbar-brand img {
    height: 50px; /* A bit larger for better visibility */
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-collapse {
    justify-content: flex-end;
}

.navbar-nav .nav-link {
    padding: 10px 20px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.9rem; /* Yazı boyutu küçültüldü */
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(240, 123, 38, 0.1);
    color: #f07b26;
}

/* Active link style */
.navbar-nav .nav-item.active > .nav-link {
    color: #f07b26;
    font-weight: 700;
}

.navbar-nav .nav-item.active > .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background-color: #f07b26;
}


/* Dropdown Menu */
.dropdown-menu {
    background-color: #333; /* Darker background for dropdown */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    padding: 10px 0;
}

.dropdown-item {
    color: #ddd;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f07b26;
    color: #ffffff;
}

/* Special Buttons in Nav */
.quote_btn {
    background-color: #f07b26;
    color: #ffffff !important;
    border-radius: 50px;
    padding: 8px 25px !important;
    transition: all 0.3s ease;
}

.quote_btn:hover {
    background-color: #bc570d;
    color: #ffffff !important;
    transform: scale(1.05);
}

.nav_search-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.nav_search-btn:hover {
    background: #f07b26;
    border-color: #f07b26;
}

/* Mobile Toggler */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.5) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}