/* ═══════════════════════════════════════════════
   Helin Yıldırım — Psikolojik Danışman
   Ana Stil Dosyası
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0f1f3d;
  --navy-mid:   #1a3260;
  --navy-light: #2a4a8a;
  --slate:      #4a5568;
  --silver:     #8a9ab5;
  --mist:       #c8d4e8;
  --cream:      #f7f5f0;
  --white:      #ffffff;
  --gold:       #b8976a;
  --gold-light: #d4b896;
  --dark-bg:    #07111f;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ─── NAV ─── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 60px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,31,61,0.07);
  transition: box-shadow 0.3s;
}

#site-nav.scrolled { box-shadow: 0 4px 32px rgba(15,31,61,0.08); }

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.nav-brand span {
  display: block;
  font-size: 0.58rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 2px;
}

.nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 0.7rem !important;
}
.nav-cta:hover { background: var(--navy-light) !important; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--navy); transition: all 0.3s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 70px 80px 80px;
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; top: -120px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(42,74,138,0.45) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute; bottom: -80px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(184,151,106,0.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white); margin-bottom: 8px;
  opacity: 0; animation: fadeUp 0.8s 0.38s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.2vw, 3.8rem);
  font-weight: 600; color: var(--white);
  letter-spacing: 0.02em; margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.8s 0.52s forwards;
}
.hero-divider {
  width: 48px; height: 1px;
  background: var(--gold); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.64s forwards;
}
.hero-desc {
  font-size: 0.93rem; line-height: 1.88;
  color: var(--mist); max-width: 400px;
  font-weight: 300; margin-bottom: 48px;
  opacity: 0; animation: fadeUp 0.8s 0.76s forwards;
}
.hero-actions {
  display: flex; gap: 18px; align-items: center;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 34px;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  border-radius: 2px; transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184,151,106,0.32);
}
.btn-ghost {
  color: var(--mist); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 0.2s;
}
.btn-ghost::after { content: '→'; font-size: 1rem; }
.btn-ghost:hover { color: var(--white); }

.hero-stats {
  position: absolute; left: 0; bottom: 56px;
  background: var(--white);
  padding: 26px 32px;
  display: flex; gap: 36px;
  box-shadow: 0 4px 40px rgba(15,31,61,0.12);
  z-index: 2;
  opacity: 0; animation: fadeUp 0.8s 1.05s forwards;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--navy); display: block; line-height: 1;
}
.stat-label {
  font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--silver);
  margin-top: 4px; display: block; font-weight: 400;
}

/* Hero Right — Photo */
.hero-right {
  background: var(--cream);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  padding-top: 80px;
}
.hero-photo-wrap {
  position: relative; z-index: 2;
  width: 74%; height: 90%;
  bottom: 0; position: absolute;
}
.hero-photo-wrap img,
.hero-photo-placeholder-box {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  border-radius: 4px 4px 0 0;
}
.hero-photo-placeholder-box {
  background: linear-gradient(160deg, #c8d4e8 0%, #8a9ab5 45%, #4a5568 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
}
.hero-photo-placeholder-box svg { opacity: 0.3; }

.hero-deco-circle {
  position: absolute; top: 90px; right: 50px;
  width: 80px; height: 80px;
  border: 1px solid var(--mist);
  border-radius: 50%; opacity: 0.5;
}
.hero-deco-circle2 {
  position: absolute; top: 112px; right: 72px;
  width: 38px; height: 38px;
  border: 1px solid var(--silver);
  border-radius: 50%; opacity: 0.35;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--navy);
  padding: 26px 80px;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  color: var(--mist);
}
.trust-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(200,212,232,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}
.trust-text {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 300;
}
.trust-sep { width: 1px; height: 28px; background: rgba(200,212,232,0.12); }

/* ─── SECTION COMMONS ─── */
.section-tag {
  font-size: 0.63rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 400; margin-bottom: 14px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 300; color: var(--navy); line-height: 1.18;
}
.section-title em { font-style: italic; color: var(--navy-light); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 68px;
}
.section-subtitle {
  font-size: 0.88rem; color: var(--slate);
  max-width: 360px; line-height: 1.85;
  font-weight: 300; text-align: right;
}

/* ─── SERVICES ─── */
#hizmetler {
  padding: 120px 80px;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  padding: 48px 40px;
  background: var(--cream);
  position: relative; overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}
.service-card:hover { background: var(--navy); }
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--gold);
  transition: width 0.4s;
}
.service-card:hover::after { width: 100%; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 300;
  color: rgba(15,31,61,0.055);
  position: absolute; top: 16px; right: 24px;
  line-height: 1; transition: color 0.4s; user-select: none;
}
.service-card:hover .service-num { color: rgba(255,255,255,0.055); }

.service-icon { font-size: 1.5rem; margin-bottom: 24px; display: block; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 500;
  color: var(--navy); margin-bottom: 14px;
  transition: color 0.4s; line-height: 1.2;
}
.service-card:hover .service-name { color: var(--white); }
.service-desc {
  font-size: 0.86rem; line-height: 1.85;
  color: var(--slate); font-weight: 300;
  margin-bottom: 24px; transition: color 0.4s;
}
.service-card:hover .service-desc { color: var(--mist); }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.stag {
  font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 11px;
  background: rgba(15,31,61,0.07);
  color: var(--slate); border-radius: 2px;
  transition: all 0.4s; font-weight: 400;
}
.service-card:hover .stag {
  background: rgba(255,255,255,0.1);
  color: var(--mist);
}

/* ─── ABOUT ─── */
#hakkimda {
  padding: 120px 80px;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}

.about-photo-side { position: relative; }
.about-photo-frame {
  position: relative;
  width: 100%; padding-top: 118%;
  overflow: hidden;
}
.about-photo-frame img,
.about-placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.about-placeholder {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
}
.about-placeholder svg { opacity: 0.13; width: 55%; }
.about-frame-border {
  position: absolute;
  bottom: -22px; right: -22px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid rgba(184,151,106,0.28);
  pointer-events: none; z-index: 1;
}
.about-badge {
  position: absolute; top: 28px; left: -22px;
  background: var(--gold); color: var(--navy);
  padding: 16px 22px;
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500;
  line-height: 1.7; z-index: 2;
}

.about-content {}
.about-eyebrow {
  font-size: 0.63rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 400; margin-bottom: 22px; display: block;
}
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 300; color: var(--white);
  line-height: 1.22; margin-bottom: 30px;
}
.about-title em { font-style: italic; color: var(--gold-light); }
.about-rule {
  width: 48px; height: 1px;
  background: var(--gold); margin-bottom: 28px;
}
.about-text {
  font-size: 0.9rem; line-height: 1.92;
  color: var(--mist); font-weight: 300;
  margin-bottom: 18px;
}
.about-certs {
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(200,212,232,0.1);
}
.certs-label {
  font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--silver);
  margin-bottom: 16px; display: block; font-weight: 400;
}
.certs-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.cert-chip {
  font-size: 0.7rem; padding: 6px 14px;
  border: 1px solid rgba(200,212,232,0.18);
  color: var(--mist); border-radius: 2px;
  font-weight: 300; letter-spacing: 0.04em;
}

/* ─── APPROACH ─── */
#yaklasim {
  padding: 120px 80px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px; align-items: start;
}
.approach-sticky { position: sticky; top: 140px; }
.approach-lead {
  font-size: 0.88rem; line-height: 1.9;
  color: var(--slate); font-weight: 300; margin-top: 20px;
}
.approach-rule { width: 48px; height: 1px; background: var(--gold); margin: 20px 0 24px; }

.approach-list { display: flex; flex-direction: column; }
.approach-step {
  padding: 40px 0;
  border-bottom: 1px solid rgba(15,31,61,0.09);
  display: grid; grid-template-columns: 56px 1fr;
  gap: 28px; align-items: start;
  transition: padding-left 0.3s;
  cursor: default;
}
.approach-step:first-child { border-top: 1px solid rgba(15,31,61,0.09); }
.approach-step:hover { padding-left: 14px; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--gold);
  font-weight: 500; padding-top: 3px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 500;
  color: var(--navy); margin-bottom: 10px; line-height: 1.2;
}
.step-text {
  font-size: 0.86rem; line-height: 1.88;
  color: var(--slate); font-weight: 300;
}

/* ─── DOKTORSITESI ─── */
#randevu {
  padding: 80px;
  background: var(--navy);
  text-align: center;
}
.randevu-inner {
  max-width: 760px; margin: 0 auto;
}
.randevu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 300; color: var(--white);
  line-height: 1.2; margin-bottom: 18px;
}
.randevu-title em { font-style: italic; color: var(--gold-light); }
.randevu-text {
  font-size: 0.9rem; color: var(--mist);
  font-weight: 300; line-height: 1.85;
  margin-bottom: 40px;
}
.randevu-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--navy);
  padding: 18px 40px;
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  border-radius: 2px; transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.randevu-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184,151,106,0.3);
}
.randevu-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--silver);
  font-weight: 300;
}
.randevu-badge::before {
  content: '✓';
  color: var(--gold); font-size: 0.8rem;
}

/* ─── TESTIMONIALS ─── */
#yorumlar {
  padding: 120px 80px;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 68px;
}
.tcard {
  padding: 44px 36px;
  border: 1px solid rgba(15,31,61,0.08);
  position: relative; transition: all 0.3s;
}
.tcard:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(15,31,61,0.08);
}
.tcard-stars {
  position: absolute; top: 36px; right: 32px;
  color: var(--gold); font-size: 0.65rem; letter-spacing: 3px;
}
.tcard-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem; color: var(--gold);
  line-height: 0.55; margin-bottom: 24px;
  display: block; font-weight: 300;
}
.tcard-text {
  font-size: 0.88rem; line-height: 1.9;
  color: var(--slate); font-weight: 300;
  font-style: italic; margin-bottom: 28px;
}
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 36px; height: 36px;
  background: var(--mist); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 500;
  color: var(--navy); flex-shrink: 0;
}
.tcard-name {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy); font-weight: 500;
}
.tcard-role {
  font-size: 0.7rem; color: var(--silver);
  margin-top: 2px; font-weight: 300;
}

/* ─── CONTACT ─── */
#iletisim {
  padding: 120px 80px;
  background: var(--dark-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}

.contact-eyebrow {
  font-size: 0.63rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 400; margin-bottom: 22px; display: block;
}
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 300; color: var(--white);
  line-height: 1.18; margin-bottom: 24px;
}
.contact-title em { font-style: italic; color: var(--gold-light); }
.contact-lead {
  font-size: 0.9rem; line-height: 1.9;
  color: var(--mist); font-weight: 300; margin-bottom: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.cinfo-row { display: flex; align-items: center; gap: 18px; }
.cinfo-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(200,212,232,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0; color: var(--mist);
}
.cinfo-label {
  font-size: 0.58rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--silver);
  display: block; margin-bottom: 3px;
}
.cinfo-val {
  font-size: 0.88rem; color: var(--mist);
  font-weight: 300;
}
.cinfo-val a { color: var(--mist); transition: color 0.2s; }
.cinfo-val a:hover { color: var(--gold); }

.social-links {
  display: flex; gap: 12px; margin-top: 36px;
}
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(200,212,232,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); font-size: 0.85rem;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fgroup { display: flex; flex-direction: column; gap: 7px; }
.fgroup label {
  font-size: 0.58rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--silver); font-weight: 400;
}
.fgroup input,
.fgroup textarea,
.fgroup select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,212,232,0.12);
  color: var(--white);
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem; font-weight: 300;
  outline: none; transition: border-color 0.2s;
  border-radius: 2px; resize: none;
  width: 100%;
}
.fgroup select option { background: #0f1f3d; color: var(--white); }
.fgroup input:focus,
.fgroup textarea:focus,
.fgroup select:focus { border-color: var(--gold); background: rgba(255,255,255,0.06); }
.fgroup input::placeholder,
.fgroup textarea::placeholder { color: var(--silver); opacity: 0.55; }

.form-notice {
  font-size: 0.68rem; color: var(--silver);
  font-weight: 300; margin-top: 2px;
}
.form-submit {
  background: var(--gold); color: var(--navy);
  border: none; padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: all 0.25s;
  border-radius: 2px; align-self: flex-start;
  margin-top: 6px;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,151,106,0.28);
}
.form-submit.sent {
  background: var(--navy-light);
  color: var(--white);
  cursor: default;
}

/* ─── FOOTER ─── */
#site-footer {
  background: #040d18;
  padding: 36px 80px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(200,212,232,0.05);
  flex-wrap: wrap; gap: 20px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.04em;
}
.footer-brand span {
  display: block; font-size: 0.56rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--silver); margin-top: 2px; font-weight: 300;
}
.footer-copy {
  font-size: 0.68rem; color: rgba(138,154,181,0.45); font-weight: 300;
}
.footer-nav { display: flex; gap: 24px; }
.footer-nav a {
  font-size: 0.65rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--silver);
  opacity: 0.55; transition: opacity 0.2s; font-weight: 300;
}
.footer-nav a:hover { opacity: 1; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  #hakkimda { gap: 60px; }
  #yaklasim { gap: 60px; }
  #iletisim { gap: 60px; }
}

@media (max-width: 900px) {
  #site-nav { padding: 16px 24px; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 36px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; color: var(--white); }
  .nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 12px 28px !important; }
  .nav-toggle { display: flex; z-index: 1001; }

  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 120px 28px 100px; }
  .hero-stats { position: static; margin-top: 40px; width: 100%; justify-content: space-around; }

  .trust-strip { padding: 24px 28px; }
  .trust-sep { display: none; }

  #hizmetler, #yorumlar { padding: 80px 28px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .section-header { flex-direction: column; gap: 16px; }
  .section-subtitle { text-align: left; max-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  #hakkimda { grid-template-columns: 1fr; padding: 80px 28px; gap: 48px; }
  .about-photo-side { display: none; }

  #yaklasim { grid-template-columns: 1fr; padding: 80px 28px; gap: 48px; }
  .approach-sticky { position: static; }

  #randevu { padding: 80px 28px; }

  #iletisim { grid-template-columns: 1fr; padding: 80px 28px; gap: 60px; }
  .form-row-2 { grid-template-columns: 1fr; }

  #site-footer { padding: 28px 24px; justify-content: center; text-align: center; flex-direction: column; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
}
