/* ==========================================================================
   T.C. KEÇİÖREN BELEDİYESİ DENİZ DÜNYASI - ANA STİL DOSYASI
   ========================================================================== */

/* --- 1. GLOBAL DEĞİŞKENLER VE RESET --- */
:root {
    --deep-blue: #021B33;
    --accent-coral: #FF7F50; 
    --accent-cyan: #00FBFF;  
    --glass: rgba(255, 255, 255, 0.05);
    --text-light: #f1f1f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: linear-gradient(180deg, #021B33 0%, #010d1a 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* --- 2. ANİMASYONLU ARKA PLAN ELEMANLARI --- */
.sea-elements { position: fixed; inset: 0; pointer-events: none; z-index: 1; }
.bubble { position: absolute; bottom: -50px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; animation: rise infinite ease-in; }
.fish { position: absolute; width: 80px; transform: scaleX(-1); animation: swimRight 20s infinite linear; }
.fish-left { position: absolute; width: 60px; animation: swimLeft 25s infinite linear; }

@keyframes rise { 0% { transform: translateY(0); opacity: 0; } 50% { opacity: 0.3; } 100% { transform: translateY(-110vh); opacity: 0; } }
@keyframes swimRight { 0% { left: -100px; top: 20%; } 100% { left: 110vw; top: 25%; } }
@keyframes swimLeft { 0% { right: -100px; top: 60%; } 100% { right: 110vw; top: 55%; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-15px); } 60% { transform: translateY(-7px); } }
@keyframes pulseMap { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }

/* --- 3. NAVBAR & MOBİL MENÜ --- */
nav { background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(15px); position: fixed; width: 100%; z-index: 1000; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.nav-container { max-width: 1600px; margin: auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo img { max-height: 80px; }
.main-menu { display: flex; list-style: none; }
.menu-item { position: relative; padding: 10px 15px; }
.menu-item > a { color: white; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
.menu-item:hover > a { color: var(--accent-coral); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1002; }
.menu-toggle span { width: 25px; height: 3px; background: var(--accent-cyan); border-radius: 2px; transition: 0.3s;}

/* Dropdown */
.dropdown { position: absolute; top: 100%; left: 0; background: rgba(255, 255, 255, 0.98); min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); padding: 10px 0; margin-top: -5px; }
.menu-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { color: #1a1a1a !important; padding: 12px 20px; display: block; text-decoration: none; font-size: 0.85rem; transition: 0.2s; }
.dropdown a:hover { background: #f0f0f0; color: var(--accent-coral) !important; padding-left: 25px; }
@media (max-width: 992px) {
    .dropdown {
        position: static; /* Mobilde havada uçmasını engeller, dikey akışa oturtur */
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05); /* Koyu temaya uygun hafif saydam arka plan */
        box-shadow: none;
        padding: 5px 0 5px 15px; /* Alt linkleri biraz sağdan başlatır (hiyerarşi için) */
        margin-top: 10px;
        border-radius: 8px;
        display: none; /* Başlangıçta gizli tutar */
    }

    /* Mobilde ana menü elemanına dokunulduğunda alt menüyü göster */
    .menu-item:hover .dropdown,
    .menu-item:active .dropdown,
    .menu-item:focus-within .dropdown {
        display: block;
    }

    /* Mobil alt menü link renkleri */
    .dropdown a {
        color: rgba(255, 255, 255, 0.8) !important; /* Mobilde siyah yerine açık renk */
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .dropdown a:hover {
        background: rgba(0, 251, 255, 0.1); /* Hover olunca hafif turkuaz */
        color: var(--accent-cyan) !important;
    }
}

/* --- 4. GENEL HERO VE SWIPER --- */
.mySwiper { height: 90vh; background-size: cover; background-position: center; background-repeat: no-repeat; }
.mySwiper .swiper-slide { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; font-size: 18px; background-size: cover; background-position: center; }

.about-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 20px 20px; z-index: 2; }
.hero-container { position: relative; z-index: 10; max-width: 900px; width: 100%; margin: 0 auto; perspective: 1000px; }
.hero-glass { background: rgba(10, 46, 77, 0.3); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 24px; padding: 4rem 3rem; text-align: center; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); transform: translateY(40px); opacity: 0; animation: fadeIn 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.3s; transform-style: preserve-3d; }
.badge-glow { display: inline-block; background: rgba(0, 251, 255, 0.15); color: var(--accent-cyan); border: 1px solid rgba(0, 251, 255, 0.3); padding: 0.6rem 1.8rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2rem; }
.hero-title { color: #ffffff; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem; font-weight: 700; text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); }
.hero-description { color: rgba(255, 255, 255, 0.85); font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300; }
.hero-description strong { color: var(--accent-cyan); font-weight: 600; }
.scroll-down-btn { display: inline-flex; align-items: center; justify-content: center; width: 55px; height: 55px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); transition: all 0.3s ease; text-decoration: none; animation: bounce 2s infinite; }
.scroll-down-btn:hover { background: var(--accent-cyan); color: var(--deep-blue); }

/* --- 5. TIMELINE (Yol Haritası & Tematik Alanlar) --- */
.timeline-nav-section { margin: 100px 0; position: relative; z-index: 2; padding: 0 20px; }
.timeline-wrapper { position: relative; max-width: 1000px; margin: 0 auto; padding-left: 50px; border-left: 2px dashed rgba(0, 251, 255, 0.2); }
.timeline-item { position: relative; margin-bottom: 60px; }
.timeline-dot { position: absolute; left: -72px; top: 0; width: 40px; height: 40px; background: var(--deep-blue); border: 2px solid var(--accent-cyan); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: bold; z-index: 2; box-shadow: 0 0 15px rgba(0, 251, 255, 0.3); }
.timeline-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); padding: 30px; border-radius: 20px; transition: 0.4s; backdrop-filter: blur(10px); }
.timeline-card:hover { border-color: var(--accent-cyan); transform: translateX(10px); background: rgba(255, 255, 255, 0.06); }
.card-tag { font-size: 0.75rem; text-transform: uppercase; color: var(--accent-cyan); letter-spacing: 2px; margin-bottom: 10px; font-weight: 600; }
.timeline-card h3 { font-size: 1.6rem; margin-bottom: 15px; color: #fff; }
.timeline-card p { line-height: 1.6; color: rgba(255, 255, 255, 0.7); }
.sub-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.sub-box h4 { font-size: 1rem; color: var(--accent-cyan); margin-bottom: 10px; }
.sub-box ul { list-style: none; font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); }
.sub-box ul li { margin-bottom: 5px; padding-left: 15px; position: relative; }
.sub-box ul li::before { content: '•'; position: absolute; left: 0; color: var(--accent-cyan); }
.mini-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.mini-grid span { background: rgba(0, 251, 255, 0.05); padding: 8px 15px; border-radius: 20px; font-size: 0.85rem; color: var(--accent-cyan); border: 1px solid rgba(0, 251, 255, 0.2); }

/* Hikaye Kartları (Süs Balıkları) */
.story-cards-wrapper { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
.story-box { background: rgba(0, 0, 0, 0.2); border-left: 3px solid rgba(255, 255, 255, 0.2); padding: 20px; border-radius: 0 12px 12px 0; transition: 0.3s; }
.story-box:hover { background: rgba(0, 0, 0, 0.4); transform: translateX(5px); }
.story-box h4 { font-size: 1.1rem; margin-bottom: 10px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: #fff; }
.story-box h4 span { font-size: 0.8rem; background: rgba(255, 255, 255, 0.1); padding: 4px 12px; border-radius: 20px; }
.story-box p { font-size: 0.9rem; line-height: 1.6; color: rgba(255, 255, 255, 0.7); }
.story-box p strong { color: #fff; }

.kecioren-color { border-left-color: #b388ff !important; } .kecioren-color h4 { color: #b388ff !important; }
.gencler-color { border-left-color: #ff5252 !important; } .gencler-color h4 { color: #ff5252 !important; }
.ankaragucu-color { border-left-color: #ffd740 !important; } .ankaragucu-color h4 { color: #ffd740 !important; }
.milli-color { border-left-color: #ff1744 !important; } .milli-color h4 { color: #ff1744 !important; }

/* --- 6. ENVANTER VE EĞİTİM BÖLÜMLERİ --- */
.inventory-section { padding: 80px 20px; position: relative; z-index: 2; }
.inventory-header { text-align: center; max-width: 900px; margin: 0 auto 60px; }
.inventory-intro { font-size: 1.1rem; line-height: 1.8; color: rgba(255, 255, 255, 0.8); margin-top: 20px; }
.stat-highlight { display: inline-block; min-width: 40px; text-align: center; background: rgba(0, 251, 255, 0.1); color: var(--accent-cyan); font-weight: bold; padding: 2px 10px; border-radius: 6px; border: 1px dashed var(--accent-cyan); margin: 0 4px; }
.inventory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1100px; margin: 0 auto; }
.inventory-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 35px; transition: 0.4s; }
.inventory-card:hover { border-color: var(--accent-cyan); transform: translateY(-5px); background: rgba(255, 255, 255, 0.05); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); }
.inventory-card .card-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.inventory-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.origin-split {}
.origin-col { margin: 20px 0; }
.origin-col h4 { font-size: 1.15rem; color: var(--accent-cyan); margin-bottom: 12px; }
.empty-list { list-style: none; padding: 0; }
.empty-list li { font-size: 0.95rem; color: rgba(255, 255, 255, 0.5); font-style: italic; padding-left: 15px; position: relative; }
.empty-list li::before { content: '-'; position: absolute; left: 0; color: rgba(255, 255, 255, 0.3); }

.experience-section { padding: 60px 20px 120px; position: relative; z-index: 2; }
.experience-glass-panel { background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 251, 255, 0.02) 100%); border: 1px solid rgba(0, 251, 255, 0.15); border-radius: 30px; padding: 60px; backdrop-filter: blur(12px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); }
.experience-content { text-align: center; max-width: 900px; margin: 0 auto 50px; }
.experience-content .sub-title { color: var(--accent-cyan); letter-spacing: 2px; font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 15px; }
.experience-content h2 { font-size: 2.5rem; color: #fff; margin-bottom: 25px; }
.experience-content p { font-size: 1.1rem; line-height: 1.8; color: rgba(255, 255, 255, 0.85); }
.experience-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-box { background: rgba(0, 0, 0, 0.2); padding: 30px; border-radius: 20px; text-align: center; border-top: 3px solid transparent; transition: 0.3s; }
.feature-box:hover { background: rgba(0, 251, 255, 0.05); border-top-color: var(--accent-cyan); transform: translateY(-5px); }
.feature-icon { font-size: 3rem; margin-bottom: 15px; }
.feature-box h4 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.feature-box p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); line-height: 1.5; }

/* --- 7. BİLGİ SEKMELERİ (TABS) & FİYAT TABLOSU --- */
.info-section { padding: 80px 20px; background: #010d1a; }
.info-tabs-container { max-width: 1000px; margin: 40px auto; background: rgba(255, 255, 255, 0.03); border-radius: 30px; overflow: hidden; border: 1px solid rgba(0, 251, 255, 0.1); }
.info-tabs-header { display: flex; background: rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.tab-btn { flex: 1; padding: 20px; border: none; background: transparent; color: #fff; font-weight: 600; cursor: pointer; transition: 0.3s; border-bottom: 3px solid transparent; }
.tab-btn:hover { background: rgba(0, 251, 255, 0.05); }
.tab-btn.active { color: var(--accent-cyan); border-bottom-color: var(--accent-cyan); background: rgba(0, 251, 255, 0.1); }
.tab-content-wrapper { padding: 40px; }
.tab-pane { display: none; animation: fadeIn 0.5s ease; }
.tab-pane.active { display: block; }
.pane-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.pane-text h3 { color: var(--accent-cyan); margin-bottom: 20px; font-size: 1.8rem; }
.info-list { list-style: none; margin: 20px 0; }
.info-list li { margin-bottom: 10px; opacity: 0.9; }
.map-link-btn { display: inline-block; padding: 12px 25px; background: var(--accent-cyan); color: #010d1a; text-decoration: none; border-radius: 50px; font-weight: bold; margin-top: 15px; }
.pane-img img { width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.price-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.price-table th, .price-table td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.price-table th { color: var(--accent-cyan); text-transform: uppercase; font-size: 0.9rem; }
.price-note { margin-top: 20px; font-size: 0.85rem; opacity: 0.6; font-style: italic; }

/* --- 8. HARİTA (KROKİ) BÖLÜMÜ --- */
.compact-route { padding: 80px 20px; background: #010d1a; }
.map-card-wrapper { max-width: 62.5vw; margin: 40px auto; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(0, 251, 255, 0.2); border-radius: 30px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.main-map-area { position: relative; width: 62.5vw; height: 34.09vw; background: #000; display: flex; justify-content: center; align-items: center; }
.map-view { position: relative; width: 100%; height: 100%; }
#krokiDisplay { width: 100%; height: 100%; object-fit: contain; opacity: 0.8; }
.map-pointer { position: absolute; width: 20px; height: 20px; background: var(--accent-coral); border-radius: 50%; z-index: 10; top: 39%; left: 9%; transform: translate(-50%, -50%); transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 0 20px var(--accent-coral); }
.map-pointer::after { content: ''; position: absolute; inset: -8px; border: 2px solid var(--accent-coral); border-radius: 50%; animation: pulseMap 1.5s infinite; }
.step-tooltip { position: absolute; bottom: 20px; right: 20px; background: rgba(2, 27, 51, 0.9); padding: 15px 20px; border-left: 4px solid var(--accent-cyan); backdrop-filter: blur(10px); animation: fadeIn 0.4s ease; }
.step-tooltip h4 { color: var(--accent-cyan); font-size: 1rem; margin-bottom: 5px; }
.step-tooltip p { font-size: 0.8rem; opacity: 0.8; line-height: 1.3; }
.minimal-steps-bar { display: flex; justify-content: space-around; padding: 20px; background: rgba(255, 255, 255, 0.05); border-top: 1px solid rgba(255, 255, 255, 0.1); flex-wrap: wrap; gap: 10px; }
.m-step { background: transparent; border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.m-step .num { background: rgba(255, 255, 255, 0.1); width: 20px; height: 20px; border-radius: 50%; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; }
.m-step:hover, .m-step.active { background: var(--accent-cyan); color: #010d1a; border-color: var(--accent-cyan); }
.m-step.active .num { background: rgba(0,0,0,0.2); }

/* --- 9. AKTİVİTELER BÖLÜMÜ --- */
.activities-section { padding: 100px 20px; position: relative; z-index: 2; }
.activity-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.activity-category { background: linear-gradient(180deg, #021B33 0%, #010d1a 100%); border: 1px solid rgba(0, 251, 255, 0.1); border-radius: 25px; padding: 40px; transition: 0.3s; }
.cat-title { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
.cat-title .icon { font-size: 2.5rem; }
.cat-title h3 { font-size: 1.8rem; color: #fff; }
.activity-list { display: flex; flex-direction: column; gap: 20px; }
.activity-item { background: rgba(0, 0, 0, 0.3); padding: 20px; border-radius: 15px; border-left: 4px solid var(--accent-cyan); }
.activity-item h4 { color: var(--accent-cyan); margin-bottom: 8px; font-size: 1.1rem; }
.activity-item p { font-size: 0.9rem; opacity: 0.8; line-height: 1.4; }
.activity-item.highlight { border-left-color: var(--accent-coral); }
.activity-item.warning { border-left-color: #ffcc00; }
.special-social { background: rgba(255, 127, 80, 0.05); border-left-color: var(--accent-coral); }

/* --- 10. ESKİ TASARIM HAKKIMIZDA & TEMATİK ALANLAR --- */
.about-section { padding: 80px 20px; background: rgba(2, 27, 51, 0.5); position: relative; z-index: 2; }
.about-container { max-width: 1200px; margin: auto; display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.about-image { flex: 1; min-width: 300px; position: relative; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); border: 2px solid var(--glass); }
.experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--accent-coral); padding: 20px; border-radius: 15px; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.experience-badge span { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-text { flex: 1; min-width: 300px; }
.about-text h2 { font-size: 2.5rem; margin: 15px 0 25px; line-height: 1.2; }
.about-text p { margin-bottom: 20px; opacity: 0.8; }
.about-features { list-style: none; margin-bottom: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.check-icon { color: var(--accent-cyan); font-style: normal; font-weight: bold; }
.about-btn { display: inline-block; padding: 12px 30px; background: transparent; border: 2px solid var(--accent-cyan); color: var(--accent-cyan); text-decoration: none; border-radius: 50px; font-weight: 600; transition: 0.3s; }
.about-btn:hover { background: var(--accent-cyan); color: var(--deep-blue); box-shadow: 0 0 20px rgba(0, 251, 255, 0.4); }

.thematic-areas { padding: 100px 20px; background: #021B33; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.8rem; margin: 10px 0; background: linear-gradient(to right, #fff, #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 25px; }
.area-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); padding: 35px 25px; border-radius: 20px; text-align: center; transition: 0.4s all ease; backdrop-filter: blur(10px); }
.area-card:hover { transform: scale(1.1); background: rgba(255, 255, 255, 0.07); border-color: var(--accent-cyan); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
.area-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.area-card h4 { color: var(--accent-cyan); margin-bottom: 15px; font-size: 1.2rem; }
.area-card p { font-size: 0.9rem; line-height: 1.5; opacity: 0.7; }
.area-card.alert:hover { border-color: var(--accent-coral); }
.area-card.special { border: 1px dashed var(--accent-cyan); }
.more-info { text-align: center; margin-top: 50px; font-style: italic; opacity: 0.6; font-size: 0.9rem; }

/* --- 11. KURUMSAL VE SIKÇA SORULAN SORULAR (FAQ) --- */
.corporate-section { padding: 60px 20px; background: rgba(255,255,255,0.02); }
.corporate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.corp-box { padding: 40px; background: rgba(0, 251, 255, 0.03); border-radius: 20px; border: 1px solid rgba(0, 251, 255, 0.1); text-align: center; transition: 0.3s; }
.corp-box:hover { transform: translateY(-5px); border-color: var(--accent-cyan); }
.corp-box .icon { font-size: 3rem; display: block; margin-bottom: 20px; }
.corp-box h3 { color: var(--accent-cyan); margin-bottom: 15px; }

.faq-section { padding: 80px 20px; background: #010d1a; }
.faq-container { max-width: 800px; margin: auto; }
.faq-item { margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-question { width: 100%; padding: 20px; background: none; border: none; color: #fff; display: flex; justify-content: space-between; cursor: pointer; font-size: 1.1rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s ease-out; opacity: 0; }
.faq-item.active .faq-answer { max-height: 100px; opacity: 1; padding: 0 20px 20px; }
.faq-item.active span { transform: rotate(45deg); color: var(--accent-cyan); }

/* --- 12. BLOG (Liste ve Tekil Yazı) --- */
.blog-list-hero { position: relative; height: 45vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(to bottom, rgba(2, 27, 51, 0.6), #021B33), url('/assets/img/header.jpeg') center/cover; z-index: 2; padding-top: 80px;}
.blog-list-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 15px; }
.filter-section { position: relative; z-index: 3; margin: -30px auto 40px; text-align: center; }
.filter-container { background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(10px); padding: 15px 30px; border-radius: 50px; display: inline-flex; flex-wrap: wrap; gap: 15px; border: 1px solid rgba(0, 251, 255, 0.1); }
.filter-btn { background: transparent; border: none; color: #fff; cursor: pointer; padding: 8px 20px; border-radius: 30px; transition: 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--accent-cyan); color: #010d1a; font-weight: bold; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 30px 0;}
.blog-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; overflow: hidden; transition: 0.4s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-10px); border-color: var(--accent-cyan); background: rgba(0, 251, 255, 0.03); }
.blog-card.featured { grid-column: span 2; flex-direction: row; }
.blog-card.featured img { width: 50%; min-height: 100%; }
.blog-card.featured .blog-info { width: 50%; justify-content: center; }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-info { padding: 25px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.85rem; }
.blog-category { background: rgba(0, 251, 255, 0.1); color: var(--accent-cyan); padding: 4px 12px; border-radius: 20px; font-weight: 600; border: 1px solid rgba(0, 251, 255, 0.2); }
.blog-date, .blog-info .date { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.blog-card h3, .blog-info h4 { margin: 0 0 15px; color: #fff; font-size: 1.3rem; line-height: 1.4; transition: 0.3s; }
.blog-card:hover h3 { color: var(--accent-cyan); }
.blog-card p, .blog-info p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 25px; flex: 1; }
.read-more-btn { display: inline-block; padding: 10px 20px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; color: #fff; text-decoration: none; width: max-content; transition: 0.3s; }
.read-more-btn:hover { background: var(--accent-cyan); color: #010d1a; }
.read-more { color: var(--accent-coral); text-decoration: none; font-size: 0.9rem; font-weight: bold; transition: 0.3s; }
.blog-card:hover .read-more { color: var(--accent-cyan); }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 60px; }
.page-num { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); color: #fff; text-decoration: none; border-radius: 50%; font-weight: bold; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.page-num:hover, .page-num.active { background: var(--accent-cyan); color: #010d1a; border-color: var(--accent-cyan); box-shadow: 0 0 15px rgba(0, 251, 255, 0.3); }

/* Tekil Blog İçeriği */
.blog-content-wrapper { position: relative; z-index: 2; max-width: 1200px; margin: 40px auto 80px; background: rgba(2, 27, 51, 0.8); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 50px; }
.blog-quote { border-left: 4px solid var(--accent-coral); background: rgba(255, 127, 80, 0.05); padding: 20px; margin: 30px 0; font-style: italic; font-size: 1.2rem; }
.blog-gallery { height: 400px; margin: 40px 0; border-radius: 15px; overflow: hidden; border: 1px solid rgba(0, 251, 255, 0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.gallery-caption { background: rgba(0,0,0,0.7); color: #fff; padding: 10px; text-align: center; font-size: 0.9rem; position: absolute; bottom: 0; width: 100%; backdrop-filter: blur(5px); }
.blog-gallery .swiper-slide{ background-size: cover; background-position: center;}
/* --- 14. FOOTER --- */
.main-footer { background: #000911; padding: 80px 20px 20px; border-top: 1px solid rgba(0, 251, 255, 0.1); color: rgba(255, 255, 255, 0.7); position: relative; z-index: 2;}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 60px; max-width: 1200px; margin-left: auto; margin-right: auto;}
.footer-col h4 { color: #fff; font-size: 1.2rem; margin-bottom: 25px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 30px; height: 2px; background: var(--accent-cyan); }
.footer-logo h2 { color: #fff; font-size: 1.8rem; margin-bottom: 20px; }
.footer-logo span { color: var(--accent-cyan); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: inherit; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--accent-cyan); padding-left: 5px; }
.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a { width: 35px; height: 35px; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; text-decoration: none; transition: 0.3s; border: 1px solid rgba(255, 255, 255, 0.1);}
.social-links a:hover { background: var(--accent-cyan); color: #010d1a; transform: translateY(-3px); }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; max-width: 1200px; margin: auto;}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: inherit; text-decoration: none; }

/* --- 15. GENEL MEDYA SORGULARI (Tablet & Mobil) --- */
@media (max-width: 992px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-card.featured { grid-column: span 2; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .inventory-grid { grid-template-columns: 1fr; }
    .pane-grid { grid-template-columns: 1fr; }
    .activity-wrapper { grid-template-columns: 1fr; }
    .activity-category { padding: 25px; }
}

@media (max-width: 768px) {
    .hero-glass { padding: 2.5rem 1.5rem; border-radius: 16px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card.featured { grid-column: span 1; flex-direction: column; }
    .blog-card.featured img, .blog-card.featured .blog-info { width: 100%; min-height: unset;}
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .experience-glass-panel { padding: 40px 20px; }
    .about-text h2 { font-size: 1.8rem; }
    .about-features { grid-template-columns: 1fr; }
    .experience-badge { right: 10px; bottom: 10px; padding: 10px; }
    .section-header h2 { font-size: 2rem; }
    .areas-grid { grid-template-columns: 1fr; }
    .step-tooltip { bottom: 10px; right: 10px; left: 10px; max-width: none; }
    .minimal-steps-bar { justify-content: center; }
    .tab-content-wrapper { padding: 20px; }
    .map-card-wrapper{max-width: calc(100vw - 40px);}
    .main-map-area{width: calc(100vw - 40px); height: calc(calc(100vw - 40px) / 1.8);}
}

@media (max-width: 576px) {
    .origin-split { flex-direction: column; gap: 25px; }
}

/* --- MOBİL MENÜ UYUMU (Ekrana sığmadığında devreye girecek kodlar) --- */
@media (max-width: 992px) {
    
    /* 1. Ekran küçüldüğünde hamburger butonunu görünür yap */
    .menu-toggle { 
        display: flex; 
    }

    /* 2. Ana menü linklerini yan yana dizilimden çıkar, ekranın sağına sakla */
    .main-menu { 
        position: fixed;
        top: 0; 
        right: -100%; /* Başlangıçta ekranın dışında gizli */
        width: 75%;
        max-width: 300px;
        height: 100vh; 
        background: var(--deep-blue); /* Lacivert arka plan */
        flex-direction: column; 
        padding-top: 100px; /* Butonlara ve logoya yer açmak için üstten boşluk */
        box-shadow: -10px 0 30px rgba(0,0,0,0.5); 
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0); /* Kayma animasyonu */
        z-index: 1001; 
        overflow-y: auto;
    }

    /* 3. Javascript çalıştığında (tıklanınca) menüyü ekrana sok */
    .main-menu.active {
        right: 0;
    }

    /* 4. Menü içindeki linklerin mobildeki tasarımı */
    .menu-item { 
        width: 100%; 
        padding: 0; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
    }
    
    .menu-item > a { 
        display: block; 
        padding: 20px 30px; 
        font-size: 1.1rem; 
    }

    /* 5. Hamburger İkonunun Çarpıya (X) Dönüşme Animasyonu */
    .menu-toggle.is-open span:nth-child(1) { 
        transform: translateY(8px) rotate(45deg); 
    }
    .menu-toggle.is-open span:nth-child(2) { 
        opacity: 0; 
    }
    .menu-toggle.is-open span:nth-child(3) { 
        transform: translateY(-8px) rotate(-45deg); 
    }

    .timeline-wrapper{
        padding-left: 0;
        border-left: none;
    }

    .timeline-dot{
        display: none;
    }
}

/* ==========================================================================
   ZİYARET SAATLERİ VE PROGRAMI BÖLÜMÜ
   ========================================================================== */

.visit-section {
    padding: 80px 20px 100px;
    background: rgba(1, 13, 26, 0.5);
    position: relative;
    z-index: 2;
}

.visit-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* 8 Kartlık Kusursuz Grid */
.schedule-grid {
    display: grid;
    /* Masaüstünde 4 sütun, tablette 2 sütun, mobilde 1 sütun */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* Standart Gün Kartı */
.day-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.day-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.day-name {
    background: rgba(0, 251, 255, 0.05);
    color: var(--accent-cyan);
    padding: 18px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.day-name:hover{
    transform: unset!important;
    border-color: unset!important;
    box-shadow: unset!important;
}

.day-desc {
    padding: 25px 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.day-desc strong {
    color: #fff;
}

/* Okul Günleri İkiye Bölünmüş Tasarım (Zaman Dilimleri) */
.time-slot {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    flex: 1;
    text-align: center;
}

.time-slot:last-child {
    border-bottom: none;
}

.time-slot .time {
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.3);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 5px;
}

.time-slot .audience {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.time-slot.edu {
    background: rgba(0, 0, 0, 0.15); /* Okul saatleri biraz daha koyu */
}

.time-slot.public {
    background: rgba(0, 251, 255, 0.02); /* Halk saatleri aydınlık */
}
.time-slot.public .time {
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 251, 255, 0.2);
}

/* --- Renk Vurguları (Özel Günler) --- */

/* Pazartesi (Kapalı) */
.day-card.closed .day-name {
    color: var(--accent-coral);
    background: rgba(255, 127, 80, 0.08);
}
.day-card.closed:hover { border-color: var(--accent-coral); }

/* Cumartesi (Ücretsiz/Özel Gruplar) */
.day-card.special .day-name {
    color: #b388ff; /* Açık Mor */
    background: rgba(179, 136, 255, 0.08);
}
.day-card.special:hover { border-color: #b388ff; }

/* 8. Kart (Önemli Notlar) */
.day-card.info-card {
    border: 1px dashed var(--accent-cyan);
    background: rgba(0, 251, 255, 0.02);
}
.day-card.info-card .day-name {
    background: rgba(0, 251, 255, 0.1);
    color: #fff;
    width: 100%;
}
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.info-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}
.info-list li:last-child {
    margin-bottom: 0;
}
.info-list strong {
    color: var(--accent-cyan);
}

/* ==========================================================================
   ORGANİZASYON VE REZERVASYON BÖLÜMÜ
   ========================================================================== */

.organization-section {
    padding: 80px 20px 100px;
    background: rgba(2, 27, 51, 0.5);
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 251, 255, 0.05);
}

.org-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

/* Ana Kartlar */
.org-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(10px);
}

.org-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.org-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.org-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.org-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Kart İçi Maddeleme (Listeler) */
.org-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.org-list li {
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.org-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Özel Renk Vurguları */
.org-card.special-care {
    border-top: 4px solid var(--accent-coral);
}
.org-card.special-care .org-list li::before {
    color: var(--accent-coral);
}
.org-card.special-care:hover {
    border-color: var(--accent-coral);
}

.org-card.school-trip {
    border-top: 4px solid var(--accent-cyan);
}
.org-card.school-trip .org-list li::before {
    color: var(--accent-cyan);
}
.org-card.school-trip:hover {
    border-color: var(--accent-cyan);
}

/* Alt Kısım: Ulaşım ve Rezervasyon Formu */
.org-bottom-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.transport-box, .reservation-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
}

.transport-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.box-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.transport-box h4, .reservation-box h4 {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.transport-box p, .reservation-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.transport-box em {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Rezervasyon Kutusu Özel Tasarım */
.reservation-box {
    background: linear-gradient(135deg, rgba(0, 251, 255, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-color: rgba(0, 251, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-neon-cyan {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-neon-cyan:hover {
    background: var(--accent-cyan);
    color: #010d1a;
    box-shadow: 0 0 20px rgba(0, 251, 255, 0.4);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .org-grid, .org-bottom-grid {
        grid-template-columns: 1fr; /* Tablet ve mobilde alt alta dizecek */
    }
}
@media (max-width: 768px) {
    .org-card {
        padding: 30px 20px;
    }
    .transport-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .reservation-box {
        text-align: center;
    }
}

/* ==========================================================================
   FİYATLANDIRMA (PRICING) BÖLÜMÜ
   ========================================================================== */

.pricing-section {
    padding: 80px 20px 100px;
    background: rgba(1, 13, 26, 0.5);
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-grid {
    display: grid;
    /* Kartların maksimum 2 sütun olmasını sağlar */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 50px auto 0;
}

/* Fiyat Kartı Genel Yapısı */
.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Kartların Tepe Kısımlarına Renk Vurgusu */
.price-card.standard {
    border-top: 5px solid var(--accent-cyan);
}
.price-card.standard:hover {
    border-color: var(--accent-cyan);
}

.price-card.organization {
    border-top: 5px solid var(--accent-coral);
}
.price-card.organization:hover {
    border-color: var(--accent-coral);
}

.card-top {
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-top h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price-card.standard .card-top h3 { color: var(--accent-cyan); }
.price-card.organization .card-top h3 { color: var(--accent-coral); }

.card-top p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Fiyat Listesi Elementleri */
.price-list {
    list-style: none;
    padding: 30px;
    margin: 0;
    flex: 1;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.price-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ticket-type {
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 500;
}

.ticket-type small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: normal;
}

.price-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

/* Okul Kartı Altındaki Önemli Notlar */
.price-notes {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-notes h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 12px;
}

.price-notes p, .price-notes ul {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.price-notes p strong {
    color: #fff;
}

.price-notes ul {
    margin: 12px 0;
    padding-left: 20px;
}

.price-notes li {
    margin-bottom: 8px;
}

.highlight-text {
    color: var(--accent-coral) !important;
    font-weight: bold;
    margin-top: 12px;
    font-size: 0.95rem !important;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta dizer */
        gap: 30px;
    }
    .price-list li {
        flex-direction: column; /* Dar ekranlarda fiyatı alta atar */
        text-align: center;
        gap: 15px;
    }
}

/* ==========================================================================
   ANA SAYFA TEMATİK ALANLAR ÖZETİ
   ========================================================================== */

.home-themes-section {
    padding: 80px 20px 100px;
    background: #010d1a;
    position: relative;
    z-index: 2;
}

.themes-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(384px, 1fr)); /* Esnek kolonlar */
    gap: 20px;
    margin-top: 50px;
}

.theme-mini-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.theme-mini-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 251, 255, 0.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 25px rgba(0, 251, 255, 0.15);
}

/* Kutu içindeki numaralandırma */
.theme-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    background: rgba(0, 251, 255, 0.1);
    color: var(--accent-cyan);
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    margin-right: 20px;
    border: 1px dashed var(--accent-cyan);
    transition: all 0.3s ease;
}

.theme-mini-card:hover .theme-num {
    background: var(--accent-cyan);
    color: #010d1a;
    border-style: solid;
}

.theme-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.theme-tag {
    font-size: 0.75rem;
    color: var(--accent-coral);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.theme-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.theme-mini-card:hover .theme-info h4 {
    color: var(--accent-cyan);
}

/* Buton kapsayıcısı */
.themes-action {
    text-align: center;
    margin-top: 50px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .themes-summary-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun olur */
        gap: 15px;
    }
}

/* ==========================================================================
   MASKOTUMUZ (TİFTİK) BÖLÜMÜ
   ========================================================================== */

.mascot-section {
    padding: 40px 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Sol Taraf: Görsel Alanı */
.mascot-glass-pod {
    background: rgba(255, 255, 255, 0.02);
    padding: 300px 40px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(0, 251, 255, 0.05);
    background-position: 10%;
    background-size: cover;
}

.mascot-glass-pod::before {
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(-0%, -0%);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5) url('/assets/img/tiftik.png') 10%/contain no-repeat;
    z-index: -1;

}

/* Maskot Yüzme/Uçma Animasyonu */
.floating-anim {
    animation: floatMascot 4s ease-in-out infinite;
}

@keyframes floatMascot {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.mascot-name-badge {
    margin-bottom: 15px;
}

.badge-title {
    display: block;
    color: var(--accent-coral);
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 5px;
}

.mascot-name-badge h2 {
    font-size: 3.5rem;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}

.mascot-tagline {
    color: var(--accent-cyan);
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Sağ Taraf: Metin ve İçerik */
.mascot-headline {
    font-size: 2.2rem;
    color: #fff;
    margin: 20px 0;
    line-height: 1.3;
}

.mascot-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.mascot-text strong {
    color: var(--accent-cyan);
}

/* Tasarım Detayları Kutuları */
.mascot-design-elements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.design-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    transition: 0.3s;
}

.design-box:hover {
    background: rgba(0, 251, 255, 0.05);
    border-color: rgba(0, 251, 255, 0.2);
}

.d-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.design-box h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
}

.design-box p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Misyon Kutusu */
.mascot-mission-box {
    display: flex;
    gap: 20px;
    background: linear-gradient(90deg, rgba(255, 127, 80, 0.1) 0%, rgba(255, 127, 80, 0.02) 100%);
    border-left: 4px solid var(--accent-coral);
    padding: 25px;
    border-radius: 0 16px 16px 0;
}

.mission-icon {
    font-size: 2.5rem;
}

.mission-text h4 {
    color: var(--accent-coral);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.mission-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .mascot-wrapper {
        grid-template-columns: 1fr; /* Mobilde alt alta dizilir */
        text-align: center;
    }
    
    .mascot-mission-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--accent-coral);
        border-radius: 16px;
    }
    
    .mascot-glass-pod::before {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 576px) {
    .mascot-design-elements {
        grid-template-columns: 1fr; /* Küçük mobilde detaylar tek sütun */
    }
}

/* ==========================================================================
   RANDEVU AL FORMU (DENİZ DÜNYASI TEMASI)
   ========================================================================== */

.appointment-section {
    padding: 80px 20px 100px;
    position: relative;
    z-index: 2;
}

.appointment-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
}

/* Cam Efektli Ana Kutu */
.appointment-glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 251, 255, 0.15);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* --- ADIM İNDİKATÖRLERİ (STEPS) --- */
.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.step {
    flex: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 0.9rem;
}

.step.active {
    color: var(--accent-cyan);
    font-weight: 700;
}

.step.active .step-num {
    background: var(--accent-cyan);
    color: #010d1a;
}

.step.completed {
    color: var(--accent-coral);
}

.step.completed .step-num {
    background: var(--accent-coral);
    color: #fff;
    content: "✓";
}

.step::after {
    content: "";
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: transparent;
    transition: 0.4s;
}

.step.active::after {
    width: 100%;
    background-color: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.step.completed::after {
    width: 100%;
    background-color: var(--accent-coral);
}

/* --- FORM İÇERİK & GRID --- */
.form-section h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.step-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width {
    grid-column: span 2;
}

/* İNPUT TASARIMLARI */
.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group label small {
    color: var(--accent-cyan);
    font-size: 0.75rem;
}

.glass-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    outline: none;
    transition: 0.3s;
    font-size: 1rem;
}

.glass-input:focus {
    border-color: var(--accent-cyan);
    background: rgba(0, 251, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 251, 255, 0.1);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Açılır Menü (Select) Koyu Tema Fix */
select.glass-input option {
    background: #010d1a;
    color: #fff;
}

/* --- TAKVİM & SAAT TASARIMI (ADIM 1) --- */
.date-time-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.month-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.month-title {
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--accent-cyan);
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover { color: #fff; transform: scale(1.2); }

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
}

.day-label.special { color: var(--accent-coral); }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
}

.calendar-day.available {
    background: rgba(0, 251, 255, 0.05);
    border: 1px solid rgba(0, 251, 255, 0.1);
    color: #fff;
}

.calendar-day.available:hover {
    background: rgba(0, 251, 255, 0.2);
    border-color: var(--accent-cyan);
}

.calendar-day.selected {
    background: var(--accent-cyan);
    color: #010d1a;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 251, 255, 0.4);
}

.calendar-day.unavailable {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    border: 1px solid transparent;
}

.selected-date-text {
    color: var(--accent-cyan);
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 251, 255, 0.2);
    padding-bottom: 10px;
}

.timeslot-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.time-slot {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.time-slot.selected {
    background: var(--accent-cyan);
    color: #010d1a;
    font-weight: bold;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 251, 255, 0.3);
}

/* --- ÖZET KARTLARI (ADIM 3) --- */
.summary-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-item.full { grid-column: span 2; }

.summary-item .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-item strong {
    font-size: 1.1rem;
    color: #fff;
}

.highlight-cyan {
    color: var(--accent-cyan) !important;
    font-size: 1.3rem !important;
}

.info-alert {
    background: rgba(0, 251, 255, 0.05);
    border-left: 4px solid var(--accent-cyan);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 20px 0;
}

.info-alert i {
    color: var(--accent-cyan);
    font-size: 1.5rem;
}

.info-alert p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* --- BUTONLAR & AKSİYON ALANI --- */
.form-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
}

.form-actions.right { justify-content: flex-end; }
.form-actions.split { justify-content: space-between; }

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-neon-coral {
    background: var(--accent-coral);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.05rem;
    box-shadow: 0 0 20px rgba(255, 127, 80, 0.4);
}

.btn-neon-coral:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 127, 80, 0.6);
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .appointment-glass-panel { padding: 30px 20px; }
    .date-time-section, .form-grid, .summary-box { grid-template-columns: 1fr; }
    .step-num { display: block; margin: 0 auto 5px; }
    .form-actions.split { flex-direction: column-reverse; gap: 15px; }
    .form-actions button { width: 100%; }
}

/* ==========================================================================
   İLETİŞİM BÖLÜMÜ (DENİZ DÜNYASI TEMASI)
   ========================================================================== */

.contact-section {
    padding: 80px 20px 100px;
    background: linear-gradient(135deg, #010d1a 0%, #021B33 100%);
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 251, 255, 0.05);
}

.contact-wrapper {
}

/* --- SOL TARAF: BİLGİLER VE HARİTA --- */
.info-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: 0.3s;
    padding: 15px;
}

.info-card:hover {
    background: rgba(0, 251, 255, 0.05);
    border-color: rgba(0, 251, 255, 0.2);
}

.icon-box {
    font-size: 2.5rem;
    line-height: 1;
    background: rgba(0, 251, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(0, 251, 255, 0.2);
}

.info-content h4 {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.info-content a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s;
}

.info-content a:hover { color: var(--accent-cyan); }

/* Vurgulu Kart (Organizasyon) */
.info-card.highlight-card {
    border-left: 4px solid var(--accent-coral);
    background: linear-gradient(90deg, rgba(255, 127, 80, 0.05) 0%, transparent 100%);
}

.info-card.highlight-card .icon-box {
    background: rgba(255, 127, 80, 0.1);
    border-color: rgba(255, 127, 80, 0.2);
}

.info-card.highlight-card h4 { color: var(--accent-coral); }
.info-card.highlight-card em { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }

/* Harita (Map) Kapsayıcısı */
.map-container {
    overflow: hidden;
    padding: 5px; /* Cam panel içine oturtmak için */
    border-radius: 16px;
}

.map-container iframe {
    width: 100%;
    border-radius: 12px;
    display: block;
    filter: grayscale(20%) contrast(110%); /* Haritayı sitenin karanlık tonuna bir tık uydurmak için ufak bir filtre */
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0%) contrast(100%);
}

/* --- SAĞ TARAF: İLETİŞİM FORMU --- */
.contact-form-col {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.contact-form-col h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form-col > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.full-width {
    width: 100%;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Mobilde alt alta dizer */
    }
    
    .contact-form-col {
        padding: 30px 20px;
    }
}
/* ==========================================================================
   AKTİVİTELER SAYFASI (DENİZ DÜNYASI TEMASI)
   ========================================================================== */

.activities-page {
    padding: 100px 0;
    color: #fff;
}

/* Giriş Bölümü */
.intro-box {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(0, 251, 255, 0.1);
}

.intro-box h1 {
    font-size: 2.5rem;
    margin: 15px 0;
    color: #fff;
}

.intro-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
}

/* Yolculuk Adımları (1-15) */
.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    align-items: flex-start;
    transition: 0.3s ease;
}

.step-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 251, 255, 0.03);
    transform: translateX(10px);
}

.step-num {
    flex-shrink: 0;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    width: 60px;
    text-shadow: 0 0 10px rgba(0, 251, 255, 0.3);
}

.step-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    text-align: justify;
}

/* 16. Madde Vurgusu */
.academy-preview {
    border: 1px dashed var(--accent-coral);
    background: rgba(255, 127, 80, 0.05);
}

.academy-preview .step-num {
    color: var(--accent-coral);
    text-shadow: 0 0 10px rgba(255, 127, 80, 0.3);
}

/* Akademi Bölümü */
.academy-section {
    margin-top: 120px;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.section-title p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto 50px;
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.academy-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.academy-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 251, 255, 0.05);
    transform: translateY(-10px);
}

.card-header {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.academy-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        gap: 15px;
    }
    .step-num {
        font-size: 1.8rem;
    }
    .intro-box h1 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   GEZİ ROTASI (HAKKIMIZDA SAYFASI İÇİN)
   ========================================================================== */

.tour-route-section {
    padding: 80px 20px 100px;
    position: relative;
    z-index: 2;
}

.numbered-route-list {
    max-width: 1000px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.route-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

/* Sayı Kutusu Tasarımı */
.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 251, 255, 0.02);
    border: 2px solid var(--accent-cyan);
    border-radius: 14px;
    color: var(--accent-cyan);
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Arial Black', sans-serif;
    box-shadow: 0 0 15px rgba(0, 251, 255, 0.1), inset 0 0 10px rgba(0, 251, 255, 0.05);
    transition: 0.4s ease;
}

.route-step:hover .step-number {
    background: var(--accent-cyan);
    color: #010d1a;
    box-shadow: 0 0 25px rgba(0, 251, 255, 0.4);
    transform: translateY(-5px);
}

/* Metin Kartı (Cam Efekti) */
.route-step .step-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 35px;
    width: 100%;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.route-step:hover .step-content {
    border-color: rgba(0, 251, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.route-step .step-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

/* 16. Madde Vurgusu (Gelecek - Akademi) */
.highlight-step .step-number {
    border-color: var(--accent-coral);
    color: var(--accent-coral);
    box-shadow: 0 0 15px rgba(255, 127, 80, 0.15), inset 0 0 10px rgba(255, 127, 80, 0.1);
}

.highlight-step:hover .step-number {
    background: var(--accent-coral);
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 127, 80, 0.4);
}

.highlight-step .step-content {
    border: 1px dashed var(--accent-coral);
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.05) 0%, transparent 100%);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .route-step {
        flex-direction: column;
        gap: 15px;
    }
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .route-step .step-content {
        padding: 25px 20px;
    }
}

/* ==========================================================================
   GEZİ ROTASI (SWIPER CAROUSEL)
   ========================================================================== */

.route-carousel-section {
    padding: 80px 0;
    background: #010d1a;
    position: relative;
    z-index: 2;
    overflow: hidden; /* Swiper taşmalarını engellemek için */
}

/* Swiper Konteyner Ayarları */
.routeSwiper {
    padding: 20px 10px 60px; /* Alttaki pagination için boşluk */
}

/* Kart Tasarımı */
.route-slide-card {
    position: relative;
    height: 300px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Metni alta yasla */
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    cursor: grab;
}

.route-slide-card:active {
    cursor: grabbing;
}

.route-slide-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 251, 255, 0.03);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 251, 255, 0.1);
}

/* Arka Plandaki Büyük Numara (Watermark) */
.watermark-num {
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 0;
    transition: 0.4s ease;
    font-family: 'Arial Black', sans-serif;
}

.route-slide-card:hover .watermark-num {
    color: rgba(0, 251, 255, 0.08);
    transform: scale(1.1) rotate(5deg);
}

/* Kart İçeriği */
.card-content {
    position: relative;
    z-index: 1;
}

.card-content h3 {
    color: var(--accent-cyan);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Swiper Özel Buton & Nokta Tasarımları */
.routeSwiper .swiper-button-next,
.routeSwiper .swiper-button-prev {
    color: var(--accent-cyan);
    background: rgba(1, 13, 26, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 251, 255, 0.2);
    backdrop-filter: blur(5px);
}

.routeSwiper .swiper-button-next:after,
.routeSwiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.routeSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: 0.3s;
}

.routeSwiper .swiper-pagination-bullet-active {
    background: var(--accent-cyan);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--accent-cyan);
}