/* Modern Genel Stiller */
:root {
    --primary-color: #0053a6;
    --primary-light: #0066cc;
    --primary-dark: #003d7a;
    --secondary-color: #333;
    --light-color: #fff;
    --dark-color: #000;
    --gray-color: #f5f5f5;
    --text-color: #333;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-info-bar .container {
    padding-left: 0; /* Remove left padding for contact info bar container */
    padding-right: 0; /* Remove right padding for contact info bar container */
    margin-left: 0; /* Remove left margin */
    margin-right: 0; /* Remove right margin */
    max-width: 100%; /* Full width */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* İletişim Bilgileri Alanı Stilleri */
.contact-info-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #001a70; /* Koyu mavi arka plan */
    color: var(--light-color);
    z-index: 1001; /* Header'dan daha üstte */
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    transition: transform 0.3s ease;
}

/* İletişim bilgileri içerik alanı */
.contact-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-left: 50px;
    padding-right: 0;
}

.contact-info-left {
    display: flex;
    align-items: center;
}

.contact-info-link {
    display: flex;
    align-items: center;
    margin-left: 30px;
    color: var(--light-color);
    font-size: 13px;
    transition: var(--transition);
}

.contact-info-link:first-child {
    margin-left: 0;
}

.contact-info-link:hover {
    color: #ffe000; /* Sarı renk */
}

.contact-info-link i {
    margin-right: 40px;
    color: #ffe000; /* Sarı renk */
}

/* Sağ taraftaki bilgi linkleri */
.info-note {
    display: flex;
    align-items: center;
    margin-right: 20px;
    padding-right: 10px;
    justify-content: flex-end;
}

.info-link {
    display: flex;
    align-items: center;
    margin-left: 15px;
    color: var(--light-color);
    font-size: 13px;
    transition: var(--transition);
}

.info-link:first-child {
    margin-left: 0;
}

.info-link:hover {
    color: #ffe000; /* Sarı renk */
}

.info-link i {
    margin-right: 5px;
    color: #ffe000; /* Sarı renk */
}

/* Dropdown Container Styles */
.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    cursor: pointer;
    position: relative;
}

.dropdown-trigger i.fa-chevron-down {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-container:hover .dropdown-trigger i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 2px solid #ffe000;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 8px 15px;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #ffe000;
    color: #001a70;
    padding-left: 20px;
}

@media (max-width: 992px) {
    .contact-info-bar {
        height: 30px;
        line-height: 30px;
        font-size: 12px;
    }
    
    .contact-info-link, .info-link {
        font-size: 12px;
    }
    
    .info-link {
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .contact-info-content {
        justify-content: space-between;
        padding-left: 20px;
        padding-right: 0;
    }
    
    .info-note {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        margin-right: 15px;
        padding-right: 5px;
    }
    
    .info-link {
        font-size: 11px;
        margin-left: 8px;
    }
}

@media (max-width: 576px) {
    .contact-info-bar {
        height: auto;
        line-height: normal;
    }
    
    .contact-info-content {
        flex-direction: column;
        justify-content: center;
        padding: 5px 0 5px 20px;
    }
    
    .contact-info-left {
        margin-bottom: 5px;
    }
    
    .contact-info-link {
        font-size: 11px;
        margin-left: 0;
        margin-bottom: 3px;
    }
    
    .info-note {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-top: 5px;
        margin-right: 10px;
        padding-right: 5px;
    }
    
    .info-link {
        font-size: 10px;
        margin-left: 0;
        margin-right: 8px;
        margin-bottom: 3px;
    }
}

/* Modern Header Stilleri - Yeniden Tasarlandı */
.modern-header {
    width: 100%;
    position: fixed;
    top: 40px; /* Contact info bar yüksekliği */
    left: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
    margin: 0;
    height: 100px; /* Daha da fazla yükseklik */
    background: linear-gradient(135deg, #002290 0%, #001a70 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0 40px;
    background-color: #ffffff;
}

.header-left {
    display: flex;
    align-items: center;
    margin-left: 120px;
}

.brand-logo {
    display: flex;
    align-items: center;
}

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

.logo-image {
    height: 85px;
    width: auto;
    min-width: 200px;
    max-width: none;
    object-fit: contain;
    transition: var(--transition);
}


.header-right {
    display: flex;
    align-items: center;
    margin-right: 100px;
}

/* Action Buttons - Yeni Modern Tasarım */
.action-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
}

.action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 130px;
    height: 40px;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.action-btn i {
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.action-btn span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.action-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Location Button - Konum Butonu */
.location-btn {
    background: linear-gradient(135deg, #ffe000 0%, #ffd700 50%, #ffcc00 100%);
    color: #002290;
    border-color: rgba(255, 255, 255, 0.2);
}

.location-btn i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Contact Button - İletişim Butonu */
.contact-btn {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 50%, #0984e3 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}


.contact-btn i {
    animation: ring 3s infinite;
}

@keyframes ring {
    0%, 90%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
}

/* Location Dropdown Styles */
.location-dropdown {
    position: relative;
    display: inline-block;
}

.location-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 3px solid #ffe000;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 0;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
    overflow: hidden;
}

.location-dropdown:hover .location-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.location-item {
    background: #ffffff;
    padding: 10px;
    margin-bottom: 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-item:last-of-type {
    border-bottom: none;
}

.location-item h4 {
    margin: 0 0 -5px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.location-logo {
    text-align: center;
    margin-bottom: -10px;
}

.location-logo img {
    width: 250px;
    height: 100px;
    object-fit: contain;
}

.location-details {
    display: flex;
    gap: 20px;
    margin-bottom: 2px;
}

.location-address {
    font-weight: 600;
    flex: 1;
}

.location-info {
    flex: 1;
}

.location-phone {
    margin-top: 2px;
    font-weight: 600;
}

.location-content {
    text-align: center;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.location-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    min-width: 120px;
}

.location-time {
    font-size: 12px;
    color: #001a70;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 5px;
}

.location-time strong {
    font-weight: 700;
    color: #001a70;
}

.location-phone {
    font-size: 16px;
    font-weight: 700;
    color: #001a70;
    margin-bottom: 0;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-address {
    font-size: 13px;
    color: #000;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
}

.location-btn-small {
    background: #001a70;
    color: #ffffff;
    border-color: #001a70;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    align-self: flex-start;
    border: 1px solid #001a70;
    margin-bottom: 5px;
    position: relative;
}

.location-btn-small .fa-hand-pointer {
    position: absolute;
    bottom: 2px;
    right: 4px;
    color: #ffffff;
    font-size: 14px;
}

.location-note {
    font-size: 11px;
    color: #999;
    font-style: italic;
    margin-top: 5px;
    line-height: 1.3;
}

.location-footer {
    text-align: center;
    padding: 15px 20px;
    background: #ffffff;
    border-top: 2px solid #ffe000;
}

.contact-btn-dropdown {
    background: #001a70;
    color: #ffe000;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid #001a70;
}

.contact-btn-dropdown:hover {
    background: #ffe000;
    color: #001a70;
    border-color: #ffe000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 224, 0, 0.3);
}

/* Responsive adjustments for location dropdown */
@media (max-width: 768px) {
    .location-dropdown-menu {
        right: -20px;
        min-width: 300px;
    }
    
    .location-item {
        padding: 15px;
        gap: 12px;
    }
    
    .location-logo {
        width: 50px;
        height: 35px;
    }
    
    .location-phone {
        font-size: 14px;
    }
    
    .location-address {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .location-dropdown {
        display: none;
    }
}

/* Responsive Design for Action Buttons */
@media (max-width: 1200px) {
    .action-buttons {
        gap: 12px;
    }
    
    .action-btn {
        padding: 9px 16px;
        font-size: 12px;
        min-width: 110px;
        height: 36px;
    }
    
    .action-btn i {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .action-buttons {
        gap: 10px;
    }
    
    .action-btn {
        padding: 8px 14px;
        font-size: 11px;
        min-width: 95px;
        height: 34px;
    }
    
    .action-btn i {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .action-buttons {
        gap: 8px;
    }
    
    .action-btn {
        padding: 6px 12px;
        font-size: 10px;
        min-width: 80px;
        height: 30px;
        letter-spacing: 0.3px;
    }
    
    .action-btn i {
        font-size: 12px;
    }
    
    .action-btn span {
        display: none;
    }
    
    .action-btn {
        min-width: 35px;
        width: 35px;
        border-radius: 50%;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .action-buttons {
        gap: 6px;
    }
    
    .action-btn {
        min-width: 32px;
        width: 32px;
        height: 32px;
        font-size: 9px;
    }
    
    .action-btn i {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .action-btn {
        min-width: 30px;
        width: 30px;
        height: 30px;
    }
    
    .action-btn i {
        font-size: 10px;
    }
}

/* Navigasyon Bölümü Stilleri - Yeniden Tasarlandı */
.navigation-section {
    position: fixed;
    top: 140px; /* Header'ın yeni yüksekliği (100px) ile uyumlu */
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: #001a70; /* Top-bar ile aynı renk */
    transition: var(--transition);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffe000; /* Sarı çizgi */
    display: block !important;
    visibility: visible !important;
    /* Ana değerler */
    width: 94%;
    height: 55px;
    border-radius: 25px;
}

/* Navigation Section Tamamen Responsive Breakpoint'ler */
@media (max-width: 1920px) {
    .navigation-section {
        width: 92%;
        height: 56px;
        border-radius: 26px;
    }
}

@media (max-width: 1800px) {
    .navigation-section {
        width: 93%;
        height: 55px;
        border-radius: 25px;
    }
}

@media (max-width: 1700px) {
    .navigation-section {
        width: 94%;
        height: 54px;
        border-radius: 24px;
    }
}

@media (max-width: 1600px) {
    .navigation-section {
        width: 95%;
        height: 53px;
        border-radius: 23px;
    }
}

@media (max-width: 1500px) {
    .navigation-section {
        width: 96%;
        height: 52px;
        border-radius: 22px;
    }
}

@media (max-width: 1400px) {
    .navigation-section {
        width: 97%;
        height: 51px;
        border-radius: 21px;
    }
}

@media (max-width: 1300px) {
    .navigation-section {
        width: 98%;
        height: 50px;
        border-radius: 20px;
    }
}

@media (max-width: 1200px) {
    .navigation-section {
        width: 99%;
        height: 49px;
        border-radius: 19px;
        top: 105px;
    }
}

@media (max-width: 1100px) {
    .navigation-section {
        width: 99.5%;
        height: 48px;
        border-radius: 18px;
    }
}

@media (max-width: 1000px) {
    .navigation-section {
        width: 97%;
        height: 47px;
        border-radius: 17px;
    }
}

@media (max-width: 950px) {
    .navigation-section {
        width: 97.5%;
        height: 46px;
        border-radius: 16px;
    }
}

@media (max-width: 900px) {
    .navigation-section {
        width: 98%;
        height: 45px;
        border-radius: 15px;
    }
}

@media (max-width: 850px) {
    .navigation-section {
        width: 98.5%;
        height: 44px;
        border-radius: 14px;
    }
}

@media (max-width: 800px) {
    .navigation-section {
        width: 99%;
        height: 43px;
        border-radius: 13px;
        top: 90px;
    }
}

@media (max-width: 750px) {
    .navigation-section {
        width: 99%;
        height: 42px;
        border-radius: 12px;
    }
}

@media (max-width: 700px) {
    .navigation-section {
        width: 99%;
        height: 41px;
        border-radius: 11px;
    }
}

@media (max-width: 650px) {
    .navigation-section {
        width: 99%;
        height: 40px;
        border-radius: 10px;
    }
}

@media (max-width: 600px) {
    .navigation-section {
        display: none;
    }
}

.navigation-wrapper {
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.navigation-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Scroll durumunda header */
.header-scrolled {
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo scroll'da küçülmesin - Kaldırıldı, zaten aynı boyutta */

.header-scrolled .menu-link {
    padding: 25px 0;
}

/* Header gizleme ve gösterme stilleri */
.header-hidden, .header-visible {
    transform: translateY(0); /* Her zaman görünür */
    transition: transform 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    padding-left: 0; /* Sol boşluğu tamamen kaldır */
    max-width: 100%;
}

/* Logo Stili */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    margin-left: -100px; /* Logo'yu tamamen sol tarafa getir - maksimum */
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    color: var(--light-color);
}

.logo img {
    height: 32px; /* Daha da küçültülmüş boyut */
    width: auto;
    max-width: 150px; /* Normal genişlik */
    margin: 0;
    /* filter kaldırıldı - logo kendi renginde */
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Ana Menü Stili */
.main-menu-container {
    display: flex;
    justify-content: center;
    flex: 1;
    margin: 0;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center; /* Menü öğelerini ortala */
    gap: 1px; /* Öğeler arasında çok az boşluk */
    flex-wrap: nowrap; /* Yazıların alt satıra geçmesini engelle */
}

.menu-item {
    position: relative;
    margin: 0; /* Margin kaldırıldı, space-between ile eşit dağılım */
}

.menu-link {
    color: var(--light-color);
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    /* Ana değerler */
    font-size: 12px;
    padding: 17px 2px;
    line-height: 1.1;
}

.menu-subtitle {
    font-weight: 400;
    opacity: 0.9;
    margin-top: 1px;
    font-size: 10px;
}

/* Menu Link Tamamen Responsive Breakpoint'ler */
@media (max-width: 1920px) {
    .menu-link {
        font-size: 11px;
        padding: 15px 2px;
    }
    .menu-subtitle {
        font-size: 9px;
    }
    .main-menu {
        gap: 1px;
    }
}

@media (max-width: 1800px) {
    .menu-link {
        font-size: 10.5px;
        padding: 14px 2px;
    }
    .menu-subtitle {
        font-size: 8.5px;
    }
    .main-menu {
        gap: 1px;
    }
}

@media (max-width: 1700px) {
    .menu-link {
        font-size: 10px;
        padding: 13px 2px;
    }
    .menu-subtitle {
        font-size: 8px;
    }
    .main-menu {
        gap: 1px;
    }
}

@media (max-width: 1600px) {
    .menu-link {
        font-size: 9.5px;
        padding: 12px 2px;
    }
    .menu-subtitle {
        font-size: 7.5px;
    }
    .main-menu {
        gap: 1px;
    }
}

@media (max-width: 1500px) {
    .menu-link {
        font-size: 9px;
        padding: 11px 1px;
    }
    .menu-subtitle {
        font-size: 7px;
    }
    .main-menu {
        gap: 0px;
    }
}

@media (max-width: 1400px) {
    .menu-link {
        font-size: 8.5px;
        padding: 10px 1px;
    }
    .menu-subtitle {
        font-size: 6.5px;
    }
    .main-menu {
        gap: 0px;
    }
}

@media (max-width: 1300px) {
    .menu-link {
        font-size: 8px;
        padding: 9px 1px;
    }
    .menu-subtitle {
        font-size: 6px;
    }
    .main-menu {
        gap: 0px;
    }
}

@media (max-width: 1200px) {
    .menu-link {
        font-size: 7.5px;
        padding: 8px 1px;
    }
    .menu-subtitle {
        font-size: 5.5px;
    }
    .main-menu {
        gap: 0px;
    }
}

@media (max-width: 1100px) {
    .menu-link {
        font-size: 7px;
        padding: 7px 1px;
    }
    .menu-subtitle {
        font-size: 5px;
    }
    .main-menu {
        gap: 0px;
    }
}

@media (max-width: 1000px) {
    .menu-link {
        font-size: 6.5px;
        padding: 6px 1px;
    }
    .menu-subtitle {
        font-size: 4.5px;
    }
    .main-menu {
        gap: 0px;
    }
}

@media (max-width: 950px) {
    .menu-link {
        font-size: 6px;
        padding: 5px 0px;
    }
    .menu-subtitle {
        font-size: 4px;
    }
    .main-menu {
        gap: 0px;
    }
}

@media (max-width: 900px) {
    .menu-link {
        font-size: 5.5px;
        padding: 4px 0px;
    }
    .menu-subtitle {
        font-size: 3.5px;
    }
    .main-menu {
        gap: 0px;
    }
}

@media (max-width: 850px) {
    .menu-link {
        font-size: 5px;
        padding: 3px 0px;
    }
    .menu-subtitle {
        font-size: 3px;
    }
    .main-menu {
        gap: 0px;
    }
}

@media (max-width: 800px) {
    .menu-link {
        font-size: 4.5px;
        padding: 2px 0px;
    }
    .menu-subtitle {
        font-size: 2.5px;
    }
    .main-menu {
        gap: 0px;
    }
}

@media (max-width: 750px) {
    .menu-link {
        font-size: 4px;
        padding: 1px 0px;
    }
    .menu-subtitle {
        font-size: 2px;
    }
    .main-menu {
        gap: 0px;
    }
}

@media (max-width: 700px) {
    .menu-link {
        font-size: 3.5px;
        padding: 1px 0px;
    }
    .menu-subtitle {
        font-size: 1.5px;
    }
    .main-menu {
        gap: 0px;
    }
}

@media (max-width: 650px) {
    .menu-link {
        font-size: 3px;
        padding: 0px 0px;
    }
    .menu-subtitle {
        font-size: 1px;
    }
    .main-menu {
        gap: 0px;
    }
}

.menu-link i {
    font-size: 12px;
    margin-left: 5px;
    transition: var(--transition);
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-link:hover {
    color: #ffe000; /* Sarı renk */
}

.menu-link:hover i {
    transform: rotate(180deg);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffe000; /* Sarı renk */
    transition: var(--transition);
}

.menu-link:hover::after {
    width: 100%;
}

/* Açılır Menü Stilleri */
.menu-item.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 90vw; /* Use viewport width for responsiveness */
    max-width: 1200px; /* Maximum width */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

/* Akustik Keçe Paneller menüsünün açılır menüsünü sola çek */
.menu-item:nth-child(2) .submenu {
    left: 0px; /* Biraz daha sağa alındı */
}

/* Akustik Kumaş Paneller menüsünün açılır menüsünü sola çek */
.menu-item:nth-child(1) .submenu {
    left: -5px; /* Çok çok çok az daha sağa alındı */
}

/* Akustik Ahşap Paneller menüsünün açılır menüsünü sola çek */
.menu-item:nth-child(3) .submenu {
    left: -100px; /* Biraz daha sağa alındı */
}

/* Ofis Kabinleri menüsünün açılır menüsünü tam altında aç */
.menu-item:nth-child(4) .submenu {
    left: 0; /* Tam altında açılması için 0 */
    min-width: 250px; /* Daha küçük genişlik */
    width: 250px; /* Sabit genişlik */
    max-width: 250px; /* Maksimum genişlik */
}

/* Akustik Kabin menüsünün açılır menüsünü tam altında aç */
.menu-item:nth-child(5) .submenu {
    left: 0; /* Tam altında açılması için 0 */
    min-width: 250px; /* Daha küçük genişlik */
    width: 250px; /* Sabit genişlik */
    max-width: 250px; /* Maksimum genişlik */
}

/* Hacim Akustiği menüsünün açılır menüsünü sola çek */
.menu-item:nth-child(6) .submenu {
    left: -775px; /* Hacim Akustiği artık 6. sırada */
}

/* Responsive düzenlemeler */
@media (max-width: 1400px) {
    .menu-item:nth-child(1) .submenu {
        left: 20px;
    }
    
    .menu-item:nth-child(2) .submenu {
        left: 50px;
    }
    
    .menu-item:nth-child(3) .submenu {
        left: -50px;
    }
    
    .menu-item:nth-child(4) .submenu {
        left: 0; /* Ofis Kabinleri için tam altında */
    }
    
    .menu-item:nth-child(5) .submenu {
        left: 0; /* Akustik Kabin için tam altında */
    }
    
    .menu-item:nth-child(6) .submenu {
        left: -600px; /* Hacim Akustiği için */
    }
}

@media (max-width: 1200px) {
    .menu-item:nth-child(1) .submenu {
        left: 40px;
    }
    
    .menu-item:nth-child(2) .submenu {
        left: 100px;
    }
    
    .menu-item:nth-child(3) .submenu {
        left: 0px;
    }
    
    .menu-item:nth-child(4) .submenu {
        left: 0; /* Ofis Kabinleri için tam altında */
    }
    
    .menu-item:nth-child(5) .submenu {
        left: 0; /* Akustik Kabin için tam altında */
    }
    
    .menu-item:nth-child(6) .submenu {
        left: -450px; /* Hacim Akustiği için */
    }
}

/* Akustik Perdeler menüsünün açılır menüsünü sola çek ve genişliğini düşür */
.menu-item:nth-child(7) .submenu {
    left: -25px; /* Akustik Perdeler artık 7. sırada */
    min-width: 180px; /* Yazı boyutuna göre genişlik daha da düşürüldü */
    width: 180px; /* Sabit genişlik */
    max-width: 180px; /* Maksimum genişlik */
}

/* İnşaat Akustiği menüsünün açılır menüsünü sola çek ve genişliğini düşür */
.menu-item:nth-child(8) .submenu {
    left: -50px; /* İnşaat Akustiği 8. sırada */
    min-width: 200px; /* Yazı boyutuna göre genişlik */
    width: 200px; /* Sabit genişlik */
    max-width: 200px; /* Maksimum genişlik */
}

/* Ses Yalıtım Malzemeleri menüsünün açılır menüsünü sola çek */
.menu-item:nth-child(9) .submenu {
    left: -610px; /* Ses Yalıtım Malzemeleri 9. sırada - çok çok çok az daha sağa alındı */
    min-width: 800px; /* Geniş menü için */
    width: 800px; /* Sabit genişlik */
    max-width: 800px; /* Maksimum genişlik */
}

/* Responsive düzenlemeler için Ses Yalıtım Malzemeleri */
@media (max-width: 1400px) {
    .menu-item:nth-child(9) .submenu {
        left: -460px;
        min-width: 650px;
        width: 650px;
        max-width: 650px;
    }
}

@media (max-width: 1200px) {
    .menu-item:nth-child(9) .submenu {
        left: -360px;
        min-width: 500px;
        width: 500px;
        max-width: 500px;
    }
}

/* Açılır Menü Sütunları */
.submenu-columns {
    display: flex;
    justify-content: space-between;
}

.submenu-column {
    flex: 1;
    padding: 0 15px;
}

.submenu-column {
    border-right: 1px solid #eee;
}

.submenu-column:first-child {
    padding-left: 0;
}

.submenu-column:last-child {
    border-right: none;
    padding-right: 0;
}

.menu-item.has-submenu:hover .submenu,
.menu-item.has-submenu.active .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.submenu {
    pointer-events: none;
}

.menu-item.has-submenu:hover .submenu,
.menu-item.has-submenu.active .submenu {
    pointer-events: auto;
}

.submenu-title {
    color: #002290;
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.submenu-title:hover {
    color: #ffe000;
    transform: translateX(3px);
}

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

.submenu-list li {
    margin-bottom: 8px;
}

.submenu-list li:last-child {
    margin-bottom: 0;
}

.submenu-list a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    display: block;
    padding: 5px 0;
    transition: var(--transition);
}

.submenu-list a:hover {
    color: #ffe000; /* Sarı renk */
    padding-left: 5px;
}

/* Header Butonları */
.header-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    margin-right: 0;
    width: 100%;
}

.header-buttons .contact-button {
    background-color: #ffe000; /* Sarı arka plan */
    border: 1px solid #ffe000;
    color: #002290; /* Mavi yazı */
    font-size: 12px;
    font-weight: 500;
    padding: 6px 3px;
    border-radius: 12px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 28px;
    white-space: nowrap;
}

.header-buttons .contact-button i {
    margin-right: 2px !important;
    font-size: 12px;
}

.contact-button {
    background-color: #ffe000; /* Sarı arka plan */
    border: 1px solid #ffe000;
    color: #002290; /* Mavi yazı */
    font-size: 11px;
    font-weight: 400;
    padding: 5px 2px;
    border-radius: 12px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 26px;
    white-space: nowrap;
}

.contact-button i {
    margin-right: 2px !important;
}

.contact-button:hover {
    background-color: #fff;
    border-color: #fff;
    color: #002290;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    margin-left: 15px;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.menu-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--light-color);
    display: inline-block;
    transition: var(--transition);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

/* Modern Yandan Açılan Menü */
.side-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--light-color);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
    right: 0;
}

.side-menu-inner {
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.side-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.side-menu-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.side-menu-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.side-menu-logo {
    margin-bottom: 15px;
}

.side-menu-logo img {
    height: 75px; /* Yarı boyutuna düşürüldü (150px / 2) */
}

.side-menu-header h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.side-menu-header p {
    color: #666;
    font-size: 14px;
}

.side-menu-nav {
    flex: 1;
}

.side-menu-list {
    list-style: none;
}

.side-menu-item {
    margin-bottom: 15px;
}

.side-menu-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.side-menu-link:hover {
    background-color: rgba(255, 224, 0, 0.1); /* Sarı renk arka plan */
    color: #ffe000; /* Sarı renk yazı */
}

.side-menu-icon {
    width: 24px;
    margin-right: 15px;
    color: var(--primary-color);
}

.side-menu-text {
    flex: 1;
}

.side-menu-arrow {
    font-size: 12px;
    transition: var(--transition);
}

.side-menu-link:hover .side-menu-arrow i {
    transform: rotate(180deg);
}

/* Yan Menü Açılır Menü Stilleri */
.side-menu-item.has-side-submenu {
    position: relative;
}

.side-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 0; /* Soldan başlaması için padding-left kaldırıldı */
    margin-top: 5px;
}

.side-menu-item.has-side-submenu.active .side-submenu {
    max-height: 500px; /* Yeterince büyük bir değer */
}

.side-submenu-title {
    color: #002290;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 0;
    margin-bottom: 5px;
}

.side-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-submenu-list li {
    margin-bottom: 8px;
}

.side-submenu-list li:last-child {
    margin-bottom: 0;
}

.side-submenu-list a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    display: block;
    padding: 5px 0;
    transition: var(--transition);
}

.side-submenu-list a:hover {
    color: #ffe000; /* Sarı renk */
    padding-left: 5px;
}

.side-menu-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.side-menu-contact {
    margin-bottom: 30px;
}

.side-menu-contact h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.side-menu-contact-list {
    list-style: none;
}

.side-menu-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
}

.side-menu-contact-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.side-menu-social {
    display: flex;
    justify-content: center;
}

.side-menu-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    margin: 0 8px;
    color: var(--text-color);
    transition: var(--transition);
}

.side-menu-social .social-icon:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
    backdrop-filter: blur(3px);
    transition: var(--transition);
}

.overlay.active {
    display: block;
}

/* Navigation Spacer - Prevents content overlap */
.navigation-spacer {
    height: 80px; /* Adjust this value based on your navigation height */
    width: 100%;
    display: block;
    clear: both;
}

/* Responsive adjustments for navigation spacer */
@media (max-width: 1200px) {
    .navigation-spacer {
        height: 70px;
    }
}

@media (max-width: 800px) {
    .navigation-spacer {
        height: 60px;
    }
}

@media (max-width: 600px) {
    .navigation-spacer {
        display: none; /* Hide spacer on mobile since navigation is hidden */
    }
}

/* Ana İçerik */
.main-content {
    padding-top: 155px; /* Contact-info-bar + Header + Navigation section yüksekliği */
    min-height: 100vh;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .header-container {
        height: 75px;
    }
    
    .contact-button {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    /* Logo boyutu sabit kalıyor */
    .logo img {
        height: 32px !important;
    }
}

@media (max-width: 600px) {
    .header-container {
        height: 65px;
        top: 30px; /* Contact info bar responsive yüksekliği */
    }
    
    .header-content {
        padding: 0 20px;
    }
    
    .main-menu-container {
        display: none;
    }
    
    .navigation-section {
        display: none; /* Mobilde navigasyon bölümünü gizle */
    }
    
    /* Logo boyutu sabit kalıyor */
    .logo img {
        height: 32px !important;
    }
    
    .main-content {
        padding-top: 95px;
    }
    
    .contact-button {
        font-size: 12px;
        padding: 6px 12px;
        height: 32px;
    }
    
    .contact-button[style*="margin-right"] {
        display: none; /* Konum butonu mobilde gizle */
    }
    
    .mobile-menu-toggle {
        font-size: 22px;
        width: 35px;
        height: 35px;
        margin-left: 10px;
        color: #fff;
        display: flex !important;
    }
}

@media (max-width: 992px) {
    .header-container {
        height: 65px;
        top: 30px;
    }
    
    .header-content {
        padding: 0 20px;
    }
    
    .contact-button {
        font-size: 11px;
        padding: 5px 10px;
        height: 30px;
    }
    
    .mobile-menu-toggle {
        font-size: 20px;
        width: 32px;
        height: 32px;
        margin-left: 8px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 60px;
        top: 30px;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .side-menu {
        width: 85%;
        max-width: 320px;
        right: -85%;
    }
    
    .side-menu.active {
        right: 0;
    }
    
    .side-menu-inner {
        padding: 50px 25px;
    }
    
    .contact-button {
        font-size: 11px;
        padding: 5px 10px;
        height: 30px;
        border-radius: 20px;
    }
    
    .mobile-menu-toggle {
        font-size: 20px;
        width: 32px;
        height: 32px;
        margin-left: 8px;
        color: #fff;
    }
    
    /* Logo boyutu sabit kalıyor */
    .logo img {
        height: 32px !important;
    }
    
    .main-content {
        padding-top: 90px;
    }
}

@media (max-width: 576px) {
    .contact-info-bar {
        position: relative;
        top: 0;
        height: auto;
        z-index: 999;
    }
    
    .header-container {
        height: 55px;
        top: 0;
        position: fixed;
        z-index: 1000;
    }
    
    .header-content {
        padding: 0 12px;
    }
    
    /* Logo boyutu sabit kalıyor */
    .logo img {
        height: 32px !important;
    }
    
    .side-menu {
        width: 90%;
        max-width: 280px;
        right: -90%;
    }
    
    .side-menu-inner {
        padding: 40px 20px;
    }
    
    .side-menu-logo img {
        height: 60px;
    }
    
    .main-content {
        padding-top: 55px;
    }
    
    .contact-button {
        font-size: 10px;
        padding: 4px 8px;
        height: 28px;
        font-weight: 500;
    }
    
    .mobile-menu-toggle {
        font-size: 18px;
        width: 30px;
        height: 30px;
        margin-left: 5px;
        color: #fff;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 50px;
    }
    
    .header-content {
        padding: 0 10px;
    }
    
    .contact-button {
        font-size: 9px;
        padding: 3px 6px;
        height: 26px;
        letter-spacing: -0.5px;
    }
    
    .contact-button i {
        font-size: 9px;
        margin-right: 3px !important;
    }
    
    .mobile-menu-toggle {
        font-size: 16px;
        width: 28px;
        height: 28px;
        margin-left: 4px;
        color: #fff;
    }
    
    /* Logo boyutu sabit kalıyor */
    .logo img {
        height: 40px !important;
    }
    
    .side-menu {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 400px) {
    .header-container {
        height: 48px;
    }
    
    .header-content {
        padding: 0 8px;
    }
    
    /* Logo boyutu sabit kalıyor */
    .logo img {
        height: 40px !important;
    }
    
    .contact-button {
        font-size: 8px;
        padding: 2px 5px;
        height: 24px;
    }
    
    .contact-button i {
        display: none; /* İkonları gizle */
    }
    
    .mobile-menu-toggle {
        font-size: 15px;
        width: 26px;
        height: 26px;
        margin-left: 3px;
        color: #fff;
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 350px) {
    .header-container {
        height: 45px;
    }
    
    /* Logo boyutu sabit kalıyor */
    .logo img {
        height: 40px !important;
    }
    
    .contact-button {
        font-size: 7px;
        padding: 2px 4px;
        height: 22px;
    }
    
    .mobile-menu-toggle {
        font-size: 14px;
        width: 24px;
        height: 24px;
    }
}
