/* ===== d.academy – Aydınlık Tema ===== */
:root {
  --bg: #f8faf9;
  --bg-card: #ffffff;
  --bg-alt: #eef3f2;
  --surface: #2d6b62;
  --text: #1a2522;
  --text-muted: #5c6c68;
  --accent: #2d6b62;
  --accent-hover: #246158;
  --accent-light: #3d8277;
  --gradient-brand: linear-gradient(135deg, #2d6b62 0%, #3d8277 100%);
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(45, 107, 98, 0.08);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --fixed-btn-size: 52px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header – MacFit tarzı: hero üzerinde transparan, aşağıda beyaz ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.header.scrolled .logo,
.header.scrolled .nav a,
.header.scrolled .menu-btn { color: var(--text); }
.header.scrolled .nav a { color: var(--text-muted); }
.header.scrolled .nav a:hover { color: var(--accent); }
.header .logo,
.header .nav a,
.header .menu-btn { color: #fff; }
.header .nav a:hover { color: rgba(255, 255, 255, 0.85); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo:hover { opacity: 0.9; }

.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

.nav {
  display: none;
  gap: 2.25rem;
}

.nav a {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:hover { color: var(--accent); }

/* Açılır menü – Eğitimler */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-arrow {
  font-size: 0.6em;
  opacity: 0.8;
  transition: transform 0.25s;
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  min-width: 220px;
  padding: 0.5rem 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(45, 107, 98, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  border: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(45, 107, 98, 0.08);
  color: var(--accent);
}

.header.scrolled .nav-dropdown-menu a { color: var(--text); }
.header.scrolled .nav-dropdown-menu a:hover { color: var(--accent); }

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
  border-radius: var(--radius);
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 22px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

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

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(45, 107, 98, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  z-index: 99;
  box-shadow: var(--shadow-sm);
}

.nav-mobile[aria-hidden="false"] {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.nav-mobile a:hover { background: var(--bg-alt); color: var(--accent); }

.nav-mobile-trigger {
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  color: var(--text);
  background: transparent;
  border: none;
  border-radius: var(--radius);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s, color 0.2s;
}
.nav-mobile-trigger:hover { background: var(--bg-alt); color: var(--accent); }
.nav-mobile-trigger::after {
  content: "▼";
  font-size: 0.65rem;
  opacity: 0.8;
  transition: transform 0.25s;
}
.nav-mobile-trigger[aria-expanded="true"]::after { transform: rotate(180deg); }

.nav-mobile-sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}
.nav-mobile-sub.open { grid-template-rows: 1fr; }
.nav-mobile-sub-inner {
  min-height: 0;
}
.nav-mobile-sub a {
  padding-left: 1.75rem;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.01em;
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
  .nav-mobile { display: none !important; }
}


/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.hero-glow {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 640px;
  animation: heroFadeIn 0.8s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-title-accent {
  color: #fff;
  font-weight: 800;
  display: block;
  margin-top: 0.12em;
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.55;
  margin: 0 0 1.5rem;
  font-weight: 400;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  background: var(--accent-light);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-hero-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.hero-link {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.hero-link:hover {
  color: #fff;
}

.hero-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(45, 107, 98, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-form-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem;
}

.hero-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  justify-content: center;
}

.hero-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.hero-form-row:not(.hero-form-row--submit) {
  flex: 1;
  min-width: 140px;
  max-width: 220px;
}

.hero-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid rgba(45, 107, 98, 0.2);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-form-input::placeholder { color: var(--text-muted); }
.hero-form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 107, 98, 0.12);
}

.hero-form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-form-row--submit {
  flex-basis: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.25rem;
}

.hero-form-kvkk {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  margin: 0;
}

.hero-form-kvkk input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
}

/* Hero ince form şeridi – altta, öğeler yan yana */
.hero-form-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-form-strip-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-form-strip-note {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  text-align: center;
  letter-spacing: 0.02em;
}

.hero-strip-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hero-strip-input {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}

.hero-strip-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hero-strip-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.hero-strip-kvkk {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  margin: 0;
  white-space: nowrap;
}

.hero-strip-kvkk input {
  width: 0.95rem;
  height: 0.95rem;
  accent-color: var(--accent-light);
}

.hero-strip-btn {
  padding: 0.6rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--accent-light);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.hero-strip-btn:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .hero-form-strip {
    padding: 0.75rem 1rem;
  }
  .hero-strip-form {
    gap: 0.6rem;
  }
  .hero-strip-input {
    min-width: 100%;
    max-width: none;
  }
  .hero-strip-kvkk span {
    font-size: 0.75rem;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  border-radius: 2px;
}

/* Eski hero-form-section kaldırıldı – form artık hero şeridinde */

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 2px 12px rgba(45, 107, 98, 0.25);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 107, 98, 0.3);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--accent);
  border: 1px solid rgba(45, 107, 98, 0.35);
}

.btn-secondary:hover {
  background: var(--bg-alt);
  border-color: var(--accent);
  color: var(--accent-hover);
  transform: translateY(-1px);
}

/* ===== Stats ===== */
.stats {
  padding: 2.5rem 0;
  background: var(--bg-card);
  border-top: 1px solid rgba(45, 107, 98, 0.08);
  border-bottom: 1px solid rgba(45, 107, 98, 0.08);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .stats-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* ===== Section typography ===== */
.section-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin: 0 0 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.section-title--left { text-align: left; }

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

/* ===== About ===== */
.about {
  padding: 4rem 0;
  background: var(--bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.about-media-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--gradient-brand);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
}

.about-content .section-badge { text-align: left; }

.about-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.about-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 0.95rem;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@media (min-width: 900px) {
  .about-inner {
    grid-template-columns: 0.9fr 1fr;
    gap: 3rem;
  }
  .about-media img { height: 380px; }
}

/* ===== Services – Örnek tasarım ===== */
.services {
  padding: 4.5rem 0;
  background: var(--bg-card);
}

.services-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  text-align: center;
  margin: 0 0 0.5rem;
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.services-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.service-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background: var(--img, none) center/cover no-repeat;
  transition: transform 0.6s ease;
}

.service-card-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-card:hover .service-card-bg {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  transition: background 0.3s;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

.service-card-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.75rem;
  width: 100%;
}

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.service-card-title {
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.service-card-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 98%;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 360px; }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .service-card { min-height: 420px; }
  .service-card-title { font-size: 1.65rem; }
  .service-card-desc { font-size: 1.02rem; }
}

/* ===== Why us ===== */
.why {
  padding: 4rem 0;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(45, 107, 98, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  border-color: rgba(45, 107, 98, 0.25);
  box-shadow: var(--shadow);
}

.why-card--highlight {
  border-left: 4px solid var(--accent-light);
  background: linear-gradient(135deg, rgba(45, 107, 98, 0.04) 0%, var(--bg-card) 100%);
}

.why-card--highlight:hover {
  border-left-color: var(--accent);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(45, 107, 98, 0.2);
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Steps v2 – Modern süreç ===== */
.steps-v2 {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.steps-v2-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.steps-v2-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.steps-v2-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.steps-v2-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.steps-v2-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-v2-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 0;
  }
  .steps-v2-track::before {
    content: '';
    position: absolute;
    left: 15%;
    right: 15%;
    top: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(45, 107, 98, 0.2) 20%, rgba(45, 107, 98, 0.4) 50%, rgba(45, 107, 98, 0.2) 80%, transparent 100%);
    z-index: 0;
    pointer-events: none;
  }
}

.steps-v2-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border-radius: 1.25rem;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(45, 107, 98, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.steps-v2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(45, 107, 98, 0.12);
  border-color: rgba(45, 107, 98, 0.15);
}

.steps-v2-card-img {
  position: relative;
  width: 100%;
  height: 180px;
  background: var(--img, var(--bg-alt)) center/cover no-repeat;
  border-radius: 1.25rem 1.25rem 0 0;
  transition: transform 0.4s ease;
}

.steps-v2-card:hover .steps-v2-card-img {
  transform: scale(1.03);
}

.steps-v2-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.steps-v2-card-content {
  padding: 1.5rem 1.75rem 2rem;
}

.steps-v2-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.steps-v2-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== Gallery ===== */
.gallery {
  padding: 4rem 0;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16/10;
  transition: box-shadow 0.25s;
}

.gallery-item:hover {
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--img) center/cover no-repeat;
  z-index: -2;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 107, 98, 0.92) 0%, rgba(45, 107, 98, 0.88) 100%);
  z-index: -1;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.cta-off {
  font-style: italic;
  opacity: 1;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.cta .btn-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.cta .btn-primary:hover {
  background: var(--bg-alt);
  color: var(--accent-hover);
}

.cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* ===== Blog ===== */
.blog-page {
  padding-top: var(--header-h);
}

.blog {
  padding: 4rem 0;
  background: var(--bg);
}

.blog .section-badge {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.blog-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.blog-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(45, 107, 98, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 107, 98, 0.12);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-img {
  width: 100%;
  height: 220px;
  background: var(--img, var(--bg-alt)) center/cover no-repeat;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-content {
  padding: 1.5rem 1.5rem 1.75rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.blog-card-link:hover .blog-card-title {
  color: var(--accent);
}

.blog-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
  .blog-card-img { height: 240px; }
}

/* ===== Blog yazı sayfası – zengin tasarım ===== */
.blog-post-page {
  padding-top: var(--header-h);
  padding-bottom: 5rem;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 15%, var(--bg) 100%);
}

.blog-post {
  position: relative;
}

.blog-post-hero {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: var(--bg-alt);
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.blog-post-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.blog-post-hero:hover .blog-post-hero-img {
  transform: scale(1.03);
}

.blog-post-hero-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 2rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #fff;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
  transition: color 0.2s, gap 0.2s;
  letter-spacing: 0.02em;
}

.blog-post-back:hover {
  color: #fff;
  gap: 0.5rem;
}

.blog-post-title {
  font-size: clamp(1.6rem, 4.5vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  max-width: 720px;
}

.blog-post-meta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  margin: 0;
  backdrop-filter: blur(8px);
}

.blog-post-body {
  max-width: 720px;
  margin: -2rem auto 0;
  padding: 2.25rem 1.5rem 2.5rem;
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border-radius: 1.25rem;
  box-shadow: 0 8px 40px rgba(45, 107, 98, 0.08);
  border: 1px solid rgba(45, 107, 98, 0.08);
}

.blog-post-lead {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 2.25rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--accent-light);
  font-weight: 500;
  background: linear-gradient(135deg, rgba(45, 107, 98, 0.06) 0%, transparent 100%);
  border-radius: 0 12px 12px 0;
}

.blog-post-body h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(45, 107, 98, 0.15);
  position: relative;
}

.blog-post-body h2:first-of-type {
  margin-top: 0;
}

.blog-post-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 48px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 0 1px 0 0;
}

.blog-post-body p {
  margin: 0 0 1.4rem;
  line-height: 1.75;
  color: var(--text);
  font-size: 1.05rem;
}

.blog-post-body a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.blog-post-body a:hover {
  color: var(--accent-hover);
}

.blog-post-body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(45, 107, 98, 0.08) 0%, rgba(45, 107, 98, 0.02) 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.65;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.5rem;
  line-height: 1.75;
  color: var(--text);
}

.blog-post-body li {
  margin-bottom: 0.5rem;
}

.blog-post-cta {
  margin-top: 3rem;
  padding: 2rem 2rem;
  background: var(--gradient-brand);
  border-radius: 1.25rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 40px rgba(45, 107, 98, 0.35);
}

.blog-post-cta-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.blog-post-cta p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  opacity: 0.95;
  color: #fff;
}

.blog-post-cta .btn {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-post-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background: #fff;
  color: var(--accent-hover);
}

@media (min-width: 768px) {
  .blog-post-hero { height: 420px; border-radius: 0 0 2.5rem 2.5rem; }
  .blog-post-body { margin-top: -3rem; padding: 2.75rem 2.5rem 3rem; }
  .blog-post-lead { font-size: 1.25rem; padding: 1.5rem 1.75rem; }
}

/* ===== Eğitim detay sayfası – ultra görsel ===== */
.egitim-page {
  padding-top: var(--header-h);
  padding-bottom: 0;
  background: var(--bg);
}

.egitim-hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  max-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.egitim-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--img) center/cover no-repeat;
  transition: transform 0.6s ease;
}

.egitim-hero:hover .egitim-hero-bg {
  transform: scale(1.04);
}

.egitim-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.egitim-hero-inner {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem 2.5rem;
  color: #fff;
}

.egitim-hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.egitim-hero-title {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.egitim-hero-desc {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0;
  opacity: 0.95;
  line-height: 1.5;
}

.egitim-intro {
  padding: 4rem 0;
  background: var(--bg-card);
}

.egitim-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.egitim-intro-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.egitim-intro-text p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.egitim-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(45, 107, 98, 0.12);
}

.egitim-intro-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.egitim-benefits {
  padding: 4rem 0;
  background: var(--bg);
}

.egitim-section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin: 0 0 2.5rem;
  letter-spacing: -0.02em;
}

.egitim-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.egitim-benefit-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(45, 107, 98, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.egitim-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 107, 98, 0.12);
}

.egitim-benefit-img {
  height: 200px;
  background: var(--img) center/cover no-repeat;
  transition: transform 0.5s;
}

.egitim-benefit-card:hover .egitim-benefit-img {
  transform: scale(1.05);
}

.egitim-benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  padding: 1.25rem 1.5rem 0;
}

.egitim-benefit-card p {
  margin: 0 0 1.25rem;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.egitim-gallery {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.egitim-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.egitim-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.egitim-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.egitim-gallery-item:hover img {
  transform: scale(1.03);
}

.egitim-cta {
  padding: 4rem 0;
  background: var(--bg);
}

.egitim-cta-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--gradient-brand);
  border-radius: 1.5rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(45, 107, 98, 0.35);
}

.egitim-cta-box h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.egitim-cta-box p {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

.egitim-cta-box .btn {
  background: #fff;
  color: var(--accent);
  border: none;
}

.egitim-cta-box .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-hover);
}

@media (min-width: 640px) {
  .egitim-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .egitim-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .egitim-intro-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .egitim-benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .egitim-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .egitim-gallery-item img { height: 240px; }
}

/* ===== Contact ===== */
.contact-page {
  padding-top: var(--header-h);
}

.contact {
  padding: 4rem 0;
  background: var(--bg-card);
}

.contact-text {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.contact-columns {
  display: block;
}

.contact-col--form .contact-form-wrap {
  border-top: 1px solid rgba(45, 107, 98, 0.15);
  padding-top: 2.5rem;
  margin-top: 3rem;
}

.contact-cards--stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 100%;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid rgba(45, 107, 98, 0.12);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  border-color: rgba(45, 107, 98, 0.3);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  font-size: 1.75rem;
}

.contact-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-card-value--small {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

/* İletişim sayfası form */
.contact-form-wrap {
  max-width: 560px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(45, 107, 98, 0.15);
}

.contact-col--form .contact-form-wrap {
  max-width: none;
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.contact-form-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form-row--half {
  flex: 1;
  min-width: 0;
}

.contact-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(45, 107, 98, 0.25);
  border-radius: var(--radius);
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-input::placeholder {
  color: var(--text-muted);
}

.contact-form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 107, 98, 0.15);
}

.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-row--submit {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 0.25rem;
}

.contact-form-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
}

.contact-form-kvkk input {
  margin-top: 0.25rem;
  accent-color: var(--accent);
}

.contact-form-kvkk a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form-kvkk a:hover {
  color: var(--accent-hover);
}

.contact-form-btn {
  padding: 0.85rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .contact-form-row--half {
    display: inline-flex;
  }
  .contact-form .contact-form-row--half:first-of-type {
    margin-right: 0;
  }
  .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
  }
  .contact-form-row:not(.contact-form-row--submit) {
    grid-column: span 1;
  }
  .contact-form-row:nth-child(1) { grid-column: 1; }
  .contact-form-row:nth-child(2) { grid-column: 2; }
  .contact-form-row:nth-child(3),
  .contact-form-row:nth-child(4) {
    grid-column: 1 / -1;
  }
  .contact-form-row--submit {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
  }
}

@media (min-width: 480px) {
  .contact-cards:not(.contact-cards--stack) { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .contact-cards:not(.contact-cards--stack) {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
}

@media (min-width: 768px) {
  .contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .contact-col--form .contact-form-wrap {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    border-left: 1px solid rgba(45, 107, 98, 0.15);
    padding-left: 2.5rem;
  }
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(45, 107, 98, 0.1);
  background: var(--bg-alt);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.footer-block {
  text-align: center;
}

.footer-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.45rem;
}

.footer-links a,
.footer-contact a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(45, 107, 98, 0.1);
}

.footer-brand {
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .footer-block {
    text-align: left;
  }
}

/* ===== Fixed contact ===== */
.fixed-contact {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 1000;
}

.fixed-btn {
  width: var(--fixed-btn-size);
  height: var(--fixed-btn-size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(45, 107, 98, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fixed-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(45, 107, 98, 0.4);
}

.fixed-phone {
  background: var(--gradient-brand);
  color: #fff;
}

.fixed-phone:hover {
  background: var(--accent-hover);
  color: #fff;
}

.fixed-whatsapp {
  background: #25d366;
  color: #fff;
}

.fixed-whatsapp:hover {
  background: #20bd5c;
  color: #fff;
}

@media (min-width: 768px) {
  .fixed-contact {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
