/* ============================================
   YEŞİL KUBBE TURİZM — Tasarım Sistemi
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Renkler */
  --green: #0a7845;
  --green-deep: #084d2d;
  --green-ink: #052b19;
  --orange: #ed5c21;
  --orange-deep: #c94818;
  --cream: #faf7f1;
  --cream-soft: #f3ede1;
  --cream-deep: #ebe2cd;
  --ink: #1a1f1c;
  --ink-soft: #5a635e;
  --ink-muted: #8a928c;
  --line: #e3d9c2;
  --line-soft: #efe7d4;
  --white: #ffffff;

  /* Tipografi */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Boşluk */
  --space-section: clamp(4rem, 10vw, 8rem);
  --space-section-sm: clamp(2.5rem, 6vw, 5rem);
  --container-w: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);

  /* Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(8, 77, 45, 0.06);
  --shadow: 0 8px 24px rgba(8, 77, 45, 0.08);
  --shadow-lg: 0 20px 50px rgba(8, 77, 45, 0.12);

  /* Transition */
  --t-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --t: 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: "ss01", "cv01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* --- Tipografi --- */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--green-ink);
  font-variation-settings: "opsz" 144;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--orange);
}

.lede {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

.container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--radius);
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 1px solid var(--green-deep);
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  padding-inline: 0;
}
.btn-ghost:hover { color: var(--orange); }

.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn .arrow {
  width: 1rem;
  height: 1rem;
  transition: transform var(--t);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t);
}
.site-header.scrolled { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.1rem;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--t-fast);
  position: relative;
}
.nav-menu a:hover { color: var(--green); }
.nav-menu a.active { color: var(--green-deep); font-weight: 600; }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobil menü */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-logo img { height: 40px; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  padding: 1.25rem var(--container-pad);
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
}
.mobile-menu-head img { height: 40px; }
.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}
.mobile-menu-list a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-ink);
}
.mobile-menu-list a.active { color: var(--orange); }
.mobile-menu-foot {
  margin-top: auto;
  padding-block: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--space-section);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-eyebrow { margin-bottom: 1.5rem; }

.hero-title {
  font-size: clamp(2.5rem, 6.2vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-lede {
  margin-bottom: 2.25rem;
  max-width: 32rem;
}

.hero-cta {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 2.25rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-trust-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-deep);
  line-height: 1;
}
.hero-trust-label {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* Hero görsel */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 43, 25, 0.35) 100%);
  pointer-events: none;
}

/* Arch motif arka plan */
.hero-arch {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  max-width: 700px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4/3; order: -1; margin-bottom: 1rem; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--green-deep);
  color: var(--cream);
  padding-block: 2.25rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.trust-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--orange);
}
.trust-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.trust-item-strong {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}
.trust-item-sub {
  font-size: 0.8125rem;
  opacity: 0.7;
}

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

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding-block: var(--space-section);
}
.section-sm {
  padding-block: var(--space-section-sm);
}
.section-cream-soft { background: var(--cream-soft); }
.section-green { background: var(--green-deep); color: var(--cream); }
.section-green .display, .section-green h2, .section-green h3 { color: var(--white); }
.section-green .lede { color: rgba(250, 247, 241, 0.85); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 38rem;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.05;
}
.section-title em {
  font-style: italic;
  color: var(--orange);
}

/* ============================================
   PROGRAM CARDS
   ============================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  position: relative;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.program-card-head {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.program-card-tag {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(237, 92, 33, 0.1);
  color: var(--orange-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.program-card-title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  margin-bottom: 0.5rem;
}
.program-card-dates {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}
.program-card-dates strong { color: var(--green-deep); font-weight: 600; }
.program-card-duration {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--orange);
  line-height: 1;
}

.program-card-body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.program-feature {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.program-feature svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}
.program-feature-text {
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.45;
}
.program-feature-text strong {
  color: var(--green-ink);
  display: block;
  font-weight: 600;
  margin-bottom: 0.125rem;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}

.program-card-prices {
  padding: 1.5rem 2rem;
  background: var(--cream-soft);
  border-top: 1px solid var(--line-soft);
}
.program-prices-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.program-prices-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.program-price {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.625rem;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
}
.program-price-room {
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.program-price-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-deep);
  font-weight: 500;
}

.program-card-foot {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.program-card-foot .btn { width: 100%; }

.program-quota {
  font-size: 0.8125rem;
  color: var(--orange-deep);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-weight: 500;
}
.program-quota svg { width: 14px; height: 14px; }

@media (max-width: 880px) {
  .programs-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .program-card-head { padding: 1.5rem 1.5rem 1.25rem; }
  .program-card-body { padding: 1.5rem; }
  .program-card-prices { padding: 1.25rem 1.5rem; }
  .program-card-foot { padding: 1.25rem 1.5rem 1.75rem; }
  .program-card-duration { font-size: 1.5rem; }
}
@media (max-width: 420px) {
  .program-prices-list { grid-template-columns: 1fr; }
}

/* ============================================
   WHY US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-item {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.why-item-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}
.why-item-title {
  font-size: 1.3125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.why-item-text {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testi-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  line-height: 0.5;
  height: 1.5rem;
}
.testi-text {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  flex-grow: 1;
}
.testi-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.testi-name { font-weight: 600; color: var(--green-ink); font-size: 0.9375rem; }
.testi-info { font-size: 0.8125rem; color: var(--ink-soft); }

@media (max-width: 880px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FUTURE INTEREST FORM
   ============================================ */
.future-form {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.future-form::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(237, 92, 33, 0.15), transparent 70%);
  pointer-events: none;
}

.future-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.future-form-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.future-form-title em { font-style: italic; color: var(--orange); }
.future-form-lede {
  color: rgba(250, 247, 241, 0.8);
  font-size: 1rem;
  line-height: 1.55;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}
.form-field label {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: rgba(250, 247, 241, 0.85);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(250, 247, 241, 0.06);
  border: 1px solid rgba(250, 247, 241, 0.15);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  color: var(--cream);
  font-size: 0.9375rem;
  transition: all var(--t-fast);
  width: 100%;
  font-family: var(--font-body);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(250, 247, 241, 0.4);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(250, 247, 241, 0.1);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select option { background: var(--green-deep); color: var(--cream); }

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.form-foot-note {
  font-size: 0.8125rem;
  color: rgba(250, 247, 241, 0.6);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .future-form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner-text {
  flex: 1;
  min-width: 280px;
}
.cta-banner-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.cta-banner-sub { color: var(--ink-soft); font-size: 1.0625rem; }
.cta-banner-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-ink);
  color: rgba(250, 247, 241, 0.7);
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 56px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 1.25rem;
}
.footer-tag {
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  max-width: 22rem;
}
.footer-social {
  display: flex;
  gap: 0.625rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(250, 247, 241, 0.06);
  transition: all var(--t-fast);
}
.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-col-title {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-list a, .footer-list span {
  font-size: 0.9375rem;
  color: rgba(250, 247, 241, 0.7);
  transition: color var(--t-fast);
}
.footer-list a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 241, 0.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}
.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-legal a:hover { color: var(--white); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE HERO (alt sayfalar)
   ============================================ */
.page-hero {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 44rem;
}
.page-hero-eyebrow { color: var(--orange); }
.page-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.05;
}
.page-hero-title em { font-style: italic; color: var(--orange); }
.page-hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 38rem;
}

.page-hero-arch {
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 40%;
  max-width: 500px;
  opacity: 0.05;
  pointer-events: none;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.about-side {
  position: sticky;
  top: 7rem;
}
.about-stat {
  margin-bottom: 2.5rem;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--orange);
  font-style: italic;
}
.about-stat-label {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  max-width: 14rem;
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
}
.about-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  float: left;
  line-height: 0.85;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  color: var(--green);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
}
.value-card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(10, 120, 69, 0.1);
  color: var(--green);
  margin-bottom: 1.25rem;
}
.value-card-icon svg { width: 24px; height: 24px; }
.value-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.value-card-text {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-side { position: static; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.625rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  font-weight: 500;
  color: var(--green-ink);
  font-family: var(--font-body);
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--green-deep);
  transition: transform var(--t);
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-icon {
  background: var(--orange);
  border-color: var(--orange);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--white); }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t);
}
.faq-answer-inner {
  padding-bottom: 1.75rem;
  padding-right: 3rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-answer-inner p + p { margin-top: 0.875rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-item {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 120, 69, 0.08);
  color: var(--green);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-size: 1.0625rem;
  color: var(--green-ink);
  font-weight: 500;
  line-height: 1.4;
}
.contact-info-value a:hover { color: var(--orange); }

.contact-form-card {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.contact-form-title {
  font-size: clamp(1.625rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.contact-form-sub {
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.contact-form .form-field label {
  color: var(--ink);
}
.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
}
.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder {
  color: var(--ink-muted);
}
.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
  border-color: var(--green);
  background: var(--white);
}
.contact-form .form-field select option {
  background: var(--white);
  color: var(--ink);
}

.contact-form .program-locked {
  padding: 1rem 1.25rem;
  background: rgba(10, 120, 69, 0.06);
  border: 1px solid rgba(10, 120, 69, 0.2);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--green-deep);
}
.contact-form .program-locked svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}
.contact-form .program-locked strong { font-weight: 600; }

.contact-map {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  aspect-ratio: 21/9;
  background: var(--cream-soft);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { aspect-ratio: 4/3; }
}

/* ============================================
   ALERT MESSAGES
   ============================================ */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.5;
}
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.alert-success {
  background: rgba(10, 120, 69, 0.08);
  border: 1px solid rgba(10, 120, 69, 0.3);
  color: var(--green-deep);
}
.alert-error {
  background: rgba(237, 92, 33, 0.08);
  border: 1px solid rgba(237, 92, 33, 0.3);
  color: var(--orange-deep);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all var(--t);
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thanks {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(3rem, 8vw, 6rem);
  text-align: center;
}
.thanks-inner {
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(10, 120, 69, 0.1);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.thanks-icon svg { width: 40px; height: 40px; }
.thanks-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
}
.thanks-title em { font-style: italic; color: var(--orange); }
.thanks-text {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.thanks-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--green-deep);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.65;
  color: var(--ink);
}
.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}
.legal-content ul li {
  list-style: disc;
  margin-bottom: 0.375rem;
  line-height: 1.55;
  color: var(--ink);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================
   FOCUS STYLES (a11y)
   ============================================ */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}
