/* Genel Ayarlar ve Renk Paleti */
:root {
    --primary-color: #0093E9;
    --secondary-color: #033E59;
    --white-color: #ffffff;
    --gradient-start: #0093E9;
    --gradient-end: #80D0C7;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: var(--white-color);
    background-color: #000;
    overflow: hidden; /* fullPage.js için */
}

/* Arka Plan Videosu */
.video-background { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; }
.video-background video { width: 100%; height: 100%; object-fit: cover; }
body::after { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(3, 50, 74, 0.8), rgba(0, 50, 100, 0.7)); z-index: -1; }

/* Navigasyon Menüsü */
.navbar { position: fixed; top: 0; left: 0; width: 100%; display: flex; justify-content: center; align-items: center; padding: 20px 40px; z-index: 100; box-sizing: border-box; background: rgba(20, 30, 40, 0.5); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.nav-links { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; }
.nav-links li a { text-decoration: none; color: var(--white-color); font-weight: 500; padding: 10px 15px; transition: all 0.3s ease; border-bottom: 2px solid transparent; letter-spacing: 0.5px; }
.nav-links li.active a, .nav-links li a:hover { color: var(--white-color); border-bottom-color: var(--primary-color); }
.btn-login { border: 2px solid var(--primary-color); padding: 8px 18px !important; border-radius: 50px; margin-left: 15px; color: var(--white-color); }
.btn-login:hover { background-color: var(--primary-color); border-bottom-color: transparent !important; }

/* fullPage.js Bölümleri */
.section { text-align: center; }
.content { max-width: 1200px; margin: 0 auto; padding: 20px; box-sizing: border-box; }
h1 { font-family: 'Montserrat', sans-serif; font-size: 4rem; font-weight: 800; letter-spacing: -2px; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
h2 { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 700; margin-bottom: 50px; letter-spacing: -1px; }
p { font-size: 1.2rem; line-height: 1.7; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.9; }

/* Modern Kart Tasarımı (Hizmetler) */
.features { display: flex; justify-content: center; gap: 30px; margin-top: 50px; }
.feature-card { max-width: 300px; background: rgba(0, 0, 0, 0.2); padding: 30px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); }
.feature-card i { font-size: 48px; color: var(--primary-color); margin-bottom: 20px; }
.feature-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; }

/* GÜNCELLENDİ - İletişim Bölümü Stilleri */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.btn-primary {
    display: inline-block;
    margin-top: 30px;
    background-image: linear-gradient(45deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white-color);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}
.contact-details {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}
.contact-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 20px 0;
    display: flex;
    align-items: flex-start;
}
.contact-details p:last-child {
    margin-bottom: 0;
}
.contact-details i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
    width: 25px;
    text-align: center;
}
.day-off {
    opacity: 0.7;
    font-size: 0.9em;
}
.social-link {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
}
.social-link:hover {
    color: #E1306C; /* Instagram Rengi */
}
.map-container {
    width: 100%;
    max-width: 600px;
    flex-grow: 1;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
}

/* fullPage.js Navigasyon Noktaları */
#fp-nav ul li a span { background: rgba(255, 255, 255, 0.5) !important; }
#fp-nav ul li a.active span, #fp-nav ul li:hover a span { background: var(--primary-color) !important; }

/* MOBİL UYUMLULUK */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .navbar { flex-direction: column; padding: 15px; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .btn-login { margin-left: 0; margin-top: 10px; }
    h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } p { font-size: 1rem; }
    .features { flex-direction: column; align-items: center; }
    #fp-nav.fp-right { display: none !important; }
}