/* ─── DURU SPA — ORTAK STİL SİSTEMİ ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #f7f4ef;
  --bg2: #eeeae3;
  --pastel: #e9f0f1;
  --dark: #1c1712;
  --mid: #6b6257;
  --light: #b0a898;
  --accent: #378895;
  --white: #ffffff;
  --r: 3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

img { display: block; }

/* ─── ANİMASYONLAR ─── */
@keyframes pastelFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes imgZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(247,244,239,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding 0.3s;
}
nav.scrolled {
  border-color: rgba(0,0,0,0.06);
  padding: 1rem 3rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--dark); text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.nav-logo-img {
  height: 75px; width: auto; display: block;
  transition: height 0.3s;
}
nav.scrolled .nav-logo-img { height: 60px; }
.nav-logo-text { display: inline-block; }
.nav-logo .dot { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
  margin: 0; padding: 0;
}
.nav-links > li { display: flex; align-items: center; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500;
  color: var(--mid); text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  white-space: nowrap; display: inline-flex; align-items: center;
  line-height: 1;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

/* Dropdown */
.nav-links li { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1.2rem); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  padding: 0.8rem 0;
  min-width: 200px;
  list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 300;
}
.nav-links li:hover .nav-dropdown,
.nav-links li:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before {
  content: '';
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  border-left: 7px solid transparent; border-right: 7px solid transparent;
  border-bottom: 7px solid var(--white);
}
.nav-dropdown li a {
  display: block; padding: 0.6rem 1.4rem;
  font-size: 0.82rem; font-weight: 400; color: var(--mid);
  white-space: nowrap; transform: none;
  transition: color 0.2s, background 0.2s; border-radius: 8px; margin: 0 0.3rem;
}
.nav-dropdown li a:hover { color: var(--accent); background: var(--bg); }

.nav-book {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500;
  color: var(--white); background: var(--dark);
  padding: 0.65rem 1.4rem; border-radius: 100px;
  text-decoration: none; transition: background 0.25s; white-space: nowrap;
}
.nav-book:hover { background: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }

.nav-lang {
  display: flex; background: rgba(0,0,0,0.04);
  border-radius: 100px; padding: 0.25rem;
}
.nav-lang a {
  color: var(--mid); text-decoration: none;
  font-size: 0.7rem; font-weight: 500;
  padding: 0.4rem 0.8rem; border-radius: 100px;
  transition: all 0.25s ease; transform: none;
}
.nav-lang a:hover { color: var(--dark); }
.nav-lang a.active {
  background: var(--white); color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--dark); padding: 0; margin-left: 0.5rem;
}

/* ─── BUTONLAR ─── */
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 500;
  color: var(--white); background: var(--dark);
  padding: 0.9rem 2rem; border-radius: 100px;
  text-decoration: none; transition: background 0.25s, gap 0.25s;
}
.btn-dark:hover { background: var(--accent); gap: 0.9rem; }

.btn-accent {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 500;
  color: var(--white); background: var(--accent);
  padding: 1rem 2.2rem; border-radius: 100px;
  text-decoration: none; transition: background 0.25s, gap 0.25s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-accent:hover {
  background: var(--dark); gap: 0.9rem; color: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 500;
  color: var(--dark); border: 1.5px solid rgba(28,23,18,0.25);
  padding: 0.85rem 1.8rem; border-radius: 100px;
  text-decoration: none; transition: border-color 0.25s, color 0.25s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ─── EYEBROW ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}

/* ─── HERO (tüm sayfalar) ─── */
.hero {
  padding: 130px 3rem 2rem;
}
.hero-inner {
  position: relative; width: 100%; max-width: 1400px;
  margin: 0 auto; border-radius: 24px;
  overflow: hidden; min-height: 60vh;
  display: flex; align-items: center; padding: 5rem 4rem;
}
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: imgZoom 15s ease forwards;
}
.hero-bg video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero-bg::after {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(28,23,18,0.85) 0%, rgba(28,23,18,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 580px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400; line-height: 1.12; color: var(--white); margin-bottom: 1.5rem;
}
.hero-content h1 em { font-style: italic; }
.hero-desc {
  font-size: 1.05rem; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.9); margin-bottom: 3rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero .btn-link {
  font-size: 0.85rem; font-weight: 400;
  color: rgba(255,255,255,0.7); text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.2s, gap 0.2s;
}
.hero .btn-link::after { content: '↗'; font-size: 0.9em; }
.hero .btn-link:hover { color: var(--white); gap: 0.7rem; }

/* ─── SAYFA HERO (Alt sayfalar için daha kısa) ─── */
.page-hero .hero-inner { min-height: 40vh; }
.page-hero .hero-content { max-width: 640px; }
.page-hero .hero-content h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem; list-style: none;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; }

/* ─── ABOUT BÖLÜMÜ ─── */
.about {
  padding: 8rem 3rem;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 5rem; align-items: center;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.about.visible { opacity: 1; transform: none; }
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: 12px;
}
.about-photos .p1 {
  grid-column: 1; grid-row: 1 / 3;
  border-radius: 200px 200px 12px 12px; overflow: hidden; height: 520px;
}
.about-photos .p2 { grid-column: 2; grid-row: 1; border-radius: 12px; overflow: hidden; height: 250px; }
.about-photos .p3 { grid-column: 2; grid-row: 2; border-radius: 12px; overflow: hidden; height: 258px; }
.about-photos img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.about-photos div:hover img { transform: scale(1.04); }
.about-text { padding: 2rem 0; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.2; margin: 1rem 0 2rem;
}
.about-text h2 em { font-style: italic; }
.about-text p {
  font-size: 0.9rem; font-weight: 300; line-height: 1.9;
  color: var(--mid); margin-bottom: 1.2rem;
}

/* ─── SERVİSLER GRID ─── */
.services {
  padding: 6rem 3rem;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.services.visible { opacity: 1; transform: none; }
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 2rem;
  margin-bottom: 3.5rem;
}
.section-header-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.2;
}
.section-header-left h2 em { font-style: italic; }
.section-header > p {
  font-size: 0.88rem; font-weight: 300; line-height: 1.8;
  color: var(--mid); max-width: 380px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.service-img { height: 320px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 1.8rem 2rem 2rem; }
.service-tag {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.6rem;
}
.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 400; color: var(--dark); margin-bottom: 0.7rem;
}
.service-body p {
  font-size: 0.82rem; font-weight: 300;
  color: var(--mid); line-height: 1.8; margin-bottom: 1.5rem;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500;
  color: var(--dark); text-decoration: none; transition: gap 0.2s, color 0.2s;
}
.service-link::after { content: '→'; }
.service-link:hover { color: var(--accent); gap: 0.8rem; }

/* ─── NEDEN BİZ ─── */
.neden-biz {
  padding: 6rem 3rem 8rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.neden-biz.visible { opacity: 1; transform: none; }
.neden-biz-img-wrap {
  border-radius: 80px 24px 80px 24px;
  overflow: hidden; height: 540px; position: relative;
}
.neden-biz-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.neden-biz-pill {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  border-radius: 100px; padding: 0.8rem 2rem;
  font-size: 0.75rem; font-weight: 500;
  color: var(--dark); white-space: nowrap;
  display: flex; align-items: center; gap: 0.6rem;
}
.neden-biz-pill::before { content: '✨'; font-size: 1rem; }
.neden-biz-text { padding: 2rem 0; }
.neden-biz-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.2; margin: 1rem 0 2rem;
}
.neden-biz-text h2 em { font-style: italic; }
.neden-biz-text p {
  font-size: 0.9rem; font-weight: 300; line-height: 1.9;
  color: var(--mid); margin-bottom: 2.5rem;
}

/* ─── REZERVASYON ─── */
.reservation {
  margin: 0 3rem 8rem;
  background: linear-gradient(-45deg, #cbe5e8, #e1f1f3, #9acbd0, #e1f1f3);
  background-size: 400% 400%;
  animation: pastelFlow 8s ease-in-out infinite;
  border-radius: 28px; padding: 6rem 5rem;
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.reservation.visible { opacity: 1; transform: none; }
.res-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.2; color: var(--dark);
  margin-top: 0.8rem; margin-bottom: 1.5rem;
}
.res-left h2 em { font-style: italic; color: var(--accent); }
.res-left p { font-size: 0.88rem; font-weight: 300; color: var(--mid); line-height: 1.8; max-width: 440px; }
.res-right { display: flex; flex-direction: column; align-items: flex-end; gap: 1.2rem; }
.res-phone {
  font-size: 0.85rem; font-weight: 500; color: var(--mid);
  text-decoration: none; transition: color 0.2s;
}
.res-phone:hover { color: var(--accent); }

/* ─── İSTATİSTİK BANTLARI ─── */
.stats-bar {
  background: var(--dark); padding: 4rem 3rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; color: var(--white);
  margin-bottom: 0.4rem;
}
.stat-item h3 span { color: var(--accent); }
.stat-item p { font-size: 0.75rem; font-weight: 300; color: var(--light); letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── HİZMET DETAY SAYFASI ─── */
.service-detail { padding: 7rem 3rem; }
.service-detail-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 0.9fr;
  gap: 6rem; align-items: start;
}
.service-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.2; margin-bottom: 1.8rem;
}
.service-detail-content h2 em { font-style: italic; }
.service-detail-content p {
  font-size: 0.9rem; font-weight: 300; line-height: 1.95; color: var(--mid); margin-bottom: 1.4rem;
}
.service-detail-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 400; margin: 2.5rem 0 0.8rem;
}
.extras-list { list-style: none; margin-top: 1.5rem; }
.extras-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.85rem; font-weight: 300; color: var(--mid); line-height: 1.7;
  padding: 0.8rem 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.extras-list li::before { content: '+'; color: var(--accent); font-weight: 500; font-size: 1rem; flex-shrink: 0; }
.service-detail-aside { position: sticky; top: 120px; }
.detail-img-main {
  border-radius: 80px 20px 80px 20px; overflow: hidden; height: 480px; margin-bottom: 1.5rem;
}
.detail-img-main img { width: 100%; height: 100%; object-fit: cover; }
.detail-cta-card {
  background: var(--white); border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.detail-cta-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 400; margin-bottom: 0.8rem;
}
.detail-cta-card p { font-size: 0.82rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.8rem; }
.detail-cta-card .btn-accent { width: 100%; justify-content: center; }
.detail-cta-card .contact-line {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--mid); margin-top: 1rem;
}

/* ─── HİZMETLER LİSTE SAYFASI ─── */
.services-list { padding: 7rem 3rem; }
.services-list-inner { max-width: 1400px; margin: 0 auto; }
.services-list-header { text-align: center; margin-bottom: 5rem; }
.services-list-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 400; margin-bottom: 1.2rem;
}
.services-list-header h1 em { font-style: italic; }
.services-list-header p { font-size: 0.95rem; color: var(--mid); font-weight: 300; line-height: 1.8; max-width: 540px; margin: 0 auto; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch; margin-bottom: 2rem;
  border-radius: 24px; overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
  transition: box-shadow 0.4s, transform 0.4s;
}
.service-row:hover { box-shadow: 0 16px 60px rgba(0,0,0,0.1); transform: translateY(-4px); }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row-img { height: 420px; overflow: hidden; }
.service-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-row:hover .service-row-img img { transform: scale(1.04); }
.service-row-body {
  padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.service-row-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 400; line-height: 1.2; margin-bottom: 1.2rem;
}
.service-row-body h2 em { font-style: italic; }
.service-row-body p { font-size: 0.88rem; font-weight: 300; color: var(--mid); line-height: 1.9; margin-bottom: 2rem; }
.service-row-body .sub-services {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
}
.sub-service-tag {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid); border: 1px solid rgba(0,0,0,0.12);
  padding: 0.35rem 0.9rem; border-radius: 100px;
}

/* ─── HAKKIMIZDA SAYFASI ─── */
.about-page { padding: 7rem 3rem; }
.about-page-inner { max-width: 1200px; margin: 0 auto; }
.about-lead {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-bottom: 8rem;
}
.about-lead-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 400; line-height: 1.2; margin-bottom: 1.8rem;
}
.about-lead-text h2 em { font-style: italic; }
.about-lead-text p { font-size: 0.9rem; font-weight: 300; line-height: 1.95; color: var(--mid); margin-bottom: 1.2rem; }
.about-lead-img { border-radius: 24px; overflow: hidden; height: 520px; }
.about-lead-img img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-section { margin-bottom: 8rem; }
.philosophy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; margin-bottom: 3rem;
}
.philosophy-section h2 em { font-style: italic; }
.philosophy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.philosophy-card {
  background: var(--white); border-radius: 20px; padding: 2.5rem;
}
.philosophy-card .icon {
  font-size: 2rem; margin-bottom: 1.2rem;
}
.philosophy-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400; margin-bottom: 0.8rem;
}
.philosophy-card p { font-size: 0.82rem; font-weight: 300; color: var(--mid); line-height: 1.8; }
.team-section { margin-bottom: 8rem; }
.team-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; margin-bottom: 1.2rem;
}
.team-section p.lead { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.9; max-width: 680px; margin-bottom: 3rem; }
.locations-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; margin-bottom: 1.2rem;
}
.locations-section p.lead { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.9; max-width: 680px; margin-bottom: 3rem; }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.location-card {
  background: var(--white); border-radius: 20px; padding: 2rem 2.2rem;
  border-left: 3px solid var(--accent);
}
.location-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 400; margin-bottom: 0.8rem;
}
.location-card p { font-size: 0.8rem; font-weight: 300; color: var(--mid); line-height: 1.7; margin-bottom: 0.5rem; }
.location-card a { font-size: 0.8rem; color: var(--accent); text-decoration: none; display: block; margin-top: 0.5rem; }

/* ─── İLETİŞİM SAYFASI ─── */
.contact-page { padding: 7rem 3rem; }
.contact-page-inner { max-width: 1200px; margin: 0 auto; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; margin-bottom: 1rem;
}
.contact-info > p { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.8; margin-bottom: 3rem; }
.branch-block { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(0,0,0,0.07); }
.branch-block:last-child { border-bottom: none; }
.branch-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 400; margin-bottom: 1rem;
}
.branch-block p { font-size: 0.82rem; font-weight: 300; color: var(--mid); line-height: 1.7; margin-bottom: 0.4rem; }
.branch-block a { font-size: 0.82rem; color: var(--mid); text-decoration: none; display: block; margin-bottom: 0.3rem; transition: color 0.2s; }
.branch-block a:hover { color: var(--accent); }
.contact-form-wrap {
  position: sticky; top: 120px;
  background: var(--white); border-radius: 24px; padding: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 400; margin-bottom: 0.6rem;
}
.contact-form-wrap > p { font-size: 0.82rem; color: var(--mid); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg); border: 1.5px solid transparent;
  border-radius: 10px; padding: 0.9rem 1.1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--dark);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; }
.form-note { font-size: 0.72rem; color: var(--light); text-align: center; margin-top: 1rem; }

/* ─── FOOTER ─── */
footer {
  background: linear-gradient(-45deg, #e1f1f3, #9acbd0, #e1f1f3, #cbe5e8);
  background-size: 400% 400%;
  animation: pastelFlow 10s ease-in-out infinite;
  color: var(--dark); padding: 6rem 3rem 2.5rem;
  border-radius: 28px 28px 0 0;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
  gap: 3.5rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(0,0,0,0.06); margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--dark); text-decoration: none; display: block; margin-bottom: 1.5rem;
}
.footer-logo span { color: var(--accent); }
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 0.7rem; }
.footer-nav a { font-size: 0.85rem; font-weight: 400; color: var(--mid); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent); }
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 500; letter-spacing: 0.03em;
  color: var(--dark); margin-bottom: 1.2rem;
}
.footer-col p { font-size: 0.82rem; font-weight: 300; line-height: 1.7; color: var(--mid); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.82rem; font-weight: 400; color: var(--mid); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.sub-branch { margin-bottom: 1.5rem; }
.sub-branch strong { display: block; font-size: 0.9rem; font-weight: 500; color: var(--dark); margin-bottom: 0.3rem; }
.sub-branch a { margin-bottom: 0.2rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 0.75rem; font-weight: 300; color: var(--mid); }
.footer-lang { display: flex; gap: 0.8rem; }
.footer-lang a {
  font-size: 0.72rem; font-weight: 400; color: var(--mid); text-decoration: none;
  transition: color 0.2s; padding: 0.3rem 0.6rem;
  border: 1px solid rgba(0,0,0,0.1); border-radius: 6px;
}
.footer-lang a:hover, .footer-lang a.active { color: var(--accent); border-color: var(--accent); }

.social-links { display: flex; gap: 1rem; }
.social-links a { color: var(--mid); transition: color 0.2s, transform 0.2s; display: inline-flex; }
.social-links a:hover { color: var(--accent); transform: translateY(-2px); }

/* ─── WHATSAPP ─── */
.whatsapp-btn {
  position: fixed; bottom: 25px; right: 25px;
  width: 55px; height: 55px; background-color: #25d366; color: white;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4); z-index: 999;
  text-decoration: none; padding: 0; line-height: 0;
  transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg {
  width: 28px; height: 28px; fill: currentColor;
  flex-shrink: 0; display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: rgba(247,244,239,0.98); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); flex-direction: column;
    padding: 2.5rem 0; gap: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-10px); opacity: 0; visibility: hidden; transition: all 0.3s ease;
  }
  .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.15rem; transform: none; }
  .nav-dropdown { display: none; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .neden-biz { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail-aside { position: static; }
  .about-lead { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { position: static; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; }
  .service-row.reverse { direction: ltr; }
  .service-row-img { height: 320px; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  nav { padding: 1rem; }
  nav.scrolled { padding: 1rem; }
  .nav-logo { font-size: 1.05rem; }
  .nav-logo-img { height: 60px; }
  nav.scrolled .nav-logo-img { height: 50px; }
  .nav-right { gap: 0.6rem; }
  .nav-lang a { padding: 0.35rem 0.5rem; font-size: 0.65rem; }
  .nav-book { padding: 0.55rem 1.1rem; font-size: 0.75rem; }
  .hero { padding: 115px 1.5rem 2rem; }
  .hero-inner { padding: 4rem 1.5rem; min-height: 50vh; }
  .hero-bg::after { background: linear-gradient(to bottom, rgba(28,23,18,0.5) 0%, rgba(28,23,18,0.85) 100%); }
  .about, .services, .neden-biz { padding-left: 1.5rem; padding-right: 1.5rem; }
  .neden-biz { padding-top: 4rem; }
  .reservation { margin: 0 1.5rem 5rem; padding: 3.5rem 2rem; grid-template-columns: 1fr; }
  .res-right { align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  footer { padding: 4rem 1.5rem 2rem; border-radius: 20px 20px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photos .p1 { height: 360px; }
  .whatsapp-btn { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .whatsapp-btn svg { width: 26px; height: 26px; }
  .service-detail { padding: 5rem 1.5rem; }
  .services-list { padding: 5rem 1.5rem; }
  .about-page { padding: 5rem 1.5rem; }
  .contact-page { padding: 5rem 1.5rem; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.5rem; }
  .locations-grid { grid-template-columns: 1fr; }
  .service-row-body { padding: 2.5rem 1.8rem; }
}

@media (max-width: 380px) {
  .nav-logo { font-size: 0.9rem; }
  .nav-logo-img { height: 50px; }
  .nav-book { padding: 0.5rem 0.8rem; font-size: 0.7rem; }
  .nav-right { gap: 0.4rem; }
}
