/* =========================================
   PSIKOLOG WEB SİTESİ - GLOBAL STİLLER
   ========================================= */

/* --- CSS Değişkenleri (Design Tokens) --- */
:root {
  --primary: #1a4a7a;
  --primary-dark: #0d2d50;
  --primary-light: #2563a8;
  --accent: #4a90d9;
  --accent-soft: #7ab3e8;
  --gold: #c8a96e;
  --gold-light: #e8c98e;
  --dark: #060d1a;
  --dark-2: #0a1628;
  --dark-3: #0f2040;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --text-light: #e8f0f8;
  --text-muted: #8da8c8;
  --text-dark: #1a2535;
  --white: #ffffff;
  --success: #2ecc71;
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.4);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.25);
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.15);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --font-main: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

#adSoyad {
  scroll-margin-top: 120px;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: var(--font-main); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility --- */
.mt-20 { margin-top: 20px; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(6, 13, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(200,169,110,0.4));
  transition: var(--transition);
}

.logo-icon:hover {
  filter: drop-shadow(0 0 10px rgba(200,169,110,0.7));
  transform: scale(1.05);
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { left: 18px; right: 18px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(200,169,110,0.3);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,169,110,0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO SLIDER
   ========================================= */
.slider-section {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  padding-top: 76px; /* Navbar yüksekliği kadar içeriği aşağı iter */
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  transform: scale(1.04);
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide.exiting {
  opacity: 0;
  transform: scale(0.97);
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(6,13,26,0.88) 0%,
    rgba(10,22,40,0.65) 50%,
    rgba(6,13,26,0.4) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 0 80px;
}

.slide-badge {
  display: inline-block;
  padding: 7px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.slide-title em {
  font-style: italic;
  color: var(--gold-light);
}

.slide-desc {
  font-size: 1.05rem;
  color: rgba(232,240,248,0.85);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(200,169,110,0.35);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(200,169,110,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 50px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-3px);
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  transition: var(--transition);
}

.slider-btn.prev { left: 28px; }
.slider-btn.next { right: 28px; }
.slider-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}

/* Stats Bar */
.stats-bar {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--dark-2); /* Slider ile uyumlu arka plan */
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 30px 20px;
}

/* =========================================
   YASAL BİLGİLENDİRME
   ========================================= */
.disclaimer-section {
  background: rgba(200,169,110,0.05);
  border-top: 1px solid rgba(200,169,110,0.18);
  border-bottom: 1px solid rgba(200,169,110,0.18);
  padding: 18px 0;
}

.disclaimer-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.disclaimer-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.disclaimer-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.disclaimer-content strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* Google Maps */
.map-wrapper {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 24px;
  gap: 4px;
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-display);
}

.stat-plus { color: var(--gold); font-weight: 800; font-size: 1.3rem; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; text-align: center; }
.stat-divider { width: 1px; height: 40px; background: var(--glass-border); display: none; }

/* =========================================
   HAKKIMDA
   ========================================= */
.about-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,74,122,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 460px;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  filter: brightness(0.96);
  transition: var(--transition);
}

.about-img:hover { filter: brightness(1.02); transform: scale(1.01); }

.about-accent-ring {
  position: absolute;
  inset: -16px;
  border-radius: calc(var(--radius-lg) + 16px);
  border: 1.5px solid var(--gold);
  opacity: 0.3;
  z-index: 1;
}

.about-img-badge {
  position: absolute;
  bottom: 5px; /* Yazıyı daha aşağı indirdi */
  right: -24px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: rgba(6,13,26,0.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.badge-icon { color: var(--gold); font-size: 1.5rem; }

.about-img-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

.about-img-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Section Common */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-left: 24px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 22px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.83rem;
  color: var(--text-light);
  transition: var(--transition);
}

.feature-chip:hover {
  background: rgba(200,169,110,0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

.chip-icon { color: var(--gold); font-weight: 700; }

/* =========================================
   HİZMETLER
   ========================================= */
.services-section {
  padding: 120px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -300px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,74,122,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   WHATSAPP SABIT BUTON
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:active {
  transform: scale(0.92);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.6);
  animation: none;
}


.service-card {
  position: relative;
  padding: 36px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,169,110,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(200,169,110,0.08);
}

.service-card:hover::before { opacity: 1; }

.card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: var(--transition);
}

.service-card:hover .card-glow {
  background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%);
}

.service-card--featured {
  background: linear-gradient(145deg, rgba(26,74,122,0.3), rgba(10,22,40,0.6));
  border-color: rgba(200,169,110,0.25);
}

.featured-badge {
  position: absolute;
  top: 22px; right: -32px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 42px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}

.card-icon-wrap {
  margin-bottom: 22px;
}

.card-icon {
  color: var(--gold);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(200,169,110,0.15));
}

.service-card:hover .card-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(200,169,110,0.35));
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-display);
  text-align: center;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
}

.card-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.card-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.card-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.btn-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  z-index: 10;
  width: fit-content;
  margin: 0 auto;
}

.btn-card span { transition: var(--transition); }

.btn-card:hover {
  background: var(--gold);
  color: var(--dark-2);
  box-shadow: 0 8px 20px rgba(200, 169, 110, 0.25);
}

.btn-card:hover span { transform: translateX(5px); }

/* =========================================
   RANDEVU
   ========================================= */
.appointment-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
}

.appointment-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.05) 0%, transparent 70%);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.appt-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.appt-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.appt-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.appt-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.appt-feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 3px;
}

.appt-feature span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Form */
.appointment-form-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-lg);
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(141,168,200,0.5); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200,169,110,0.04);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.1);
}

.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.seans-options {
  display: flex;
  gap: 12px;
}

.seans-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.seans-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(200,169,110,0.08);
  color: var(--gold-light);
}

.seans-option input { accent-color: var(--gold); }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(200,169,110,0.3);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(200,169,110,0.45);
}
.btn-submit:hover::before { opacity: 1; }

.btn-icon { font-size: 1.1rem; transition: var(--transition); }
.btn-submit:hover .btn-icon { transform: translateX(4px); }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: var(--radius-sm);
  color: var(--success);
  font-weight: 600;
  font-size: 0.92rem;
}

.form-success.show { display: flex; }

/* =========================================
   İLETİŞİM
   ========================================= */
.contact-section {
  padding: 100px 0;
  background: var(--dark-2);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  padding: 40px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,169,110,0.25);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  color: var(--gold);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  filter: drop-shadow(0 0 5px rgba(200,169,110,0.1));
}

.contact-card:hover .contact-card-icon {
  transform: translateY(-5px) scale(1.05);
  filter: drop-shadow(0 0 10px rgba(200,169,110,0.3));
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card a {
  color: var(--accent-soft);
  transition: var(--transition);
}
.contact-card a:hover { color: var(--gold-light); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding: 70px 0 0;
  background: var(--dark);
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links li a:hover { color: var(--gold-light); padding-left: 5px; }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.fade-in-up, .fade-in-left, .fade-in-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in-up { transform: translateY(40px); }
.fade-in-left { transform: translateX(-50px); }
.fade-in-right { transform: translateX(50px); }

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.24s; }
.contact-card:nth-child(2) { transition-delay: 0.08s; }
.contact-card:nth-child(3) { transition-delay: 0.16s; }
.contact-card:nth-child(4) { transition-delay: 0.24s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .about-grid { gap: 50px; }
  .services-grid { gap: 20px; }
  .appointment-grid { gap: 50px; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(6,13,26,0.97);
    backdrop-filter: blur(20px);
    padding: 30px 24px;
    gap: 8px;
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
  }

  .slide-content { padding: 0 24px; }
  .slider-btn { display: none; }
  .slider-dots { left: 24px; }
  .stats-bar { flex-wrap: wrap; padding: 16px 20px; gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 16px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-wrapper { max-width: 100%; }
  .about-img-badge { right: 10px; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .appointment-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
  .appointment-form-wrap { padding: 28px 22px; }

  .contact-cards { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .contact-cards { grid-template-columns: 1fr; }
  .seans-options { flex-direction: column; }
  .appointment-form-wrap { padding: 20px 16px; }
}

@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
  }
}

/* =========================================
   MUSIC PLAYER (DOCK ABOVE WHATSAPP)
   ========================================= */
.music-control {
  position: fixed;
  right: 32px;
  bottom: 112px; /* WhatsApp'ın (32px + 60px + 20px gap) tam hizası */
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 6px;
  border-radius: 40px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  width: 60px;
  overflow: hidden;
  user-select: none; /* Metin seçimini engelle */
  -webkit-tap-highlight-color: transparent; /* Mobil dokunma rengini kaldır */
}

.music-control:active {
  transform: scale(0.95);
}

.music-control:hover {
  background: var(--dark-3);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.5);
}

.music-btn {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000; /* Kesin siyah ikon rengi */
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(200,169,110,0.2);
}

.music-btn svg {
  display: block;
  width: 20px;
  height: 20px;
}

.music-control.playing {
  padding: 8px;
  border-radius: 50%;
}

.music-control.playing .music-info {
  display: none;
}

.music-control.playing .music-btn {
  animation: musicPulseCircular 2s infinite;
}

@keyframes musicPulseCircular {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200,169,110,0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(200,169,110,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200,169,110,0); }
}

.music-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: all 0.3s ease;
}

.music-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  font-weight: 700;
  opacity: 0.7;
  white-space: nowrap;
}

.music-status {
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .music-control, .whatsapp-float {
    right: 24px;
  }
  .music-control {
    bottom: 100px;
    width: 60px; /* Genişliği mobilde de koru */
    padding: 10px 0 16px;
  }
  .music-btn {
    width: 44px; /* Buton boyutunu mobilde de aynı tut */
    height: 44px;
  }
  .music-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* =========================================
   CHECKBOX STYLING
   ========================================= */
.checkbox-group {
  margin-top: 10px;
  margin-bottom: 24px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-muted);
  user-select: none;
  line-height: 1.5;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  height: 18px;
  width: 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--gold);
  background-color: rgba(200, 169, 110, 0.05);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(200, 169, 110, 0.3);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-text a {
  color: var(--gold-light);
  text-decoration: underline;
  transition: color 0.3s ease;
  font-weight: 500;
}

.checkbox-text a:hover {
  color: var(--white);
}
