/**
 * Şık Menü Tasarımı - Modern Renkler ve Tipografi
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===============================================
   Şık Header - Modern Renkler
   =============================================== */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Mobil Üst Bar - Siyah (WhatsApp Bilgileri) */
.modern-mobile-top-bar {
    display: none;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modern-mobile-top-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
}

.modern-mobile-top-text {
    flex: 1;
    text-align: center;
    min-width: 0;
    max-width: 100%;
}

.modern-mobile-top-line1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.modern-mobile-top-line2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: #06D6A0;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    display: inline-block;
    background: rgba(6, 214, 160, 0.25);
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    border: 2px solid rgba(6, 214, 160, 0.6);
    box-shadow: 0 3px 10px rgba(6, 214, 160, 0.4);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.2);
}

.modern-mobile-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.modern-mobile-whatsapp-icon:hover {
    opacity: 0.7;
}

.modern-mobile-whatsapp-icon svg {
    width: 20px;
    height: 20px;
}

/* Mobil Alt Bar - Sabit Navigation */
.modern-mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    z-index: 999;
    padding: 0.5rem 0;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
}

.modern-mobile-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0.5rem;
    padding: 0 0.5rem;
    max-width: 100%;
}

.modern-mobile-bottom-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: #333333;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    min-width: 0;
    border-radius: 8px;
    position: relative;
}

.modern-mobile-bottom-btn svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
}

.modern-mobile-bottom-btn span {
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.modern-mobile-bottom-btn:hover,
.modern-mobile-bottom-btn:active {
    color: #06D6A0;
    background: rgba(6, 214, 160, 0.08);
    transform: translateY(-2px);
}

.modern-mobile-bottom-btn:hover svg,
.modern-mobile-bottom-btn:active svg {
    transform: scale(1.1);
}

/* Ara Butonu - Özel Renk */
.modern-mobile-bottom-btn:first-child {
    color: #06D6A0;
}

.modern-mobile-bottom-btn:first-child:hover,
.modern-mobile-bottom-btn:first-child:active {
    background: rgba(6, 214, 160, 0.12);
}

/* Menü Butonu - Özel Stil */
.modern-mobile-bottom-menu-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
}

.modern-mobile-bottom-menu-btn span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.modern-header-inner {
    width: 100%;
    padding: 0;
    margin: 0;
}

.modern-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 3rem;
    position: relative;
    min-height: 55px;
}

/* Logo - Sol */
.modern-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.modern-logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: opacity 0.2s ease;
}

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

.modern-logo-img {
    max-height: 65px;
    height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
    vertical-align: middle;
}

.modern-logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.2;
    transition: all 0.2s ease;
    text-transform: lowercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modern-logo-text:hover {
    color: #06D6A0;
    opacity: 1;
}

/* Navigation - Orta */
.modern-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modern-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-menu-item {
    position: relative;
}

.modern-menu-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
    position: relative;
    letter-spacing: -0.01em;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modern-menu-link:hover {
    color: #06D6A0;
    background: rgba(6, 214, 160, 0.08);
    transform: translateY(-1px);
}

.modern-arrow {
    font-size: 0.5rem;
    opacity: 0.6;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.375rem;
    color: #666666;
    font-weight: 600;
}

.modern-menu-item-has-children:hover .modern-arrow {
    transform: rotate(180deg);
    color: #06D6A0;
    opacity: 1;
}

/* Submenu - Şık */
.modern-submenu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.modern-menu-item-has-children:hover .modern-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.modern-submenu-item a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    letter-spacing: -0.01em;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modern-submenu-item a:hover {
    background: linear-gradient(90deg, rgba(6, 214, 160, 0.1) 0%, transparent 100%);
    color: #06D6A0;
    padding-left: 1.75rem;
    font-weight: 600;
}

/* CTA Button - Sağ - Şık ve Modern */
.modern-cta {
    flex-shrink: 0;
}

.modern-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: #FFFFFF;
    color: #06D6A0;
    border: 1px solid #06D6A0;
    border-radius: 6px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(6, 214, 160, 0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modern-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 214, 160, 0.1), transparent);
    transition: left 0.5s ease;
}

.modern-cta-btn:hover {
    background: #06D6A0;
    color: #FFFFFF;
    border-color: #06D6A0;
    box-shadow: 0 4px 16px rgba(6, 214, 160, 0.35);
    transform: translateY(-1px);
}

.modern-cta-btn:hover::before {
    left: 100%;
}

/* Mobile Toggle */
.modern-mobile-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.modern-mobile-btn span {
    width: 20px;
    height: 2px;
    background: #000000;
    transition: all 0.2s ease;
    display: block;
}

.modern-mobile-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.modern-mobile-btn.active span:nth-child(2) {
    opacity: 0;
}

.modern-mobile-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Body Padding */
body .page {
    padding-top: 50px;
    padding-bottom: 0;
}

/* Mobil Alt Bar için Body Padding */
@media (max-width: 991px) {
    body .page {
        padding-bottom: 70px;
        padding-top: 0;
    }
    
    /* Üst bar + header yüksekliği kadar padding - sıfır */
    body .page:has(.modern-mobile-top-bar) {
        padding-top: 0 !important;
    }
}

/* Mobile Menu Overlay - Premium */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    animation: fadeInOverlay 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

@keyframes slideInMenu {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive - Premium Mobile Menu */
@media (max-width: 991px) {
    body .page {
        padding-top: 0;
        padding-bottom: 70px;
    }
    
    /* Slider için özel padding - sıfır */
    body .page:has(.hero-slider-section) {
        padding-top: 0 !important;
    }

    /* Mobil Üst Bar - Göster */
    .modern-mobile-top-bar {
        display: block;
    }

    .modern-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        z-index: 1000;
        border-bottom: none !important;
    }

    .modern-header-inner {
        margin-top: 0;
        border-bottom: none !important;
    }

    .modern-header-content {
        border-bottom: none !important;
    }

    /* Üst bar yüksekliği kadar body padding */
    body .page {
        padding-top: 0;
    }

    /* Mobilde Slider - Menü ile Arası Boşluk Yok */
    .hero-slider-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Slider içeriğine küçük padding ekle */
    .hero-slider-section > div {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    /* Body padding'i sıfırla - slider negatif margin ile yukarı çekilecek */
    body .page:has(.modern-mobile-top-bar) {
        padding-top: 0 !important;
    }
    
    /* Slider'ı header'ın tam altına yapıştır - body padding yok */
    body .page:has(.hero-slider-section) {
        padding-top: 0 !important;
    }
    
    /* Slider'ın tüm padding ve margin'lerini sıfırla - inline style'ı override et */
    section.hero-slider-section {
        padding: 0 20px 40px 20px !important;
        margin: 0 !important;
        margin-top: 0 !important;
        padding-top: 7rem !important;
    }
    
    /* Slider içeriğine padding ekle */
    .hero-slider-section > div {
        padding: 1.5rem 0 !important;
    }
    
    /* Header yüksekliğini hesapla - üst bar + header - body padding sıfır */
    body .page:has(.modern-mobile-top-bar):has(.hero-slider-section) {
        padding-top: 0 !important;
    }

    /* Mobil Alt Bar - Göster */
    .modern-mobile-bottom-bar {
        display: block;
    }

    .modern-header-content {
        flex-wrap: wrap;
        padding: 1rem 0;
        gap: 0;
        position: relative;
        justify-content: center;
    }

    /* Logo - Mobil - Tam Ortada */
    .modern-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        flex: none;
    }

    .modern-logo-link {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modern-logo-img {
        max-height: 58px;
        height: 58px;
    }

    /* Mobile Toggle Button - Gizle */
    .modern-mobile-btn {
        display: none !important;
    }

    /* CTA Button - Mobil - Gizle */
    .modern-cta {
        display: none !important;
    }

    /* Navigation - Premium Mobile Menu - Slide-in - Ultra Modern */
    .modern-nav {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        background: #FFFFFF;
        margin-top: 0;
        border-top: none !important;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
        position: relative;
        border-radius: 0;
    }

    .modern-nav.active {
        max-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        animation: slideDownMenu 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideDownMenu {
        from {
            opacity: 0;
            transform: translateY(-20px);
            filter: blur(4px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }
    }

    .modern-menu {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
        padding: 1.5rem 1rem;
        margin: 0;
        background: #FFFFFF;
    }

    .modern-menu-item {
        width: 100%;
        border: none;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        background: #FAFAFA;
        margin-bottom: 0.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .modern-menu-item:last-child {
        margin-bottom: 0;
    }

    .modern-menu-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(90deg, #06D6A0 0%, rgba(6, 214, 160, 0.2) 100%);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 0;
        border-radius: 12px 0 0 12px;
    }

    .modern-menu-item:hover,
    .modern-menu-item.active {
        background: linear-gradient(90deg, rgba(6, 214, 160, 0.08) 0%, #FAFAFA 100%);
        box-shadow: 0 4px 16px rgba(6, 214, 160, 0.15);
        transform: translateX(4px);
    }

    .modern-menu-item:hover::before,
    .modern-menu-item.active::before {
        width: 6px;
    }

    .modern-menu-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 1.75rem;
        font-size: 1rem;
        font-weight: 700;
        color: #1A1A1A;
        background: transparent;
        border-radius: 12px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        letter-spacing: -0.02em;
        z-index: 1;
    }

    .modern-menu-link::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        width: 0;
        background: linear-gradient(135deg, rgba(6, 214, 160, 0.1) 0%, rgba(6, 214, 160, 0.05) 100%);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
        border-radius: 12px;
    }

    .modern-menu-link:hover,
    .modern-menu-link:active {
        color: #06D6A0;
        padding-left: 2rem;
        transform: translateX(6px);
    }

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

    .modern-menu-link span,
    .modern-menu-link .modern-arrow {
        position: relative;
        z-index: 1;
        transition: all 0.4s ease;
    }

    .modern-arrow {
        font-size: 0.75rem;
        opacity: 0.7;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        margin-left: auto;
        color: #666666;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: rgba(6, 214, 160, 0.1);
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(6, 214, 160, 0.15);
    }

    .modern-menu-item-has-children:hover .modern-arrow {
        background: rgba(6, 214, 160, 0.15);
        color: #06D6A0;
        transform: scale(1.1);
    }

    .modern-menu-item-has-children.active .modern-arrow {
        transform: rotate(180deg) scale(1.15);
        color: #FFFFFF;
        background: linear-gradient(135deg, #06D6A0 0%, #05B88A 100%);
        opacity: 1;
        box-shadow: 0 4px 12px rgba(6, 214, 160, 0.4);
    }

    /* Submenu - Premium Mobile - Slide Down - Ultra Modern */
    .modern-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        margin-top: 0.5rem;
        padding: 0;
        display: none;
        background: linear-gradient(180deg, rgba(6, 214, 160, 0.05) 0%, rgba(6, 214, 160, 0.02) 100%);
        box-shadow: inset 0 2px 12px rgba(6, 214, 160, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0 0 12px 12px;
    }

    .modern-menu-item-has-children.active .modern-submenu {
        display: block;
        max-height: 1000px;
        padding: 1rem 0;
        animation: slideDownSubmenu 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideDownSubmenu {
        from {
            opacity: 0;
            transform: translateY(-15px);
            filter: blur(2px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }
    }

    .modern-submenu-item {
        width: 100%;
        position: relative;
        margin-bottom: 0.25rem;
    }

    .modern-submenu-item:last-child {
        margin-bottom: 0;
    }

    .modern-submenu-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(90deg, #06D6A0 0%, rgba(6, 214, 160, 0.15) 100%);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 0;
        border-radius: 0 0 0 8px;
    }

    .modern-submenu-item:hover::before,
    .modern-submenu-item:active::before {
        width: 4px;
    }

    .modern-submenu-item a {
        display: flex;
        align-items: center;
        padding: 1.125rem 1.75rem 1.125rem 3.5rem;
        font-size: 0.9375rem;
        font-weight: 600;
        color: #4A4A4A;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border-bottom: 1px solid rgba(6, 214, 160, 0.08);
        letter-spacing: -0.01em;
        z-index: 1;
        background: rgba(255, 255, 255, 0.5);
        margin: 0 0.75rem;
        border-radius: 10px;
    }

    .modern-submenu-item:last-child a {
        border-bottom: none;
    }

    .modern-submenu-item a::before {
        content: '→';
        position: absolute;
        left: 2.5rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        color: #06D6A0;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 800;
    }

    .modern-submenu-item a::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        width: 0;
        background: linear-gradient(135deg, rgba(6, 214, 160, 0.12) 0%, rgba(6, 214, 160, 0.06) 100%);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
        border-radius: 10px;
    }

    .modern-submenu-item a:hover,
    .modern-submenu-item a:active {
        color: #06D6A0;
        padding-left: 4rem;
        font-weight: 700;
        transform: translateX(6px);
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 2px 12px rgba(6, 214, 160, 0.15);
    }

    .modern-submenu-item a:hover::before,
    .modern-submenu-item a:active::before {
        opacity: 1;
        left: 2.25rem;
        transform: translateY(-50%) translateX(2px);
    }

    .modern-submenu-item a:hover::after,
    .modern-submenu-item a:active::after {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .modern-header-content {
        padding: 0.875rem 0;
    }

    .modern-logo-img {
        max-height: 50px;
        height: 50px;
    }

    .modern-cta {
        display: none;
    }

    .modern-menu {
        padding: 1.25rem 0.875rem;
        gap: 0.375rem;
    }

    .modern-menu-item {
        margin-bottom: 0.375rem;
        border-radius: 10px;
    }

    .modern-menu-link {
        padding: 1.25rem 1.5rem;
        font-size: 0.9375rem;
    }

    .modern-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.6875rem;
    }

    .modern-submenu {
        margin-top: 0.375rem;
    }

    .modern-submenu-item a {
        padding: 1rem 1.5rem 1rem 3rem;
        font-size: 0.875rem;
        margin: 0 0.5rem;
        border-radius: 8px;
    }

    .modern-submenu-item a:hover,
    .modern-submenu-item a:active {
        padding-left: 3.5rem;
    }

    /* Mobil Üst Bar - Küçük Ekran */
    .modern-mobile-top-bar {
        padding: 0.75rem 0;
    }

    .modern-mobile-top-content {
        padding: 0 0.875rem;
        gap: 0.875rem;
    }

    .modern-mobile-top-line1 {
        font-size: 0.8125rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .modern-mobile-top-line2 {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        font-weight: 800;
        border-width: 2px;
        letter-spacing: 0.04em;
    }

    .modern-mobile-whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .modern-mobile-whatsapp-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Mobil Alt Bar - Küçük Ekran */
    .modern-mobile-bottom-bar {
        padding: 0.5rem 0;
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    }

    .modern-mobile-bottom-content {
        gap: 0.25rem;
        padding: 0 0.25rem;
    }

    .modern-mobile-bottom-btn {
        padding: 0.5rem 0.5rem;
        gap: 0.25rem;
    }

    .modern-mobile-bottom-btn svg {
        width: 20px;
        height: 20px;
    }

    .modern-mobile-bottom-btn span {
        font-size: 0.625rem;
    }

    .modern-mobile-bottom-menu-btn {
        padding: 0.5rem 0.75rem;
        gap: 0.25rem;
    }

    .modern-mobile-bottom-menu-btn span {
        font-size: 0.6875rem;
    }
}

@media (max-width: 480px) {
    .modern-header-content {
        padding: 0.75rem 0;
    }

    .modern-logo-img {
        max-height: 48px;
        height: 48px;
    }

    .modern-mobile-btn {
        padding: 0.625rem;
    }

    .modern-mobile-btn span {
        width: 22px;
        height: 2px;
    }

    .modern-menu {
        padding: 1rem 0.75rem;
        gap: 0.25rem;
    }

    .modern-menu-item {
        margin-bottom: 0.25rem;
        border-radius: 10px;
    }

    .modern-menu-link {
        padding: 1.125rem 1.25rem;
        font-size: 0.875rem;
    }

    .modern-arrow {
        width: 26px;
        height: 26px;
        font-size: 0.625rem;
    }

    .modern-submenu {
        margin-top: 0.25rem;
        padding: 0.75rem 0;
    }

    .modern-submenu-item a {
        padding: 0.875rem 1.25rem 0.875rem 2.75rem;
        font-size: 0.8125rem;
        margin: 0 0.5rem;
        border-radius: 8px;
    }

    .modern-submenu-item a::before {
        left: 2.25rem;
        font-size: 0.875rem;
    }

    .modern-submenu-item a:hover,
    .modern-submenu-item a:active {
        padding-left: 3.25rem;
    }

    .modern-submenu-item a:hover::before,
    .modern-submenu-item a:active::before {
        left: 2rem;
    }

    /* Mobil Üst Bar - Çok Küçük Ekran */
    .modern-mobile-top-bar {
        padding: 0.625rem 0;
    }

    .modern-mobile-top-content {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }

    .modern-mobile-top-line1 {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
        line-height: 1.5;
        font-weight: 600;
    }

    .modern-mobile-top-line2 {
        font-size: 0.9375rem;
        padding: 0.5rem 0.875rem;
        font-weight: 800;
        border-width: 2px;
        letter-spacing: 0.03em;
    }

    .modern-mobile-whatsapp-icon {
        width: 24px;
        height: 24px;
    }

    .modern-mobile-whatsapp-icon svg {
        width: 16px;
        height: 16px;
    }

    /* Mobil Alt Bar - Çok Küçük Ekran */
    .modern-mobile-bottom-content {
        gap: 0.125rem;
        padding: 0 0.125rem;
    }

    .modern-mobile-bottom-btn {
        padding: 0.375rem 0.375rem;
        gap: 0.125rem;
    }

    .modern-mobile-bottom-btn svg {
        width: 18px;
        height: 18px;
    }

    .modern-mobile-bottom-btn span {
        font-size: 0.5625rem;
    }

    .modern-mobile-bottom-menu-btn {
        padding: 0.375rem 0.5rem;
        gap: 0.25rem;
    }

    .modern-mobile-bottom-menu-btn span {
        font-size: 0.625rem;
    }
}

/* Mobil Sağdan Açılan Menü - Premium Animasyon */
.modern-mobile-side-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0s linear 0.4s, opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-mobile-side-menu.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transition: visibility 0s linear 0s, opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-mobile-side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-mobile-side-menu.active .modern-mobile-side-menu-overlay {
    opacity: 1;
}

.modern-mobile-side-menu-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
}

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

/* Body scroll engelleme - menü açıkken */
body.side-menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

.modern-mobile-side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.modern-mobile-side-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 12px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.modern-mobile-side-menu-close:hover {
    background: linear-gradient(135deg, #06D6A0 0%, #05B88A 100%);
    color: #FFFFFF;
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(6, 214, 160, 0.3);
}

.modern-mobile-side-menu-close:active {
    transform: rotate(90deg) scale(0.95);
}

.modern-mobile-side-menu-nav {
    flex: 1;
    padding: 0.5rem 0;
    overflow-y: auto;
    background: #FFFFFF;
}

.modern-mobile-side-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-mobile-side-menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-mobile-side-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #06D6A0 0%, #05B88A 100%);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-mobile-side-menu-item:hover::before,
.modern-mobile-side-menu-item.active::before {
    transform: scaleY(1);
}

.modern-mobile-side-menu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.modern-mobile-side-menu-item a:hover {
    background: linear-gradient(90deg, rgba(6, 214, 160, 0.08) 0%, rgba(6, 214, 160, 0.04) 100%);
    color: #06D6A0;
    padding-left: 1.75rem;
    transform: translateX(4px);
}

.modern-mobile-side-menu-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.modern-mobile-side-menu-item-has-children.active .modern-mobile-side-menu-arrow {
    transform: rotate(90deg);
}

.modern-mobile-side-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, rgba(6, 214, 160, 0.03) 0%, rgba(6, 214, 160, 0.01) 100%);
    padding: 0;
}

.modern-mobile-side-menu-item-has-children.active .modern-mobile-side-submenu {
    max-height: 1000px;
    padding: 0.5rem 0;
}

.modern-mobile-side-submenu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.modern-mobile-side-submenu-item::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #06D6A0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-mobile-side-submenu-item:hover::before {
    opacity: 1;
}

.modern-mobile-side-submenu-item a {
    padding: 0.875rem 1.5rem 0.875rem 2.75rem;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-mobile-side-submenu-item a:hover {
    background: linear-gradient(90deg, rgba(6, 214, 160, 0.12) 0%, rgba(6, 214, 160, 0.06) 100%);
    color: #06D6A0;
    padding-left: 3rem;
    transform: translateX(4px);
}

/* Mobil Sağdan Açılan Menü - Responsive */
@media (max-width: 480px) {
    .modern-mobile-side-menu-content {
        width: 90%;
        max-width: 350px;
    }
    
    .modern-mobile-side-menu-header {
        padding: 1rem 1.25rem;
    }
    
    .modern-mobile-side-menu-item a {
        padding: 0.875rem 1.25rem;
        font-size: 14px;
    }
    
    .modern-mobile-side-submenu-item a {
        padding: 0.75rem 1.25rem 0.75rem 2rem;
        font-size: 13px;
    }
}
