/* ==========================================================================
   1. ROOT DEĞİŞKENLER (PREMIUM RENK PALETİ VE GÖLGELER)
   ========================================================================== */
:root {
    --primary: #40706e; 
    --primary-light: #f0f7f6;
    --secondary: #d4af37; 
    --bg-light: #fcfdfd;
    --card-bg: #ffffff;
    --text-dark: #1f2933; 
    --text-light: #52606d;
    --text-muted: #9aa5b1;
    --red: #e15b5b;
    --green: #2ecc71;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 24px 64px rgba(31, 41, 51, 0.08);
    --shadow-primary: 0 12px 32px rgba(64, 112, 110, 0.25);
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   2. TEMEL AYARLAR VE GİZLEME
   ========================================================================== */
body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    margin: 0; padding: 0; 
    scroll-behavior: smooth;
    background-color: var(--bg-light);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(64, 112, 110, 0.03), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.02), transparent 40%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased; 
    transition: background-color 0.4s, color 0.4s;
}

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; color: var(--text-dark); font-weight: 700; line-height: 1.3; }
p { line-height: 1.8; color: var(--text-light); font-size: 16.5px; }

.hidden { display: none !important; }
#success-overlay.hidden, #error-overlay.hidden, #booking-modal.hidden { display: none !important; }

/* ==========================================================================
   3. MENÜ (NAVBAR) VE GECE MODU BUTONU
   ========================================================================== */
nav {
    background: rgba(255, 255, 255, 0.85); padding: 20px 0; position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.5); transition: var(--transition-smooth);
}
.nav-container { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 35px; }
nav a { text-decoration: none; color: var(--text-light); font-weight: 700; font-size: 15.5px; letter-spacing: 0.3px; transition: var(--transition-smooth); position: relative; padding: 5px 0; }
nav a:hover { color: var(--primary); transform: translateY(-2px); }
nav a:after { content: ''; position: absolute; left: 50%; bottom: -2px; transform: translateX(-50%); width: 0; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition-smooth); }
nav a:hover:after { width: 100%; }

.theme-toggle-btn { background: none; border: none; font-size: 20px; cursor: pointer; padding: 5px; border-radius: 50%; transition: var(--transition-bounce); display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-left: 15px; }
.theme-toggle-btn:hover { background: rgba(0,0,0,0.05); transform: rotate(25deg) scale(1.1); }

/* ==========================================================================
   4. GENEL BÖLÜM YAPISI
   ========================================================================== */
.section { padding: 100px 8%; text-align: center; position: relative; }
.section-subtitle { max-width: 600px; margin: -10px auto 50px; font-size: 17px; color: var(--text-muted); }
.packages-section { background-color: #fafcfc; border-top: 1px solid rgba(64, 112, 110, 0.08); border-bottom: 1px solid rgba(64, 112, 110, 0.08); transition: background-color 0.4s; }

.emoji-divider { font-size: 32px; margin-bottom: 15px; display: inline-block; animation: floatEmoji 4s ease-in-out infinite; opacity: 0.9; }
.title-emoji { display: inline-block; vertical-align: middle; animation: floatEmoji 3s ease-in-out infinite reverse; margin-left: 8px; font-size: 0.9em; }
@keyframes floatEmoji { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(5deg); } }

/* ==========================================================================
   5. HAKKIMDA (HERO) VE BUTON ANİMASYONLARI
   ========================================================================== */
.about-section { padding: 120px 8% 100px; }
.about-container { display: flex; align-items: center; justify-content: center; gap: 80px; max-width: 1100px; margin: 0 auto; text-align: left; }

.about-image { position: relative; flex: 0 0 350px; width: 350px; height: 350px; }
.about-image img { 
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%; 
    box-shadow: var(--shadow-lg); border: 8px solid var(--card-bg); 
    transition: var(--transition-bounce); z-index: 1; position: relative; 
    background-color: var(--primary-light); display: block; 
}
.about-image:hover img { transform: scale(1.05) rotate(-2deg); box-shadow: 0 30px 70px rgba(64, 112, 110, 0.15); }

.blob-bg {
    position: absolute; top: -20px; left: -20px; right: -20px; bottom: -20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #f4f9f9 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; z-index: 0;
    animation: morphBlob 10s ease-in-out infinite alternate;
}
@keyframes morphBlob { 0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: scale(1) rotate(0deg); } 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1.08) rotate(10deg); } }

.about-content { flex: 1; }
.about-content h1 { font-size: 3.5em; margin: 0 0 15px 0; color: var(--text-dark); letter-spacing: -1.5px; line-height: 1.15; }
.lead-text { font-size: 20px !important; font-weight: 700; color: var(--primary) !important; margin-bottom: 25px; }
.about-text-blocks p { font-size: 17px; margin-bottom: 18px; }

.btn { 
    display: inline-block; background: var(--primary); color: #fff; border: 2px solid var(--primary); 
    padding: 16px 36px; border-radius: 50px; font-size: 16px; font-weight: 800; cursor: pointer; 
    text-decoration: none; box-shadow: var(--shadow-primary); transition: var(--transition-smooth); 
    letter-spacing: 0.5px; text-align: center; position: relative; overflow: hidden; z-index: 1;
}
.btn::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); transition: 0.7s; z-index: -1;
}
.btn:hover { background: #325a58; border-color: #325a58; transform: translateY(-4px); box-shadow: 0 15px 40px rgba(64, 112, 110, 0.4); color:#fff; }
.btn:hover::after { left: 150%; }

.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); box-shadow: none; }
.btn-outline::after { background: linear-gradient(to right, rgba(64, 112, 110, 0) 0%, rgba(64, 112, 110, 0.1) 50%, rgba(64, 112, 110, 0) 100%); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-4px); box-shadow: var(--shadow-primary); }

.about-btn { margin-top: 15px; }

/* ==========================================================================
   6. NEDEN UYKU YOLCULUĞU BÖLÜMÜ
   ========================================================================== */
.why-us-container { 
    display: flex; align-items: center; justify-content: center; gap: 60px; max-width: 1200px; margin: 0 auto; text-align: left; 
    background: var(--card-bg); padding: 50px; border-radius: 40px; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.03); transition: var(--transition-smooth); 
}
.why-us-container:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.why-us-image { flex: 0 0 45%; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-sm); }
.why-us-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.why-us-image:hover img { transform: scale(1.08); }

.why-us-content { flex: 1; }
.why-us-content h2 { font-size: 2.8em; margin: 0 0 15px 0; color: var(--text-dark); position: relative; padding-bottom: 15px;}
.why-us-content h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 4px; background: var(--primary); border-radius: 3px; transition: width 0.4s; }
.why-us-container:hover h2::after { width: 100px; }

.why-lead { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 25px; }

.why-list { list-style: none; padding: 0; margin: 0 0 25px 0; }
.why-list li { position: relative; padding-left: 30px; margin-bottom: 18px; font-size: 16.5px; color: var(--text-light); line-height: 1.6; transition: var(--transition-smooth); }
.why-list li:hover { transform: translateX(5px); color: var(--primary); }
.why-list li::before { content: '—'; position: absolute; left: 0; top: 0; color: var(--secondary); font-weight: bold; font-size: 18px; transition: 0.3s; }
.why-list li:hover::before { color: var(--primary); transform: scale(1.2); }
.why-list li strong { color: var(--text-dark); }

.why-outro { font-size: 16px; font-style: italic; color: var(--text-muted); border-left: 3px solid var(--primary-light); padding-left: 15px; margin-bottom: 30px; }
.why-btn { padding: 12px 28px; font-size: 15px; border-radius: 12px; }

/* ==========================================================================
   7. PREMIUM EĞİTİM PAKETLERİ
   ========================================================================== */
.packages { display: flex; justify-content: center; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.package-card { 
    background: var(--card-bg); width: 320px; min-height: 600px; padding: 50px 35px 45px; 
    border-radius: 30px; box-shadow: var(--shadow-md); position: relative; 
    transition: var(--transition-bounce); display: flex; flex-direction: column; 
    align-items: center; text-align: center; border: 1px solid rgba(0,0,0,0.03); 
}
.package-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 30px 60px rgba(64,112,110,0.12); border-color: rgba(64,112,110,0.2); }
.package-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60%; height: 4px; border-radius: 0 0 10px 10px; opacity: 0.8; transition: var(--transition-smooth); }
.package-card:hover::before { width: 100%; }

.package-card.featured::before { background: var(--primary); width: 80%; opacity: 1; }
.package-card.popular::before { background: var(--red); }
.package-card.eco::before { background: var(--green); }

.badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 7px 22px; border-radius: 30px; font-weight: 800; font-size: 11px; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; box-shadow: 0 8px 20px rgba(0,0,0,0.15); z-index: 2; transition: 0.3s; }
.package-card:hover .badge { transform: translateX(-50%) translateY(-5px); }

.badge-popular { background: linear-gradient(135deg, #ff7675 0%, #e15b5b 100%); }
.badge-premium { background: linear-gradient(135deg, #4ea3a0 0%, #40706e 100%); }
.badge-eco { background: linear-gradient(135deg, #55efc4 0%, #00b894 100%); }

.discount-flag { position: absolute; top: -20px; right: -20px; background: linear-gradient(135deg, #ff7675 0%, #e15b5b 100%); color: white; width: 70px; height: 70px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; line-height: 1.2; box-shadow: 0 8px 25px rgba(225,91,91,0.5); transform: rotate(15deg); z-index: 5; animation: pulseBadge 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite; text-align: center; border: 4px solid var(--card-bg); transition: border-color 0.4s; }
@keyframes pulseBadge { 0%, 100% { transform: scale(1) rotate(15deg); } 50% { transform: scale(1.1) rotate(20deg); box-shadow: 0 15px 35px rgba(225,91,91,0.7); } }

.package-card h3 { font-size: 26px; margin: 15px 0 10px; color: var(--text-dark);}
.price { font-size: 42px; font-weight: 900; color: var(--primary); font-family: system-ui, Arial, Helvetica, sans-serif; margin-bottom: 25px; letter-spacing: -1px;}
.price-container { display: flex; flex-direction: column; margin-bottom: 25px; }
.price-original { font-size: 19px; text-decoration: line-through; color: var(--text-muted); font-weight: 800; margin-bottom: -5px; font-family: system-ui, Arial, Helvetica, sans-serif;}
.price-discounted { font-size: 42px; font-weight: 900; color: var(--red); font-family: system-ui, Arial, Helvetica, sans-serif; letter-spacing: -1px;}

.package-card ul { list-style: none; padding: 0; margin: 0 0 30px 0; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 25px; transition: border-color 0.4s; text-align: left; width: 100%; flex-grow: 1; }
.package-card ul li { padding: 12px 0; color: var(--text-light); font-size: 15px; position: relative; padding-left: 28px; line-height: 1.5; transition: 0.3s;}
.package-card ul li:hover { color: var(--text-dark); transform: translateX(3px); }
.package-card ul li:before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 900; background: var(--primary-light); width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 10px; top: 14px; transition: 0.3s;}
.package-card ul li:hover:before { background: var(--primary); color: #fff; transform: scale(1.2); }

/* ==========================================================================
   8. UYKU HESAPLAYICI (CALCULATOR)
   ========================================================================== */
.calc-container { display: flex; flex-wrap: wrap; gap: 30px; max-width: 900px; margin: 0 auto; background: var(--card-bg); padding: 40px; border-radius: 30px; box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.04); text-align: left; transition: var(--transition-smooth); }
.calc-container:hover { box-shadow: 0 30px 70px rgba(0,0,0,0.08); transform: translateY(-5px); }
.calc-input-box { flex: 1; min-width: 300px; }
.calc-result-box { flex: 1; min-width: 300px; background: var(--bg-light); border-radius: 20px; padding: 30px; border: 1px solid rgba(0,0,0,0.03); transition: background-color 0.4s;}
.calc-input-box label { display: block; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; font-size: 15px;}
.calc-input { width: 100%; padding: 15px 20px; border: 2px solid #e2e8f0; border-radius: 12px; font-size: 16px; font-family: inherit; background: #f8fafc; color: #1e293b; transition: 0.3s; margin-bottom: 5px; box-sizing: border-box;}
.calc-input:focus { border-color: var(--primary); outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(64,112,110,0.1); }

.timeline { border-left: 3px dashed var(--primary-light); padding-left: 25px; margin-left: 10px; margin-top: 10px; transition: border-color 0.4s;}
.timeline-item { position: relative; margin-bottom: 25px; animation: slideInLeft 0.5s ease forwards; opacity: 0; }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before { content:''; position: absolute; left: -33px; top: 2px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 3px solid var(--card-bg); box-shadow: 0 0 0 3px var(--primary-light); transition: var(--transition-bounce);}
.timeline-item:hover::before { transform: scale(1.4); }

.timeline-title { font-weight: 800; color: var(--text-dark); font-size: 16px; margin: 0 0 5px 0; display: flex; align-items: center; justify-content: space-between; transition: color 0.4s;}
.timeline-time { background: var(--primary-light); color: var(--primary); padding: 4px 10px; border-radius: 8px; font-size: 14px; transition: var(--transition-smooth);}
.timeline-item:hover .timeline-time { background: var(--primary); color: #fff; transform: scale(1.05); }

.timeline-desc { color: var(--text-muted); font-size: 13.5px; margin: 0;}
.night-sleep-item::before { background: var(--secondary); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);}
.night-sleep-item .timeline-time { background: rgba(212, 175, 55, 0.1); color: var(--secondary); }
.night-sleep-item:hover .timeline-time { background: var(--secondary); color: #fff; }

/* ==========================================================================
   9. YORUMLAR (SONSUZ DÖNGÜ SLIDER)
   ========================================================================== */
.slider-container { width: 100%; max-width: 1200px; margin: 0 auto; overflow: hidden; padding: 20px 0; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.slider-track { display: flex; gap: 30px; align-items: stretch; }
.slide { min-width: calc(33.333% - 20px); background: var(--card-bg); padding: 40px; border-radius: 24px; box-shadow: var(--shadow-sm); text-align: left; box-sizing: border-box; font-style: italic; border: 1px solid rgba(0,0,0,0.02); transition: var(--transition-bounce); display: flex; flex-direction: column; justify-content: space-between; }
.slide:hover { box-shadow: var(--shadow-md); transform: translateY(-8px) scale(1.02); border-color: var(--primary-light); }

/* ==========================================================================
   10. TAKVİM VE RANDEVU FORMU (YENİ GENİŞ YAPI)
   ========================================================================== */
#randevu { margin: 60px 5%; padding: 100px 5%; border-radius: 40px; background: linear-gradient(135deg, #fdfbfb 0%, #f4f7f6 100%); box-shadow: inset 0 0 100px rgba(0,0,0,0.02); transition: background 0.4s; }
.calendar-wrapper { background: var(--card-bg); max-width: 750px; margin: 40px auto 0; border-radius: 30px; box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid rgba(0,0,0,0.04); transition: var(--transition-smooth);}
.calendar-wrapper:hover { box-shadow: 0 30px 80px rgba(0,0,0,0.1); transform: translateY(-5px); }

.calendar-header { background: var(--primary); color: #fff; padding: 25px; font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: 2px; display: flex; justify-content: space-between; align-items: center;}
.calendar-header span { transition: var(--transition-bounce); user-select: none; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); cursor: pointer; }
.calendar-header span:hover { background: rgba(255,255,255,0.3); transform: scale(1.15) rotate(5deg); }

.calendar-grid-advanced { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; padding: 25px; background: var(--card-bg); transition: background-color 0.4s; border-radius: 0 0 30px 30px; }
.day { aspect-ratio: 1/1; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--bg-light); cursor: pointer; font-weight: 800; font-size: 18px; color: var(--text-dark); border: 2px solid transparent; border-radius: 16px; transition: var(--transition-bounce); box-sizing: border-box; position: relative;}
.day-name { font-size: 11px; color: var(--text-muted); font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px;}
.day:hover:not(.disabled-day):not(.empty-day) { background: var(--primary-light); color: var(--primary); border-color: var(--primary); transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 20px rgba(64,112,110,0.15); z-index: 1; }
.day.active { background: var(--primary); color: #fff; transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-primary); z-index: 2;}
.day.active .day-name { color: rgba(255,255,255,0.8); }

.day.empty-day { background: transparent !important; border: none !important; box-shadow: none !important; pointer-events: none; cursor: default; }
.disabled-day { background-color: #f1f5f9 !important; color: #cbd5e1 !important; cursor: not-allowed !important; pointer-events: none; }
.disabled-day .day-name { color: #cbd5e1 !important; }
.cal-note { font-size: 10px; color: var(--red); position: absolute; bottom: 5px; width: 100%; text-align: center; line-height: 1; font-weight: 700;} 

/* Modallar */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.4); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 10000; display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); padding: 20px; box-sizing: border-box; opacity: 1; visibility: visible; }
.modal-overlay.hidden { opacity: 0; visibility: hidden; backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); pointer-events: none; }
.modal-content { background: var(--card-bg); padding: 50px; border-radius: 30px; box-shadow: 0 35px 100px rgba(0,0,0,0.4); width: 100%; max-width: 650px; text-align: left; position: relative; transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); max-height: 90vh; overflow-y: auto; transform: scale(1) translateY(0); }
.modal-overlay.hidden .modal-content { transform: scale(0.9) translateY(40px); }
.close-btn { position: absolute; top: 25px; right: 30px; font-size: 32px; font-weight: 300; color: var(--text-muted); cursor: pointer; transition: var(--transition-bounce); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-light); line-height: 0;}
.close-btn:hover { background: #ffebeb; color: var(--red); transform: rotate(90deg) scale(1.1); }

/* DÜZELTİLMİŞ GENİŞ FORM YAPISI (Kutu ve Izgara Sistemi) */
.form-section { border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 25px; margin-bottom: 25px; }
.section-title-small { font-size: 18px; color: var(--text-dark); margin-bottom: 20px; font-weight: 800; display: flex; align-items: center; }
.section-title-small::before { content: ''; width: 6px; height: 20px; background: var(--primary); border-radius: 5px; margin-right: 10px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;}

.form-group { margin-bottom: 20px; text-align: left; }
.form-group label.main-label { font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 8px; font-size: 14.5px; }

.admin-input { width: 100%; padding: 16px 20px; border: 2px solid #e2e8f0; border-radius: 12px; font-size: 15.5px; font-family: inherit; background: #f8fafc; color: #1e293b; transition: 0.3s; box-sizing: border-box; outline: none; margin-bottom: 0;}
.admin-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(64,112,110,0.1); transform: translateY(-2px); }
textarea.admin-input { resize: vertical; min-height: 100px; }

.radio-vertical { display: flex; flex-direction: column; gap: 10px; }
.radio-horizontal { display: flex; flex-direction: row; gap: 25px; flex-wrap: wrap; margin-top: 5px;}
.radio-horizontal label, .radio-vertical label { color: var(--text-light); font-size: 14.5px; display: flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 600; transition: color 0.2s;}
.radio-horizontal label:hover, .radio-vertical label:hover { color: var(--primary); }
.radio-horizontal input, .radio-vertical input { width: 18px; height: 18px; margin: 0; cursor: pointer; accent-color: var(--primary); transition: transform 0.2s;}
.radio-horizontal input:hover, .radio-vertical input:hover { transform: scale(1.2); }

#payment-area { transition: var(--transition-smooth); }
#payment-area p { margin: 0 0 10px 0; }
#submit-btn:disabled { cursor: not-allowed; filter: grayscale(1); opacity: 0.5; transform: none !important; box-shadow: none !important; }

/* ==========================================================================
   11. BLOG BÖLÜMÜ
   ========================================================================== */
.blog-slider-wrapper { display: flex; align-items: center; justify-content: center; gap: 20px; max-width: 1250px; margin: 0 auto; position: relative; }
.blog-slider-container { overflow: hidden; width: 100%; padding: 30px 10px; } 
.blog-track { display: flex; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); gap: 40px; justify-content: flex-start; }
.blog-card { flex: 0 0 calc(33.333% - 27px); max-width: calc(33.333% - 27px); background: var(--card-bg); border-radius: 30px; overflow: hidden; text-align: left; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04); transition: var(--transition-bounce); display: flex; flex-direction: column; cursor: pointer; }
.blog-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 25px 60px rgba(0,0,0,0.1); border-color: var(--primary-light); }
.blog-image-wrapper { width: 100%; height: 240px; overflow: hidden; position: relative; }
.blog-image-wrapper::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.05)); pointer-events: none; }
.blog-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.blog-card:hover img { transform: scale(1.1); }
.blog-date { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.95); backdrop-filter: blur(5px); color: var(--primary); font-weight: 800; font-size: 12px; padding: 8px 16px; border-radius: 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); letter-spacing: 0.5px; z-index: 2; transition: var(--transition-bounce);}
.blog-card:hover .blog-date { transform: scale(1.05) translateY(-3px); }
.blog-content { padding: 35px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-tag { align-self: flex-start; background: #fff0f0; color: var(--red); padding: 6px 16px; border-radius: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; border: 1px solid #ffe4e4; z-index: 10; position: relative; transition: var(--transition-bounce);}
.blog-tag:hover { background: var(--red); color: #fff; transform: scale(1.1) rotate(-3deg); }
.blog-card h3 { font-size: 24px; margin: 0 0 15px 0; color: var(--text-dark); line-height: 1.4; transition: color 0.3s; }
.blog-card p { font-size: 15px; margin-bottom: 25px; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; color: var(--text-light);}
.blog-read-more { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 800; font-size: 14px; text-decoration: none; transition: 0.3s; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 20px; text-transform: uppercase; letter-spacing: 1px; }
.blog-read-more .arrow { transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); font-size: 18px; }
.blog-card:hover .blog-read-more { color: #325a58; }
.blog-card:hover .blog-read-more .arrow { transform: translateX(12px) scale(1.2); }
.blog-nav-btn { background: var(--card-bg); color: var(--primary); font-size: 22px; font-weight: bold; border: 2px solid var(--primary-light); border-radius: 50%; width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-bounce); z-index: 10; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.blog-nav-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: scale(1.15); box-shadow: var(--shadow-primary); }

/* ==========================================================================
   12. SIKÇA SORULANLAR (AKORDİYON)
   ========================================================================== */
.faq-container { max-width: 850px; margin: 40px auto 0; text-align: left; }
.faq-item { background: var(--card-bg); border: 1px solid rgba(0,0,0,0.04); border-radius: 20px; margin-bottom: 15px; box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition-smooth); }
.faq-item:hover { box-shadow: var(--shadow-md); transform: translateX(5px); border-color: var(--primary-light); }
.faq-question { width: 100%; background: none; border: none; padding: 25px 35px; font-size: 17.5px; font-weight: 700; color: var(--text-dark); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition-smooth); font-family: inherit; line-height: 1.4; }
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 26px; color: var(--primary); transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); line-height: 1; font-weight: 300;}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s; background-color: var(--card-bg); }
.faq-answer p { padding: 0 35px 30px; margin: 0; font-size: 16px; color: var(--text-light); line-height: 1.8; opacity: 0; transition: opacity 0.4s ease 0.2s; transform: translateY(-10px); }
.faq-item.active { border: 2px solid var(--primary); box-shadow: var(--shadow-primary); transform: translateX(0); }
.faq-item.active .faq-answer { max-height: 800px; background-color: var(--bg-light); }
.faq-item.active .faq-answer p { opacity: 1; transform: translateY(0); }
.faq-item.active .faq-icon { transform: rotate(135deg) scale(1.2); color: var(--red); }
.faq-item.active .faq-question { color: var(--primary); background-color: var(--bg-light); padding-bottom: 15px;}

/* ==========================================================================
   13. YARDIMCI ELEMENTLER VE YENİ ANİMASYONLAR
   ========================================================================== */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #fff; display: flex; align-items: center; justify-content: center; z-index: 100000; transition: opacity 0.6s ease; }
#preloader .spinner { width: 60px; height: 60px; border: 4px solid var(--primary-light); border-top: 4px solid var(--primary); border-radius: 50%; animation: spin 1s cubic-bezier(0.55, 0.15, 0.45, 0.85) infinite; box-shadow: 0 0 20px rgba(64,112,110,0.2); }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.site-alert { position: fixed; top: 30px; left: 50%; transform: translateX(-50%) translateY(-100px); background: #fff; color: #1a252f; padding: 18px 30px; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); z-index: 100000; display: flex; align-items: center; gap: 12px; font-weight: 700; opacity: 0; transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); pointer-events: none; border: 1px solid rgba(0,0,0,0.05); border-left: 6px solid var(--primary); font-size: 16px; }
.site-alert.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.site-alert.error { border-left-color: var(--red); }
.site-alert.warning { border-left-color: var(--secondary); }
.site-alert.success { border-left-color: #10b981; }

/* ==========================================================================
   14. FOOTER & WHATSAPP
   ========================================================================== */
.wa-float { position: fixed; bottom: 35px; right: 35px; background: #25d366; border-radius: 50%; width: 65px; height: 65px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,0.4); z-index: 1000; transition: var(--transition-bounce); }
.wa-float img { width: 36px; height: 36px; }
.wa-float:hover { transform: scale(1.15) rotate(15deg) translateY(-5px); box-shadow: 0 15px 40px rgba(37,211,102,0.7); }

footer { background: #111827; color: #fff; padding: 80px 10% 60px; text-align: center; font-size: 16px; margin-top: 100px; border-radius: 60px 60px 0 0;}
.footer-links { margin: 40px 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;}
footer a { color: #94a3b8; text-decoration: none; transition: 0.3s; font-size: 15px; font-weight: 600; letter-spacing: 0.5px;}
footer a:hover { color: #fff; transform: translateY(-3px) scale(1.05); display: inline-block; }

.social-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; font-size: 18px; font-weight: bold; margin-top: 20px;}
.social-links a { color: #fff; text-decoration: none; position: relative; padding-bottom: 5px; transition: 0.3s; display: inline-block;}
.social-links a:hover { transform: translateY(-3px); }
.social-links a:after { content: ''; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px; background: var(--primary); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); transform: translateX(-50%);}
.social-links a:hover:after { width: 100%; background: #fff; }

.footer-legal { margin-top: 40px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; align-items: center; }
.footer-legal a { font-size: 14px; position: relative; }
.footer-legal a:not(:last-child)::after { content: '|'; position: absolute; right: -10px; color: #475569; pointer-events: none; }

.footer-copyright { margin-top: 40px; font-size: 13px; color: #64748b; line-height: 1.6; }

/* ==========================================================================
   15. BLOG DETAY VE YASAL SAYFALAR ORTAK OKUMA ALANI
   ========================================================================== */
.blog-detail-container { max-width: 850px; margin: 0 auto; background: var(--card-bg); padding: 70px 60px; border-radius: 40px; box-shadow: var(--shadow-lg); text-align: left; border: 1px solid rgba(0,0,0,0.03); transition: background-color 0.4s;}
.blog-detail-header { margin-bottom: 40px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 30px; }
.blog-date-text { font-size: 15px; color: var(--text-muted); font-weight: 700; margin-top: 20px; display: block; letter-spacing: 1px; text-transform: uppercase;}
#detay-baslik { margin: 20px 0 0 0; font-size: 46px; color: var(--text-dark); line-height: 1.2; letter-spacing: -1px; }
#detay-icerik { font-size: 18px; line-height: 1.9; color: var(--text-dark); }
#detay-icerik p { margin-bottom: 20px; color: var(--text-light);}
#detay-icerik img, #detay-icerik iframe, #detay-icerik video { max-width: 100%; border-radius: 20px; height: auto; margin: 30px 0; box-shadow: var(--shadow-sm); transition: transform 0.4s;}
#detay-icerik img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* ==========================================================================
   16. ÇEREZ ONAY (COOKIE CONSENT) TASARIMI
   ========================================================================== */
.cookie-banner { position: fixed; bottom: 30px; left: 30px; max-width: 400px; background: var(--card-bg); padding: 25px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); z-index: 100000; border: 1px solid rgba(0,0,0,0.05); display: flex; flex-direction: column; gap: 15px; transform: translateY(150%); transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-content { display: flex; align-items: center; gap: 15px; }
.cookie-icon { font-size: 32px; line-height: 1; animation: floatEmoji 3s ease-in-out infinite;}
.cookie-content p { font-size: 13px; color: var(--text-light); margin: 0; line-height: 1.5; }
.cookie-content a { color: var(--primary); font-weight: bold; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; width: 100%; }
.cookie-btn { padding: 12px 0; font-size: 13.5px; flex: 1; text-align: center; border-radius: 12px; cursor: pointer; border: none; transition: var(--transition-smooth); font-weight: bold;}
.cookie-btn.accept { background: var(--primary); color: #fff; }
.cookie-btn.accept:hover { background: #325a58; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(64,112,110,0.3); }
.cookie-btn.reject { background: #f1f5f9; color: var(--text-dark); box-shadow: none; font-weight: 700;}
.cookie-btn.reject:hover { background: #e2e8f0; transform: translateY(-2px); }

/* ==========================================================================
   17. RESPONSIVE VE MOBİL UYUM
   ========================================================================== */
@media (max-width: 1100px) { 
    .blog-card { flex: 0 0 calc(50% - 20px); max-width: calc(50% - 20px); } 
    .about-container { gap: 40px; }
}
@media (max-width: 992px) {
    .why-us-container { flex-direction: column; padding: 30px; }
    .why-us-image { flex: auto; width: 100%; }
    .why-us-content h2::after { left: 50%; transform: translateX(-50%); }
    .why-us-content, .why-us-container { text-align: center; }
    .why-list li { text-align: left; }
    .why-outro { border-left: none; padding-left: 0; border-top: 1px solid var(--primary-light); padding-top: 15px; }
}
@media (max-width: 768px) {
    nav { padding: 12px 0; }
    .nav-container { gap: 20px; padding: 0 20px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .nav-container::-webkit-scrollbar { display: none; }
    nav a { font-size: 15px; padding: 5px 0; white-space: nowrap; }
    .theme-toggle-btn { margin-left: 0; flex-shrink: 0; }

    .section { padding: 80px 5%; }
    .about-container { flex-direction: column; text-align: center; gap: 40px; }
    .about-image { width: 280px; height: 280px; flex: 0 0 280px; }
    .about-content h1 { font-size: 2.5em; }
    .about-content div[style*="display: flex"] { justify-content: center; }
    .slide { min-width: calc(100% - 0px); }
    .packages { flex-direction: column; align-items: center; }
    #randevu { margin: 30px 4%; padding: 60px 5%; border-radius: 30px;}
    .blog-detail-container { padding: 40px 25px; border-radius: 25px;}
    #detay-baslik { font-size: 32px; }
    .faq-question { padding: 20px 25px; font-size: 16px; }
    .faq-answer p { padding: 0 25px 25px; font-size: 15px; }
    
    /* Mobil Form Düzeltmeleri */
    .modal-content { padding: 35px 20px; max-width: 100%; }
    .form-row, .form-grid { grid-template-columns: 1fr; gap: 0; }
    
    /* Footer Mobil Düzenlemesi */
    footer { border-radius: 40px 40px 0 0; padding: 60px 5% 110px; } 
    .social-links { gap: 15px; font-size: 15px; }
    .footer-legal { flex-direction: column; gap: 12px; margin-top: 30px; }
    .footer-legal a:not(:last-child)::after { content: none; } 
    
    .cookie-banner { bottom: 15px; left: 15px; right: 15px; max-width: auto; padding: 20px; }
    
    /* HESAPLAYICI MOBİL DÜZELTME */
    .calc-container { padding: 25px 20px; flex-direction: column; gap: 20px; border-radius: 20px; }
    .calc-input-box, .calc-result-box { min-width: 100%; width: 100%; flex: none; }
    .calc-result-box { padding: 20px 15px; }
    
    /* TAKVİM MOBİL DÜZELTME (ORİJİNAL KARE TASARIM İÇİN) */
    .calendar-grid-advanced { gap: 6px; padding: 15px; border-radius: 0 0 20px 20px; }
    .day { font-size: 15px; border-radius: 10px; }
    .day-name { font-size: 9px; margin-bottom: 2px; }

    /* BLOG MOBİL DÜZELTMESİ */
    .blog-slider-wrapper { display: block; position: relative; padding: 0 20px; }
    .blog-slider-container { width: 100%; padding: 10px 0; overflow: hidden; }
    .blog-track { gap: 30px; }
    .blog-card { flex: 0 0 100%; max-width: 100%; }
    .blog-nav-btn { position: absolute; top: 40%; transform: translateY(-50%); width: 45px; height: 45px; font-size: 20px; z-index: 20; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
    #blog-prev { left: -10px; }
    #blog-next { right: -10px; }
}

/* ==========================================================================
   18. GECE MODU (DARK MODE) SİSTEMİ 🌙
   ========================================================================== */
[data-theme="dark"] {
    --bg-light: #0f172a;
    --card-bg: #1e293b;
    --text-dark: #f8fafc;
    --text-light: #cbd5e1;
    --primary-light: rgba(64, 112, 110, 0.2);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] body { background-image: none; }
[data-theme="dark"] nav { background: rgba(15, 23, 42, 0.85); border-bottom: 1px solid rgba(255,255,255,0.05); }

/* Arkaplanı Kararacak Kart ve Kutu Sınıfları */
[data-theme="dark"] .package-card, 
[data-theme="dark"] .slide, 
[data-theme="dark"] .blog-card, 
[data-theme="dark"] .faq-item, 
[data-theme="dark"] .calendar-wrapper, 
[data-theme="dark"] .modal-content, 
[data-theme="dark"] .blog-detail-container,
[data-theme="dark"] .why-us-container { background: var(--card-bg); border-color: rgba(255,255,255,0.05); }

[data-theme="dark"] .faq-answer, [data-theme="dark"] .calendar-grid-advanced { background-color: var(--card-bg); }
[data-theme="dark"] .faq-item.active .faq-answer, [data-theme="dark"] .faq-item.active .faq-question { background-color: #0f172a; }

/* Admin Paneli ve Form Karanlık Mod Düzeltmeleri */
[data-theme="dark"] .form-section { border-bottom-color: rgba(255,255,255,0.05); }
[data-theme="dark"] .section-title-small { color: #f8fafc; }
[data-theme="dark"] .form-group { background: transparent; border-color: rgba(255,255,255,0.05); }
[data-theme="dark"] .form-group label.main-label { color: #f8fafc; }
[data-theme="dark"] .radio-horizontal label, [data-theme="dark"] .radio-vertical label { color: #cbd5e1; }
[data-theme="dark"] .bg-white, [data-theme="dark"] section > div[style*="background-color: white"], [data-theme="dark"] .card { background-color: var(--card-bg) !important; color: var(--text-dark) !important; border: 1px solid rgba(255,255,255,0.05) !important; }

/* Ödeme Alanı Gece Modu */
[data-theme="dark"] #payment-area { background: rgba(212, 175, 55, 0.1) !important; border-color: rgba(212, 175, 55, 0.2) !important; }
[data-theme="dark"] #payment-area p { color: #cbd5e1 !important; }
[data-theme="dark"] #payment-area b { color: var(--secondary) !important; }

/* Neden Uyku Yolculuğu Gece Modu */
[data-theme="dark"] .why-list li strong { color: #f8fafc; }
[data-theme="dark"] .why-outro { border-left-color: #334155; }
[data-theme="dark"] .why-list li::before { color: var(--primary); }

/* Formlar ve Inputlar */
[data-theme="dark"] .admin-input, [data-theme="dark"] input, [data-theme="dark"] select, [data-theme="dark"] textarea { background-color: #0f172a; color: #fff; border-color: #334155; }
[data-theme="dark"] .admin-input:focus, [data-theme="dark"] input:focus, [data-theme="dark"] select:focus, [data-theme="dark"] textarea:focus { background-color: #1e293b; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(64,112,110,0.2); }

/* Takvim Gece Modu (Orijinal Kare Görünüm) */
[data-theme="dark"] .calendar-grid-advanced { background-color: var(--card-bg); }
[data-theme="dark"] .day { background: #0f172a; color: #f8fafc; border-color: transparent; }
[data-theme="dark"] .day:hover:not(.disabled-day):not(.empty-day) { background: #1e293b; border-color: var(--primary); }
[data-theme="dark"] .disabled-day { background-color: #1e293b !important; color: #475569 !important; }
[data-theme="dark"] .disabled-day .day-name { color: #475569 !important; }
[data-theme="dark"] .day.empty-day { background: transparent !important; border: none !important; }

/* Blog Kartı */
[data-theme="dark"] .blog-date { background: rgba(30, 41, 59, 0.95); color: #5eead4;}
[data-theme="dark"] .blog-read-more { border-top-color: rgba(255,255,255,0.05); }

/* Genel Hatlar */
[data-theme="dark"] .theme-toggle-btn:hover { background: rgba(255,255,255,0.1); }
[data-theme="dark"] .package-card ul { border-top-color: rgba(255,255,255,0.05); }
[data-theme="dark"] .blog-detail-header { border-bottom-color: rgba(255,255,255,0.05); }

/* ARKA PLAN KARMAŞASI (GECE MODU) İÇİN UYGULANAN TEMİZLEME */
[data-theme="dark"] #randevu { background: transparent; box-shadow: none; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); border-radius: 0; }
[data-theme="dark"] .packages-section { background-color: transparent; border-color: rgba(255,255,255,0.05); }

/* Uyku Hesaplayıcı Gece Modu */
[data-theme="dark"] .calc-result-box { background: #0f172a; border-color: rgba(255,255,255,0.05); }
[data-theme="dark"] .calc-input-box label { color: #f8fafc; }
[data-theme="dark"] .timeline { border-left-color: #334155; }
[data-theme="dark"] .timeline-item::before { border-color: var(--card-bg); box-shadow: 0 0 0 3px #334155; }

/* Çerez Kutusu Gece Modu */
[data-theme="dark"] .cookie-banner { background: var(--card-bg); border-color: rgba(255,255,255,0.05); }
[data-theme="dark"] .cookie-btn.reject { background: #334155; color: #f8fafc; }
[data-theme="dark"] .cookie-btn.reject:hover { background: #475569; }

/* Resim Arkaplanı Gece Modu */
[data-theme="dark"] .about-image img { border-color: var(--card-bg); }

/* Yasal Sayfalar ve Okuma Alanları İçin Kesin Gece Modu Renkleri */
[data-theme="dark"] .blog-detail-container h1,
[data-theme="dark"] .blog-detail-container h2,
[data-theme="dark"] .blog-detail-container h3,
[data-theme="dark"] .blog-detail-container strong { color: #f8fafc !important; }
[data-theme="dark"] .blog-detail-container p,
[data-theme="dark"] .blog-detail-container li { color: #cbd5e1 !important; }