/* Ana Menü Sayfası Stilleri - Güncellenmiş */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Balık Fiyat Stilleri */
.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
    margin-top: 10px;
}

.price-portion {
    color: #27ae60;
    font-weight: 700;
}

.portion-info {
    display: block;
    font-size: 0.8rem;
    color: #7f8c8d;
    font-weight: 400;
    margin-top: 2px;
    font-style: italic;
}

.portion-weight {
    display: block;
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 400;
    margin-top: 2px;
}

.kg-price-note {
    display: block;
    font-size: 0.8rem;
    color: #e67e22;
    font-weight: 500;
    margin-top: 4px;
    font-style: italic;
    background: rgba(230, 126, 34, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border-left: 3px solid #e67e22;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Menü Öğesi Aksiyonları */
.menu-item-actions {
    margin-top: 15px;
    text-align: center;
}

.btn-detail {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    min-width: 120px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-detail:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f618d 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* ========== ÜRÜN DETAY - PROFESYONEL TASARIM ========== */
.product-detail-modal-wrapper {
    align-items: center;
    padding: 20px;
}

.product-detail-modal-wrapper .modal-backdrop {
    display: none;
}

.product-detail-modal {
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    position: relative;
}


.product-detail-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    color: #374151;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    -webkit-tap-highlight-color: transparent;
}

.product-detail-close-btn:hover {
    background: #fff;
}

.product-detail-scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.product-detail-hero {
    position: relative;
}

.product-detail-image-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f3f4f6;
}

.product-detail-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 2.5rem;
}

.product-detail-body {
    padding: 24px;
}

.product-detail-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px;
    line-height: 1.3;
}

.product-detail-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px;
}

.product-detail-price-block {
    margin-bottom: 6px;
}

.product-detail-price {
    font-size: 1.65rem;
    font-weight: 700;
    color: #059669;
}

.product-detail-price-unit {
    font-size: 0.9375rem;
    color: #6b7280;
    font-weight: 500;
    margin-left: 6px;
}

.product-detail-price-note {
    font-size: 0.8125rem;
    color: #9ca3af;
    margin: 0 0 12px;
}

.product-detail-kg-note {
    font-size: 0.8125rem;
    color: #d97706;
    background: #fffbeb;
    padding: 10px 14px;
    border-radius: 8px;
    margin-top: 8px;
}

.product-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-detail-tags .feature-item {
    font-size: 0.8125rem;
    padding: 6px 12px;
    background: #f9fafb;
    color: #4b5563;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.product-detail-tags .feature-item i {
    color: #6b7280;
    margin-right: 4px;
}

.product-detail-actions {
    padding: 20px 24px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    border-top: 1px solid #f3f4f6;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-detail-btn-reserve {
    width: 100%;
    padding: 14px 20px;
    background: #1e3c72;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-detail-btn-reserve:hover {
    background: #162d54;
}

.product-detail-btn-close {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
}

.product-detail-btn-close:hover {
    background: #f9fafb;
}

.product-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-image .placeholder-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.product-info h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-info p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-info .product-description-text {
    display: block;
}

.product-detail-modal .product-info .product-description-text {
    font-size: 0.95rem;
    color: #666;
}

.fish-description {
    background: #e8f5e8;
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    font-style: italic;
    color: #2c5530 !important;
}

.price-details {
    margin: 25px 0;
}

.price-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #27ae60;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
}

.price-section h5 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.price-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    text-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
}

.price-unit {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 500;
}

.price-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    background: rgba(39, 174, 96, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 10px;
}

.kg-price-note-modal {
    font-size: 0.85rem;
    color: #e67e22;
    font-weight: 500;
    font-style: italic;
    background: rgba(230, 126, 34, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 8px;
    border-left: 3px solid #e67e22;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

/* Ürün detayı modalı — yeşil etiketler (hero ile karışmasın) */
.product-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e8;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2c5530;
    font-weight: 500;
}

.product-features .feature-item i {
    color: #27ae60;
}

/* Modal Footer Butonları */
.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    gap: 15px;
}

.btn-close-modal {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.btn-close-modal:hover {
    background: linear-gradient(135deg, #7f8c8d 0%, #6c7b7d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 165, 166, 0.4);
}

.btn-reservation-modal {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
}

.btn-reservation-modal:hover {
    background: linear-gradient(135deg, #8e44ad 0%, #7d3c98 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
}

.btn-reservation-modal i {
    font-size: 1rem;
}

/* Ürün Detay Modal - Mobil */
@media (max-width: 768px) {
    .product-detail-modal-wrapper {
        align-items: flex-end;
        padding: 0;
    }
    
    .product-detail-modal-wrapper .modal-backdrop {
        display: block;
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 0;
    }
    
    .product-detail-modal-wrapper .modal-content {
        max-height: 92vh;
        margin: 0;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
        animation: pdSlideUp 0.35s ease-out;
    }
    
    @keyframes pdSlideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    
    .product-detail-close-btn {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
    }
    
    .product-detail-image-wrap {
        aspect-ratio: 16/10;
    }
    
    .product-detail-body {
        padding: 24px 20px;
    }
    
    .product-detail-title {
        font-size: 1.3rem;
    }
    
    .product-detail-price {
        font-size: 1.5rem;
    }
    
    .product-detail-actions {
        padding: 20px;
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

@media (max-width: 480px) {
    .product-detail-title {
        font-size: 1.2rem;
    }
    
    .product-detail-body {
        padding: 20px 16px;
    }
    
    .product-detail-price {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .btn-detail {
        width: 100%;
        min-width: auto;
        padding: 14px 20px;
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .price-section {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
}

html {
    scroll-behavior: smooth;
}

/* Yatay taşma: body'de overflow-x kullanma — position:sticky (kategori çubuğu) bozulur */
html, body {
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #f0f4f8 0%, #f8fafc 40%, #eef2f7 100%);
    background-attachment: fixed;
    -webkit-text-size-adjust: 100%;
}

body.lang-ru {
    font-family: 'Noto Sans', 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}



.site-header-wrap {
    position: relative;
    z-index: 99;
}

/* Header Stilleri */
.header {
    background: linear-gradient(135deg, #0f4c75 0%, #1e3c72 50%, #2a5298 100%);
    color: white;
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,25 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.logo-icon i {
    font-size: 1.8rem;
    color: #1e3c72;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.logo-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
    color: #e8f4fd;
}

html[dir="rtl"] .header .container {
    flex-direction: row-reverse;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #1e3c72;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.contact-value {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Navigation Stilleri — body doğrudan çocuğu: sticky tüm sayfa boyunca geçerli */
.nav {
    position: sticky;
    top: 0;
    z-index: 110;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
}

.nav-categories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-search-wrap {
    position: relative;
    max-width: min(440px, 100%);
    width: 100%;
    margin: 16px auto 0;
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    padding: 0;
    box-shadow:
        0 4px 18px rgba(15, 23, 42, 0.12),
        0 1px 3px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    overflow: hidden;
    transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.menu-search-wrap:hover {
    box-shadow:
        0 6px 22px rgba(102, 126, 234, 0.22),
        0 2px 6px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.menu-search-wrap:focus-within {
    border-color: rgba(118, 75, 162, 0.45);
    box-shadow:
        0 0 0 3px rgba(102, 126, 234, 0.35),
        0 8px 28px rgba(118, 75, 162, 0.28);
    transform: translateY(-1px);
}

.menu-search-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    padding-inline-start: 4px;
    background: linear-gradient(
        180deg,
        rgba(102, 126, 234, 0.08) 0%,
        rgba(118, 75, 162, 0.06) 100%
    );
    border-inline-end: 1px solid rgba(102, 126, 234, 0.12);
}

.menu-search-icon {
    color: #764ba2;
    font-size: 1rem;
    opacity: 0.92;
}

.menu-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: #1e293b;
    font-size: 0.97rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    outline: none;
    padding-block: 13px;
    padding-inline: 12px 18px;
    -webkit-appearance: none;
    appearance: none;
}

.menu-search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.menu-search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 18px;
    width: 18px;
    margin-inline-start: 8px;
    cursor: pointer;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2394a3b8'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.menu-search-hint {
    max-width: min(440px, 100%);
    margin: 10px auto 0;
    padding: 10px 14px 12px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-search-hint-banner {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.88;
    margin-bottom: 6px;
}

.menu-search-hint-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 8px;
}

.menu-search-hint-suggest {
    display: inline-flex;
    align-items: center;
    font: inherit;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    padding: 4px 12px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.menu-search-hint-suggest:hover,
.menu-search-hint-suggest:focus-visible {
    background: rgba(255, 255, 255, 0.32);
    outline: none;
}

.menu-search-hint-suggest:focus-visible {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.vat-notice {
    text-align: center;
    font-size: 0.92rem;
    font-weight: 500;
    color: #1e3c72;
    margin: 0 auto 1.35rem;
    max-width: 720px;
    padding: 0.7rem 1rem;
    background: rgba(30, 60, 114, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(30, 60, 114, 0.1);
    line-height: 1.45;
}

.vat-notice.price-date-notice {
    margin-top: -0.65rem;
    margin-bottom: 1.35rem;
    font-size: 0.88rem;
    color: #334155;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-btn.active {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Navigation Header Mobile */
.nav-header-mobile {
    display: none;
    padding: 15px 0;
    text-align: center;
}

.category-toggle-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
    min-height: 48px;
}

.category-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.category-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

/* Kategori gizleme */
.nav-categories.hidden {
    display: none;
}

/* Hero Section — arkaplan.png + okunaklı özellik kartları */
.hero {
    background:
        linear-gradient(180deg, rgba(6, 18, 38, 0.42) 0%, rgba(4, 10, 24, 0.78) 55%, rgba(2, 6, 16, 0.88) 100%),
        url('arkaplan.png');
    background-size: cover;
    background-position: center 38%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 420px;
    height: auto;
    padding: 48px 20px 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 95% 75% at 50% 40%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 8, 24, 0.5) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 0 16px;
}

.hero-icon {
    font-size: clamp(2.75rem, 8vw, 4rem);
    color: #ffe066;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

@media (prefers-reduced-motion: no-preference) {
    .hero-icon {
        animation: heroAnchorPulse 3s ease-in-out infinite;
    }
}

@keyframes heroAnchorPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.hero-content h2 {
    font-size: clamp(1.85rem, 5.5vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #fffef8 0%, #f0d78c 45%, #c9a227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(1rem, 2.8vw, 1.35rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 28px;
    line-height: 1.65;
    max-width: 38em;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: clamp(14px, 4vw, 28px);
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero .hero-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 18px 18px 16px;
    min-width: 128px;
    max-width: 200px;
    flex: 1 1 120px;
    background: rgba(6, 18, 42, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 10px 36px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero .hero-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 120, 0.45);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
}

.hero .hero-feature-card i {
    font-size: 1.85rem;
    color: #ffd966;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
}

.hero .hero-feature-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.35;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 2px 14px rgba(0, 0, 0, 0.55);
}

/* Menu Section Stilleri */
.menu-section {
    margin-bottom: 60px;
    opacity: 1;
    transition: all 0.5s ease;
}

/* Kategori seçilince - kutu ile tam görünüm */
.menu-section.category-focused {
    background: #fff;
    border-radius: 20px;
    padding: 28px 20px 32px;
    margin: 16px 0 24px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.main.category-filtered .menu-section.category-focused {
    margin-top: 20px;
}

.menu-section.category-focused .section-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.menu-section.category-focused .menu-grid {
    margin-top: 24px;
}

.menu-section.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    font-size: 2rem;
    color: #667eea;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-style: italic;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Menu Item Stilleri */
.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.menu-item-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Güçlü ortalama için ek özellikler */
    text-align: center;
    line-height: 200px;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--image-position, center center);
    transition: transform 0.3s ease;
    display: block;
    min-height: 200px;
    max-height: 200px;
    background: #f8f9fa;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Güçlü ortalama için ek özellikler */
    margin: auto;
    vertical-align: middle;
    text-align: center;
}

.menu-item:hover .menu-item-image img {
    transform: translate(-50%, -50%) scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
    position: absolute;
    top: 0;
    left: 0;
}

.placeholder-image i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.featured-badge i {
    font-size: 0.7rem;
}

.menu-item-content {
    padding: 25px;
}

.menu-item-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 10px;
}

.menu-item-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a5298;
    text-align: right;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.empty-content i {
    font-size: 4rem;
    color: #adb5bd;
    margin-bottom: 20px;
}

.empty-content h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.empty-content p {
    font-size: 1.1rem;
    color: #666;
}

/* Sosyal Medya Linkleri */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a i {
    font-size: 1.2rem;
}

/* Footer Stilleri */
.footer {
    background: #1e3c72;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffd700;
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-section i {
    margin-right: 8px;
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    /* Container - mobilde daha geniş alan, çentikli ekran desteği */
    .container {
        padding: 0 16px;
        width: 100%;
    }
    
    @supports (padding: max(0px)) {
        .container {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
        }
    }
    
    .header .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .logo {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-icon i {
        font-size: 1.5rem;
    }
    
    .logo-text h1 {
        font-size: 2rem;
    }
    
    .header-info {
        margin-top: 20px;
    }
    
    .contact-card {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .contact-item {
        flex: none;
        min-width: auto;
        max-width: none;
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .nav-header-mobile {
        display: block;
    }

    .category-toggle-btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        min-height: 48px;
    }
    
    .nav-categories {
        display: none;
        margin-top: 15px;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 15px 12px;
        scrollbar-width: thin;
        scrollbar-color: #667eea #f1f1f1;
        -webkit-overflow-scrolling: touch;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }
    
    .nav-categories.show {
        display: flex !important;
    }
    
    .nav-categories::-webkit-scrollbar {
        height: 6px;
    }
    
    .nav-categories::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
    }
    
    .nav-categories::-webkit-scrollbar-thumb {
        background: #667eea;
        border-radius: 3px;
    }
    
    .nav-categories::-webkit-scrollbar-thumb:hover {
        background: #5a6fd8;
    }
    
    .nav-btn {
        flex-shrink: 0;
        font-size: 0.9rem;
        padding: 10px 18px;
        min-height: 44px;
        margin-right: 8px;
        min-width: 100px;
        justify-content: center;
        white-space: nowrap;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .nav-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }
    
    .nav-btn.active {
        background: rgba(102, 126, 234, 0.8);
        border-color: rgba(102, 126, 234, 1);
        color: white;
    }
    
    .reservation-button:hover {
        transform: none;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
    
    .reservation-button:active {
        transform: scale(0.95);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    
    .reservation-text {
        display: none;
    }
    
    .main-menu-button:hover {
        transform: none !important;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
    
    .main-menu-button {
        bottom: max(15px, env(safe-area-inset-bottom)) !important;
        right: max(15px, env(safe-area-inset-right)) !important;
        padding: 12px 18px;
        font-size: 0.85rem;
        border-radius: 40px;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        position: fixed !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
    }
    
    .menu-text {
        display: none;
    }

    .menu-button-lang-badge {
        font-size: 0.64rem;
        padding: 4px 9px;
        top: -8px;
    }
    
    .main-menu-dropdown {
        bottom: calc(70px + env(safe-area-inset-bottom));
        right: max(15px, env(safe-area-inset-right));
        min-width: min(92vw, 280px);
        max-width: 92vw;
    }
    
    .menu-option {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .hamburger-menu {
        width: 18px;
        gap: 2px;
    }
    
    .hamburger-menu span {
        height: 2px;
    }
    
    .reservation-modal {
        width: 95%;
        margin: 20px;
    }
    
    .developer-modal {
        width: 95%;
        max-width: 95%;
        margin: 10px;
    }
    
    .developer-info {
        padding: 20px 15px;
    }
    
    .developer-avatar {
        font-size: 3.5rem;
    }
    
    .developer-info h4 {
        font-size: 1.6rem;
    }
    
    .developer-title {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .detail-item {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    
    .btn-send-email {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .btn-send-email span {
        display: inline;
    }
    
    .developer-description p {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .developer-skills h5 {
        font-size: 1.1rem;
    }
    
    .skill-tag {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .toast {
        min-width: 280px;
        margin: 0 10px;
    }
    
    .hero {
        min-height: 300px;
        height: auto;
        padding: 36px 16px 32px;
        margin-bottom: 25px;
        background-attachment: scroll;
        background-position: center 30%;
        border-radius: 12px;
    }
    
    .developer-signature {
        bottom: 20px;
        left: 20px;
    }
    
    .signature-content {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .hero-icon {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-features {
        gap: 14px;
    }
    
    .hero .hero-feature-card {
        padding: 14px 12px;
        min-width: 100px;
        max-width: none;
    }
    
    .hero .hero-feature-card i {
        font-size: 1.5rem;
    }
    
    .hero .hero-feature-label {
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
        margin-left: 0;
        margin-right: 0;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title i {
        font-size: 1.5rem;
    }
    
    .menu-section.category-focused {
        padding: 20px 16px 24px;
        margin: 12px 0 20px;
        border-radius: 16px;
    }
    
    .menu-item-content {
        padding: 18px;
    }
    
    .menu-item-content h4 {
        font-size: 1.15rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .menu-item {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    @supports (padding: max(0px)) {
        .container {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
    
    .logo-text h1 {
        font-size: 1.7rem;
    }
    
    .hero {
        height: 260px;
        margin-bottom: 20px;
        padding: 30px 16px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 2.6rem;
        line-height: 1.1;
        margin-bottom: 15px;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.4;
    }
    
    /* Mobil için menü kartları - Basit düzen */
    .menu-item {
        display: block;
        margin-bottom: 15px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .menu-item-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        /* Güçlü ortalama için ek özellikler */
        text-align: center;
        line-height: 200px;
    }
    
    .menu-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: var(--image-position, center center);
        display: block;
        min-height: 200px;
        max-height: 200px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* Güçlü ortalama için ek özellikler */
        margin: auto;
        vertical-align: middle;
        text-align: center;
    }
    
    .menu-item-content {
        padding: 15px;
    }
    
    .menu-item-content h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.3;
        color: #1e3c72;
        font-weight: 600;
    }
    
    .menu-item-content p {
        font-size: 0.9rem;
        margin-bottom: 10px;
        line-height: 1.4;
        color: #666;
    }
    
    .price {
        font-size: 1.2rem;
        font-weight: 700;
        color: #2a5298;
        text-align: right;
    }
    
    .placeholder-image {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .featured-badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    
    .footer-section {
        padding: 0 8px;
    }
    
    .category-toggle-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .developer-modal {
        width: 98%;
        max-width: 98%;
        margin: 5px;
    }
    
    .developer-info {
        padding: 15px 10px;
    }
    
    .developer-avatar {
        font-size: 3rem;
    }
    
    .developer-info h4 {
        font-size: 1.4rem;
    }
    
    .developer-title {
        font-size: 0.8rem;
    }
    
    .detail-item {
        font-size: 0.8rem;
        padding: 8px 12px;
        flex-wrap: wrap;
    }
    
    .btn-send-email {
        font-size: 0.8rem;
        padding: 8px 14px;
        gap: 6px;
    }
    
    .btn-send-email i {
        font-size: 0.9rem;
    }
    
    .developer-description p {
        font-size: 0.85rem;
        padding: 10px;
    }
    
    .developer-skills h5 {
        font-size: 1rem;
    }
    
    .skill-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }

/* Scroll Animasyonları */
.menu-section {
    animation: fadeInUp 0.8s ease forwards;
}

/* Loading Animasyonu */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1e3c72;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Özel Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1e3c72;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2a5298;
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-card {
        flex-wrap: wrap;
        padding: 20px;
        gap: 12px;
        justify-content: center;
    }
    
    .contact-item {
        flex: 1;
        min-width: 180px;
        max-width: 240px;
        padding: 12px;
        min-height: 70px;
    }
    
    .contact-item.address-item {
        min-height: 70px;
        padding-top: 12px;
    }
    
    .contact-item.address-item .contact-value {
        font-size: 0.8rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-label {
        font-size: 0.75rem;
    }
    
    .contact-value {
        font-size: 0.85rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Ana Menü Butonu */
.main-menu-button {
    position: fixed !important;
    bottom: 15px !important;
    right: 15px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: translateZ(0);
    will-change: transform;
    top: auto !important;
    left: auto !important;
    overflow: visible;
}

.menu-button-lang-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translate(-50%, -100%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.26);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.28);
    pointer-events: none;
}

.menu-button-lang-badge i {
    font-size: 0.7rem;
    color: #93c5fd;
}

.main-menu-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.main-menu-button.active {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.menu-text {
    font-size: 1rem;
    font-weight: 600;
}

/* Ana Menü Dropdown */
/* Dil: buton + açılan bayraklı karo menü */
.menu-lang-block {
    padding: 6px 12px 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-lang-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 18px;
    margin: 0;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #0f172a;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    touch-action: manipulation;
    position: relative;
    z-index: 1;
}

.menu-lang-trigger:hover {
    background: linear-gradient(135deg, #e8eef5 0%, #dbe4ec 100%);
}

.menu-lang-trigger.is-open {
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.25);
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}

.menu-lang-trigger-flag {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}

.menu-lang-trigger-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menu-lang-trigger-hint {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.menu-lang-trigger-label {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.menu-lang-trigger-chevron {
    flex-shrink: 0;
    color: #64748b;
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.menu-lang-trigger.is-open .menu-lang-trigger-chevron {
    transform: rotate(180deg);
    color: #4f46e5;
}

.menu-lang-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 2px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #334155;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.menu-lang-notice i {
    color: #4f46e5;
    font-size: 0.82rem;
}

.menu-lang-panel {
    margin-top: 10px;
    padding: 0 12px 4px;
    max-height: min(50vh, 280px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.menu-lang-panel[hidden] {
    display: none !important;
}

.menu-lang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-bottom: 4px;
}

.menu-lang-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 8px;
    border-radius: 14px;
    text-decoration: none;
    color: #1e293b;
    background: #f8fafc;
    border: 2px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    min-height: 92px;
    box-sizing: border-box;
}

.menu-lang-tile:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);
}

.menu-lang-tile.is-active {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.12);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.35);
}

.menu-lang-tile-flag {
    font-size: 2rem;
    line-height: 1;
}

.menu-lang-tile-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    word-break: break-word;
    max-width: 100%;
}

.menu-lang-tile:hover .menu-lang-tile-label {
    color: #fff;
}

.main-menu-dropdown {
    position: fixed;
    bottom: 80px;
    right: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    min-width: 280px;
    max-width: min(92vw, 340px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    /* Menü butonundan (10000) üstte olmalı; yoksa tıklamalar mor butona gider, dil paneli açılmaz */
    z-index: 10050;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.main-menu-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
}

.menu-option:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.menu-option i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.menu-option span {
    font-size: 0.95rem;
}

/* Yapımcı Butonu */
.developer-button {
    position: fixed;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: translateZ(0);
    will-change: transform;
}

.developer-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
}

.developer-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.developer-text {
    font-size: 1rem;
    font-weight: 600;
}

/* Yapımcı Modal */
.developer-modal {
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 50%, #000000 100%);
    box-shadow: 0 0 50px rgba(0, 200, 255, 0.5);
}

.developer-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 200, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(0, 200, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: cyberPulse 8s ease-in-out infinite;
}

@keyframes cyberPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.developer-info {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.developer-avatar {
    font-size: 5rem;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00c8ff 0%, #8a2be2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0, 200, 255, 0.8),
                0 0 100px rgba(0, 200, 255, 0.4),
                inset 0 0 30px rgba(138, 43, 226, 0.3);
    animation: cyberAvatarPulse 2s ease-in-out infinite;
    will-change: transform, box-shadow;
    border: 3px solid rgba(0, 200, 255, 0.8);
}

.developer-avatar::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(0, 200, 255, 0.4), transparent, rgba(138, 43, 226, 0.4), transparent);
    border-radius: 50%;
    animation: avatarRotate 3s linear infinite;
    z-index: -1;
}

@keyframes avatarRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.developer-avatar i {
    color: #ffffff;
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(0, 200, 255, 1));
    animation: iconCyberGlow 2s ease-in-out infinite;
}

@keyframes iconCyberGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 200, 255, 1));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 200, 255, 1)) drop-shadow(0 0 35px rgba(138, 43, 226, 0.8));
    }
}

@keyframes cyberAvatarPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 50px rgba(0, 200, 255, 0.8),
                    0 0 100px rgba(0, 200, 255, 0.4),
                    inset 0 0 30px rgba(138, 43, 226, 0.3);
    }
    50% { 
        transform: scale(1.08); 
        box-shadow: 0 0 70px rgba(0, 200, 255, 1),
                    0 0 140px rgba(0, 200, 255, 0.6),
                    inset 0 0 40px rgba(138, 43, 226, 0.5);
    }
}

.developer-info h4 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 25px rgba(0, 200, 255, 1), 
                 0 0 50px rgba(0, 200, 255, 0.6),
                 0 0 75px rgba(138, 43, 226, 0.4),
                 0 2px 4px rgba(0, 0, 0, 0.9);
}

.developer-title {
    color: #00c8ff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 200, 255, 1),
                 0 2px 4px rgba(0, 0, 0, 0.9);
}

.developer-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ffffff;
    padding: 12px 20px;
    background: rgba(0, 200, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 200, 255, 0.6);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.detail-item:hover {
    background: rgba(0, 200, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 200, 255, 0.8),
                0 0 15px rgba(138, 43, 226, 0.4);
    border-color: rgba(0, 200, 255, 1);
}

.detail-item i {
    color: #00c8ff;
    width: 25px;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(0, 200, 255, 1));
}

.detail-item-email {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.email-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-send-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #00c8ff 0%, #8a2be2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 200, 255, 0.5);
    box-shadow: 0 5px 20px rgba(0, 200, 255, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
}

.btn-send-email::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.5s;
}

.btn-send-email:hover::before {
    left: 100%;
}

.btn-send-email:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 200, 255, 0.8),
                0 0 20px rgba(138, 43, 226, 0.6);
    border-color: #00c8ff;
    background: linear-gradient(135deg, #00d4ff 0%, #9b3ef5 100%);
}

.btn-send-email:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-send-email i {
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    animation: planeFly 2s ease-in-out infinite;
}

@keyframes planeFly {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(3px) rotate(5deg); }
}

.developer-description {
    text-align: left;
    margin-bottom: 30px;
}

.developer-description p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(0, 200, 255, 0.2);
    border-radius: 10px;
    border-left: 4px solid #00c8ff;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 200, 255, 0.4);
}

.developer-description p:hover {
    background: rgba(0, 200, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.6),
                0 0 15px rgba(138, 43, 226, 0.3);
    border-color: rgba(0, 200, 255, 0.7);
}

.developer-proprietary-notice {
    margin: 28px 0 24px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: left;
}

.developer-proprietary-notice h6 {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.developer-proprietary-notice h6 i {
    color: #ffd700;
    opacity: 0.95;
}

.developer-proprietary-notice p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.footer-software-line {
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.developer-skills h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-shadow: 0 0 25px rgba(0, 200, 255, 1),
                 0 0 50px rgba(0, 200, 255, 0.6),
                 0 0 75px rgba(138, 43, 226, 0.4),
                 0 2px 4px rgba(0, 0, 0, 0.9);
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.skill-tag {
    background: rgba(0, 20, 40, 0.8);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 200, 255, 0.4);
    border: 2px solid rgba(0, 200, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    will-change: transform;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.skill-tag i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #00c8ff;
    filter: drop-shadow(0 0 10px rgba(0, 200, 255, 1));
}

.skill-tag:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 200, 255, 0.8),
                0 0 30px rgba(138, 43, 226, 0.6);
    border-color: #00c8ff;
    background: rgba(0, 200, 255, 0.3);
}

.skill-tag:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(0, 200, 255, 1)) drop-shadow(0 0 30px rgba(138, 43, 226, 0.8));
}

.skill-tag:active {
    transform: translateY(-2px);
}

/* Rezervasyon Butonu */
.reservation-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: translateZ(0);
    will-change: transform;
}

.reservation-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 20px;
    height: 15px;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.reservation-button:hover .hamburger-menu span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.reservation-button:hover .hamburger-menu span:nth-child(2) {
    opacity: 0;
}

.reservation-button:hover .hamburger-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    transform: scale(0.8);
    transition: all 0.3s ease;
    margin: auto;
    position: relative;
}

.modal.active .modal-content {
    transform: scale(1);
}

.reservation-modal {
    width: 600px;
    max-width: 90%;
}

.modal-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    color: #667eea;
}

.developer-modal .modal-header h3 {
    color: #ffffff;
    text-shadow: 0 0 25px rgba(0, 200, 255, 1),
                 0 0 50px rgba(0, 200, 255, 0.6),
                 0 0 75px rgba(138, 43, 226, 0.4),
                 0 2px 4px rgba(0, 0, 0, 0.9);
}

.developer-modal .modal-header h3 i {
    color: #00c8ff;
    filter: drop-shadow(0 0 15px rgba(0, 200, 255, 1));
}

.developer-modal .modal-header {
    background: rgba(0, 20, 40, 0.7);
    border-bottom: 2px solid rgba(0, 200, 255, 0.6);
}

.developer-modal .modal-close {
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(0, 200, 255, 1));
}

.developer-modal .modal-close:hover {
    background: rgba(0, 200, 255, 0.4);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 200, 255, 1),
                0 0 15px rgba(138, 43, 226, 0.6);
    transform: rotate(90deg) scale(1.1);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: closeButtonFade 0.8s ease-out;
}

@keyframes closeButtonFade {
    0% {
        opacity: 0;
        transform: rotate(-90deg) scale(0);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.modal-close:hover {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.modal-body {
    padding: 30px;
}

/* Rezervasyon Form Styles */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-input, .form-textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}

.btn-secondary:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* Toast Messages */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-width: 300px;
    transform: translateX(100%);
    animation: slideIn 0.3s ease forwards;
}

.toast-success {
    border-left: 4px solid #28a745;
}

.toast-error {
    border-left: 4px solid #dc3545;
}

.toast-info {
    border-left: 4px solid #17a2b8;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-content i {
    font-size: 1.2rem;
}

.toast-success .toast-content i {
    color: #28a745;
}

.toast-error .toast-content i {
    color: #dc3545;
}

.toast-info .toast-content i {
    color: #17a2b8;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toast-close:hover {
    background: #f8f9fa;
    color: #333;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

/* Modal Developer Signature */
.modal-developer-signature {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

.modal-developer-signature .signature-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 0.8rem;
}

.modal-developer-signature .signature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.modal-developer-signature .signature-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.modal-developer-signature .signature-label {
    font-size: 0.6rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-developer-signature .signature-name {
    font-size: 0.8rem;
    color: #333;
    font-weight: 600;
}

/* Developer Signature */
.developer-signature {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.developer-signature:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.signature-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.signature-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.signature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.signature-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signature-name {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

@media (max-width: 480px) {
    .developer-signature .signature-content {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .developer-signature .signature-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .developer-signature .signature-label {
        font-size: 0.65rem;
    }
    
    .developer-signature .signature-name {
        font-size: 0.8rem;
    }
    
    .menu-item-content {
        padding: 12px;
    }
    
    .menu-item-content h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .menu-item-content p {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .menu-item-image {
        height: 150px;
    }
    
    .category-toggle-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .nav-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 90px;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1e3c72;
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: #2a5298;
    transform: translateY(-2px);
}

.back-to-top.show {
    opacity: 1;
}

/* Print styles */
@media print {
    .nav,
    .footer,
    .back-to-top {
        display: none;
    }
    
    .menu-item {
        break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .hero {
        background: none;
        color: #333;
        height: auto;
        padding: 20px 0;
    }
}

/* ==================== YENİ YAPIMCI MODAL STİLLERİ ==================== */

/* Yapımcı Modal - Güncellenmiş */
.developer-modal {
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-radius: 20px;
    border: 2px solid #ff6b35;
}

.developer-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    border-radius: 18px;
}

.developer-info {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.developer-avatar {
    font-size: 5rem;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: avatarFloat 3s ease-in-out infinite;
    will-change: transform;
    border: 3px solid rgba(255, 107, 53, 0.2);
    margin: 0 auto 25px;
}

@keyframes avatarFloat {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

.developer-avatar i {
    color: #ffffff;
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.developer-info h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.developer-title {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.developer-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.detail-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.detail-item i {
    color: #ff6b35;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.detail-item span {
    color: #333;
    font-weight: 500;
}

.detail-item-email {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.email-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-send-email {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-send-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.developer-description {
    margin-bottom: 30px;
    text-align: left;
}

.developer-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.developer-skills {
    margin-bottom: 30px;
}

.developer-skills h5 {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.developer-skills h5::before {
    content: '✨';
    font-size: 1.1rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.skill-tag i {
    font-size: 1rem;
}

.developer-tech {
    margin-bottom: 30px;
}

.developer-tech h5 {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.developer-tech h5::before {
    content: '💻';
    font-size: 1.1rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.tech-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tech-item:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.tech-item i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 5px;
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

.developer-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.project-info {
    text-align: center;
}

.project-info h6 {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.project-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    background: rgba(255, 107, 53, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

/* Responsive */
@media (max-width: 768px) {
    .developer-modal {
        width: 95%;
        margin: 10px;
    }
    
    .developer-info {
        padding: 30px 20px;
    }
    
    .detail-item {
        min-width: auto;
        width: 100%;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .tech-item {
        padding: 15px 10px;
    }
    
    .tech-item i {
        font-size: 1.5rem;
    }
}

/* ==================== YENİ YAPIMCI MODAL STİLLERİ SON ==================== */

/* ==================== WHATSAPP BİLDİRİSİ STİLLERİ ==================== */

.whatsapp-notice {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    border: 2px solid rgba(37, 211, 102, 0.2);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { 
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
}

.notice-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-icon i {
    font-size: 1.8rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.notice-content h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.notice-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive WhatsApp Bildirisi */
@media (max-width: 768px) {
    .whatsapp-notice {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .notice-icon {
        width: 40px;
        height: 40px;
    }
    
    .notice-icon i {
        font-size: 1.5rem;
    }
    
    .notice-content h4 {
        font-size: 1rem;
    }
    
    .notice-content p {
        font-size: 0.85rem;
    }
}

/* ==================== REZERVASYON FORM MOBİL OPTİMİZASYONU ==================== */

/* Rezervasyon Modal Mobil Optimizasyonu */
@media (max-width: 768px) {
    .reservation-modal {
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .reservation-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reservation-form .form-group {
        margin-bottom: 15px;
    }
    
    .reservation-form .form-input,
    .reservation-form .form-textarea {
        font-size: 16px; /* iOS zoom önleme */
        padding: 12px 15px;
    }
    
    .reservation-form .form-textarea {
        min-height: 80px;
        resize: none;
    }
    
    .form-actions {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e9ecef;
    }
    
    .form-actions .btn-primary {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
        font-weight: 600;
    }
}

/* Rezervasyon Başarı Bildirisi */
.reservation-success-notice {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    border: 2px solid rgba(40, 167, 69, 0.2);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    }
    50% { 
        box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
    }
}

.reservation-success-notice .success-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.reservation-success-notice .success-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.reservation-success-notice h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.reservation-success-notice p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.reservation-success-notice .contact-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reservation-success-notice .contact-info p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.reservation-success-notice .contact-info p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Responsive Başarı Bildirisi */
@media (max-width: 768px) {
    .reservation-success-notice {
        padding: 20px 15px;
        margin: 15px 0;
    }
    
    .reservation-success-notice .success-icon {
        width: 50px;
        height: 50px;
    }
    
    .reservation-success-notice .success-icon i {
        font-size: 1.5rem;
    }
    
    .reservation-success-notice h4 {
        font-size: 1.1rem;
    }
    
    .reservation-success-notice p {
        font-size: 0.9rem;
    }
}

/* ==================== REZERVASYON FORM MOBİL OPTİMİZASYONU SON ==================== */

.main {
    overflow-x: hidden;
    padding-bottom: max(100px, calc(88px + env(safe-area-inset-bottom)));
}

.menu-view-badge {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1e3c72;
    background: rgba(30, 60, 114, 0.07);
    padding: 10px 16px;
    border-bottom: 1px solid rgba(30, 60, 114, 0.1);
}

.menu-item-img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    max-height: 220px;
    object-fit: cover;
    display: block;
}

.menu-section {
    margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
}

.menu-item {
    border: 1px solid rgba(30, 60, 114, 0.07);
    box-shadow: 0 4px 24px rgba(15, 76, 117, 0.07);
    border-radius: 18px;
    overflow: hidden;
}

.menu-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: clamp(1rem, 3vw, 1.35rem) clamp(1rem, 3vw, 1.25rem);
}

.menu-item-content h4 {
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.menu-item-content p {
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-item-content .price {
    margin-top: auto;
    padding-top: 0.35rem;
    text-align: right;
}

.menu-item-content .portion-info,
.menu-item-content .portion-weight {
    display: block;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .header {
        padding: 18px 0 20px;
    }

    .nav {
        padding-top: calc(12px + env(safe-area-inset-top, 0px));
        padding-bottom: 14px;
        padding-left: 0;
        padding-right: 0;
    }

    .nav-categories.show {
        gap: 10px;
        padding: 16px 14px 18px;
        max-height: min(48vh, 320px);
        overflow-x: auto;
        overflow-y: auto;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
    }

    .nav-btn {
        margin-right: 0;
        margin-bottom: 4px;
    }

    .hero {
        min-height: 0;
        height: auto;
        padding: 36px 16px 40px;
        margin-bottom: clamp(1.25rem, 4vw, 2rem);
        border-radius: 16px;
        background-attachment: scroll;
    }

    .hero-content h2 {
        font-size: clamp(1.5rem, 6.5vw, 2.2rem);
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.55;
        max-width: 36ch;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: clamp(1.35rem, 5vw, 1.85rem);
        margin-bottom: 0.5rem;
        padding: 0 4px;
    }

    .section-description {
        font-size: 0.92rem;
        margin-bottom: 1.25rem;
        padding: 0 8px;
        line-height: 1.5;
    }

    .menu-grid {
        gap: clamp(1rem, 3vw, 1.35rem);
    }

    .menu-item-image {
        height: 200px;
    }

    .menu-item-img {
        min-height: 200px;
        max-height: 200px;
    }

    .menu-item:hover {
        transform: none;
    }

    .btn-detail {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: max(14px, env(safe-area-inset-left));
        padding-right: max(14px, env(safe-area-inset-right));
    }

    .menu-section.category-focused {
        padding: 22px 14px 26px;
        margin: 10px 0 18px;
    }

    .menu-item-content p {
        -webkit-line-clamp: 5;
        font-size: 0.9rem;
    }
}