/* PERFORMANCE OPTIMIZATIONS - EN ÜSTE EKLEYİN */



/* Minimal Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loading-container {
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top: 3px solid #901530;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

.loading-container p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out;
}

.loading-container {
    text-align: center;
    max-width: 300px;
    padding: 40px 20px;
}

.loading-logo {
    margin-bottom: 30px;
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo-img {
    height: 80px;
    width: auto;
}

.loading-animation {
    margin-bottom: 30px;
    position: relative;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #e0e0e0;
    border-top: 3px solid #901530;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background-color: #901530;
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0s;
}

.loading-text {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
}

.loading-text p {
    margin: 0;
    animation: textFade 2s ease-in-out infinite;
}

/* Loading Animations */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes textFade {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Main Content - Loading State */
.main-content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

/* Body Loaded State */
body.loaded .main-content {
    opacity: 1;
    pointer-events: auto;
}

/* Background Images Container - Loading Optimized */
.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-color: #f5f5f5; /* Fallback color while loading */
}

.background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.background-image.active {
    opacity: 1;
}

/* Mobile Loading Optimizations */
@media (max-width: 768px) {
    .loading-container {
        max-width: 280px;
        padding: 30px 15px;
    }
    
    .loading-logo-img {
        height: 60px;
    }
    
    .loading-spinner {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    
    .loading-text {
        font-size: 14px;
    }
    
    .background-image {
        background-attachment: scroll; /* Mobile performance */
    }
}

@media (max-width: 480px) {
    .loading-container {
        padding: 20px 10px;
    }
    
    .loading-logo-img {
        height: 50px;
    }
    
    .loading-spinner {
        width: 35px;
        height: 35px;
    }
    
    .loading-dots span {
        width: 6px;
        height: 6px;
    }
    
    .loading-text {
        font-size: 13px;
    }
}

/* Preloader için görselleri gizli yükle */
.preload-images {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -1;
}

/* Performance optimizations */
.background-image {
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Smooth transitions for better UX */
.content-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.3s;
}

body.loaded .content-wrapper {
    opacity: 1;
    transform: translateY(0);
}
/* Landing Page CSS - assets/css/landing.css (OPTIMIZED) */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', 'Inter', 'FuturaPT-Book', sans-serif;
    background-color: #f5f5f5;
    overflow: hidden;
    height: 100vh;
    line-height: 1.6;
    color: #333;
}

/* Header Styles - AOS ile Uyumlu */
.header {
    background-color: #f5f5f5;
    padding: 15px 0;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    /* AOS fade-down animasyonunu override et */
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: center;
}

.header-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* AOS animasyonunu override et */
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* AOS animasyonunu override et */
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.logo-section {
    /* AOS animasyonunu override et */
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}



/* Navigation Düzeltmeleri */
.main-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    /* AOS animasyonunu override et */
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Dropdown Menu Düzeltmeleri - Z-index ve Hover Sorunları */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #666;
    font-weight: 400; /* Regular weight */
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #901530;
    transition: width 0.3s ease;
}

.dropdown-toggle:hover::after {
    width: 100%;
}

.dropdown-toggle:hover {
    color: #901530;
}

.dropdown-arrow {
    font-size: 10px; /* Küçültüldü */
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu - Z-index ve Hover Sorunları Çözüldü */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: #F5F5F5;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 15px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000; /* Çok yüksek z-index */
    /* AOS animasyonlarını devre dışı bırak */
    animation: none !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown hover alanını genişlet */
.dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: -15px;
    z-index: 1;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown-section {
    margin-bottom: 15px;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section h4 {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.dropdown-section a {
    display: block;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400; /* Regular weight */
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-bottom: 5px;
    position: relative;
    z-index: 10001;
    white-space: nowrap; /* Tek satır olması için */
}

.dropdown-section a:hover {
    color: #901530;
    background-color: #EEEEEE;
    transform: translateX(5px);
}

.main-nav a {
    text-decoration: none;
    color: #666;
    font-weight: 400; /* Regular weight */
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
     transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #901530;
}

.header-btn {
    background-color: #901530;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.header-btn:hover {
    background-color: #242424;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 120, 92, 0.3);
}

/* Main Content - Optimize Edilmiş Background System */
.main-content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background Images Container */
.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.background-image.active {
    opacity: 1;
}

.content-wrapper {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

/* Main title - GÜNCELLENMİŞ BOYUTLAR */
.main-title {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 2rem; /* title-line1 ile aynı */
    margin-bottom: 15px;
    margin-top: 5px;
    position: relative;
    animation: slideInFromTop 1.2s ease-out;
}

.title-line1 {
    font-size: 2rem; /* İSTENİLEN BOYUT */
    font-weight: 300;
    line-height: 0.6; /* EKSTRA DARALTI */
}

.title-line2 {
    font-size: 3rem; /* İSTENİLEN BOYUT */
    font-weight: 300;
    line-height: 0.6; /* EKSTRA DARALTI */
    margin-top: -8px; /* EKSTRA NEGATİF MARGIN */
}

.title-underline {
    width: 100px;
    height: 1px;
    background-color: white;
    margin: 20px auto 0;
}

/* Location Buttons */
.location-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 20px 30px;
    animation: bounceIn 1.5s ease-out 0.5s both;
}

.location-btn {
    background: transparent;
    color: white;
    padding: 18px 30px;
    border: none;
    font-size: 1.4rem; /* İSTENİLEN BOYUT */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.location-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s ease;
}

.location-btn:hover::before {
    left: 100%;
}

.location-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.location-btn.active {
    color: #fff;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

.location-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.location-separator {
    width: 1px;
    height: 35px; /* Uzatıldı */
    background: white;
    margin: 0 8px;
    opacity: 0.8;
}

/* Navigation Arrows - 3 kat büyük ve yakın */
.navigation-arrows {
    display: flex;
    justify-content: center;
    gap: 10px; /* Yaklaştırıldı (20px'den 10px'e) */
    margin-top: 20px;
}

.arrow-btn {
    background: none; /* Arka plan yok */
    border: none; /* Kenarlık yok */
    cursor: pointer;
    padding: 0; /* Padding yok */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn:hover {
    transform: scale(1.1); /* Sadece büyütme efekti */
}

.arrow-btn img {
    width: 36px; /* Yarı yarıya küçültüldü (72px'den 36px'e) */
    height: 36px; /* Yarı yarıya küçültüldü (72px'den 36px'e) */
    filter: brightness(0) invert(1); /* SVG'yi beyaz yapar */
    transition: all 0.3s ease;
}

/* Sola bakan ok için ters çevir */
.arrow-left {
    transform: scaleX(-1);
}

/* Sağa bakan ok normal */
.arrow-right {
    transform: scaleX(1);
}

/* Contact Form - Right Sidebar */
.contact-form {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 30px;
    border-radius: 20px 0 0 20px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    width: 350px;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.contact-form.closed {
    transform: translateY(-50%) translateX(100%);
}

.form-toggle {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6c00;
    color: white;
    border: none;
    padding: 15px 10px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-toggle:hover {
    background: #e55a00;
}

.form-title {
    color: #901530;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left; /* Sola yaslandı */
}

.form-group {
    margin-bottom: 20px;
}

.form-input, .form-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Jost', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #901530;
    box-shadow: 0 0 15px rgba(96, 150, 238, 0.2);
    transform: translateY(-2px);
}

.form-submit {
    background: #ff6c00;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 108, 0, 0.3);
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #901530;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    cursor: pointer;

}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.phone-btn {
    background: #007bff;
    animation-delay: 0s;
    position: relative;
}

.phone-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.whatsapp-btn {
    background: #25d366;
    animation-delay: 0.5s;
    position: relative;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.465 3.488'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-menu-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    border-bottom: 2px solid #901530;
    padding-bottom: 5px;
}

.mobile-menu-sub {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mobile-menu-sub:hover {
    background-color: #f0f0f0;
    color: #901530;
}

.mobile-menu-btn {
    margin-top: 20px;
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Particle Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        text-align: center;
        justify-items: center;
    }

    .header-left {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .logo-section {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-section a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo {
        display: block;
        margin: 0 auto;
    }

    .header-right {
        width: 100%;
        justify-content: center;
    }

    .header-btn {
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    .main-nav {
        display: none;
    }

    .main-content {
        padding-top: 20px;
    }

    .background-image {
        background-attachment: scroll;
    }

    .content-wrapper {
        padding: 10px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: calc(100vh - 80px);
        margin-top: 20px;
    }

    .main-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
        margin-top: 30px;
    }

    .title-line1 {
        font-size: 1.4rem;
    }

    .title-line2 {
        font-size: 1.5rem;
    }

    .location-buttons {
        gap: 5px;
        padding: 15px 20px;
        margin: 20px 15px 30px 15px;
        flex-wrap: wrap; /* Alt satıra geçmesine izin ver */
        justify-content: center;
        max-width: 100%;
        width: 100%;
    }

    .location-btn {
        padding: 8px 12px;
        font-size: 1.1rem;
        font-weight: 700;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .location-separator {
        display: none;
    }

    .navigation-arrows {
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .contact-form {
        width: 300px;
        padding: 20px;
        right: -15px;
    }

    .contact-form.closed {
        transform: translateY(-50%) translateX(285px);
    }

    .form-toggle {
        left: -30px;
        padding: 10px 6px;
        font-size: 14px;
    }

    .floating-buttons {
        left: 15px;
        bottom: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        gap: 15px;
    }

    .header-left {
        gap: 15px;
    }

    .content-wrapper {
        padding: 5px 0;
        min-height: calc(100vh - 70px);
        margin-top: -185px;
    }

    .main-title {
        font-size: 1.2rem;
        padding: 0 15px;
        line-height: 1.1;
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .title-line1 {
        font-size: 1.2rem;
    }

    .title-line2 {
        font-size: 1.3rem;
    }

    .location-buttons {
        margin: 15px 10px 25px 10px;
        padding: 10px 15px;
        gap: 4px;
    }

    .location-btn {
        padding: 6px 10px;
        font-size: 1.0rem;
        font-weight: 700;
    }

    .navigation-arrows {
        margin-top: 12px;
        margin-bottom: 20px;
    }

    .contact-form {
        width: 280px;
        padding: 15px;
    }

    .contact-form.closed {
        transform: translateY(-50%) translateX(265px);
    }
}
/* ==================== */
/* MENÜ FONT VE HOVER DÜZELTMELERİ */
/* ==================== */

/* Ana navigasyon linkleri */
.main-nav a {
    font-family: 'Jost', sans-serif !important;
    font-weight: 400 !important; /* Regular weight */
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #901530 !important; /* Mavi hover rengi */
}

.main-nav a.active {
    color: #901530 !important; /* Aktif link de mavi */
    font-weight: 400 !important; /* Regular ağırlığını koru */
}

/* Dropdown menü linkleri */
.dropdown-section a {
    font-family: 'Jost', sans-serif !important;
    font-weight: 400 !important; /* Regular weight */
    transition: all 0.3s ease;
}

.dropdown-section a:hover {
    color: #901530 !important; /* Mavi hover rengi */
    background-color: #f5f5f5;
    transform: translateX(5px);
}

/* Sub navigation (proje sayfalarında) */
.sub-nav-menu a {
    font-family: 'Jost', sans-serif !important;
    font-weight: 400 !important; /* Regular weight */
    transition: color 0.3s ease;
}

.sub-nav-menu a:hover {
    color: #901530 !important; /* Mavi hover rengi */
}

.sub-nav-menu a.active {
    color: #901530 !important;
    font-weight: 400 !important; /* Regular ağırlığını koru */
}

/* Mobile menü linkleri */
.mobile-menu-title {
    font-family: 'Jost', sans-serif !important;
    font-weight: 400 !important; /* Regular weight */
    border-bottom: 2px solid #901530; /* Mavi alt çizgi */
}

.mobile-menu-sub {
    font-family: 'Jost', sans-serif !important;
    font-weight: 400 !important; /* Regular weight */
    transition: all 0.3s ease;
}

.mobile-menu-sub:hover {
    background-color: #f0f0f0;
    color: #901530 !important; /* Mavi hover rengi */
}

/* Hamburger menü toggle rengi */
.hamburger.active span {
    background: #901530 !important; /* Mavi renk */
}