/* ===== MOBİL MENÜ ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid rgba(30,58,47,0.18);
  border-radius: 10px;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.28s ease;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,58,47,0.55);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 92vw);
  height: 100dvh;
  background: white;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0 20px;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  min-height: 52px;
  font-family: var(--font-body);
  text-align: left;
  transition: background 0.18s;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus { background: var(--cream); color: var(--forest); }

.mobile-chevron {
  font-size: 0.55rem;
  color: var(--text-muted);
  transition: transform 0.22s;
  flex-shrink: 0;
}

.mobile-accordion-btn[aria-expanded="true"] .mobile-chevron { transform: rotate(180deg); }

.mobile-sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--cream);
}

.mobile-sub-menu.open { max-height: 400px; }

.mobile-sub-link {
  display: block;
  padding: 11px 24px 11px 36px;
  font-size: 0.86rem;
  color: var(--text-mid);
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.18s;
  border-bottom: 1px solid rgba(92,139,110,0.07);
}

.mobile-sub-link:hover { color: var(--forest); background: var(--mint-dark); }

.mobile-menu-actions {
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.mobile-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--forest);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 52px;
}

.mobile-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1.5px solid var(--border);
  color: var(--forest);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 52px;
}

/* Nav aktif stili */
nav a.nav-active,
.nav-center a[aria-current="page"] { color: var(--forest); font-weight: 700; }

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .mobile-menu-toggle { display: flex; }
  .nav-center,
  .nav-right .btn-outline,
  .nav-right .btn-filled { display: none; }
  .nav-right { gap: 8px; }
  nav { padding: 0 20px; }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; }
}

/* Body scroll kilidi */
body.menu-open { overflow: hidden; }

/* İç sayfa hero */
.inner-hero {
  background: var(--forest);
  padding: 60px 80px 50px;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,139,110,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.inner-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 0.78rem;
}

.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb strong { color: rgba(255,255,255,0.85); }

.inner-hero-title {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: white;
  line-height: 1.12;
  margin-bottom: 16px;
}

.inner-hero-title em { font-style: italic; font-weight: 600; color: var(--moss-light); }

.inner-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.8;
}

/* CTA bölümü */
.cta-section {
  background: var(--forest);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,139,110,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section-content { position: relative; z-index: 1; }

.cta-section .s-eyebrow { color: var(--moss-light); justify-content: center; }
.cta-section .s-eyebrow::before { display: none; }

.cta-section h2 {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-section h2 em { font-style: italic; font-weight: 600; color: var(--moss-light); }

.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: white;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,149,106,0.35);
}

.btn-ghost-white {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* ===== MOBİL RESPONSIVE ===== */
@media (max-width: 768px) {
  .inner-hero { padding: 40px 20px 36px; }
  .cta-section { padding: 60px 24px; }
  .cta-btns .btn-gold,
  .cta-btns .btn-ghost-white { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .whatsapp-float { bottom: calc(16px + env(safe-area-inset-bottom, 0px)); right: 16px; }
}
