@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --background: #f9f9f9;
  --foreground: #2c3e35;
  --primary: #3c513d;
  --primary-dark: #2d3f2e;
  --accent: #e8a0a4;
  --accent-dark: #c8798c;
  --accent-light: #f9ebef;
  --beige: #eef4f0;
  --beige-warm: #f5ede6;
  --border: #e5e5e5;
  --muted: #6b7c72;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1rem; }

@media (min-width: 1024px) { .container { padding: 0 1.5rem; } }

.serif { font-family: "Playfair Display", Georgia, serif; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0;
  min-height: 5.25rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  line-height: 0;
}

/* Header logo — büyük ve net kurumsal görünüm */
.site-header .logo-img {
  display: block;
  height: 72px;
  width: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.logo-img-footer {
  height: 80px;
  width: 80px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}

@media (min-width: 768px) {
  .logo-img-footer {
    height: 90px;
    width: 90px;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    min-height: 8rem;
    padding: 0.875rem 0;
    gap: 1.5rem;
  }

  .logo {
    min-width: 110px;
    width: auto;
  }

  .site-header .logo-img {
    height: 100px;
    width: 100px;
  }

  .main-nav {
    flex: 1;
    justify-content: center;
    align-items: center;
    align-self: center;
  }

  .header-actions {
    align-items: center;
    align-self: center;
  }
}

@media (min-width: 1280px) {
  .header-inner {
    gap: 1.5rem;
  }
}

.main-nav { display: none; flex: 1; justify-content: center; gap: 0.125rem; }

@media (min-width: 1280px) { .main-nav { display: flex; } }

.nav-link {
  display: flex; align-items: center; gap: 0.125rem;
  padding: 0.5rem 0.5rem; font-size: 0.775rem; font-weight: 500;
  color: var(--foreground); transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active { color: var(--primary); }

.nav-link.active { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }

.header-actions {
  display: none;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}

@media (min-width: 1280px) { .header-actions { display: flex; } }

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.4375rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--foreground);
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-header:hover { color: var(--primary); border-color: rgba(60, 81, 61, 0.35); }

.btn-header-wa:hover { color: #128c7e; border-color: rgba(18, 140, 126, 0.45); }

.btn-header-contact {
  padding: 0.4375rem 0.75rem;
  font-size: 0.6875rem;
}

@media (min-width: 1400px) {
  .header-actions { gap: 0.5rem; }
  .btn-header,
  .btn-header-contact { font-size: 0.75rem; padding: 0.5rem 0.875rem; }
}

.mobile-nav-actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.header-phone {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.8125rem; font-weight: 500;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--white);
  white-space: nowrap;
}

.header-phone:hover { color: var(--primary); }

.menu-toggle {
  display: flex; padding: 0.5rem; border: none; background: none;
  cursor: pointer; border-radius: 0.5rem;
}

.menu-toggle:hover { background: var(--beige); }

@media (min-width: 1280px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none; border-top: 1px solid var(--border);
  padding: 1rem; background: var(--white);
  max-height: calc(100vh - 5rem);
  overflow-y: auto;
}

body.nav-open { overflow: hidden; }

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block; padding: 0.625rem 0.75rem;
  font-size: 0.8125rem; font-weight: 500; border-radius: 0.5rem;
}

.mobile-nav a:hover, .mobile-nav a.active { background: var(--beige); color: var(--primary); }

.mobile-sub { margin-left: 0.75rem; padding-left: 0.75rem; border-left: 1px solid var(--border); }

.mobile-sub a { font-weight: 400; color: var(--muted); padding: 0.5rem 0.75rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.5rem 1rem; font-size: 0.8125rem; font-weight: 500;
  border-radius: 0.5rem; border: 1px solid transparent;
  cursor: pointer; transition: background 0.2s, color 0.2s;
  font-family: inherit;
}

.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }

.btn-primary:hover { background: var(--primary-dark); }

.btn-outline { background: var(--white); color: var(--foreground); border-color: var(--border); }

.btn-outline:hover { background: var(--beige-warm); }

.btn-white { background: var(--white); color: var(--foreground); border-color: var(--border); }

.btn-white:hover { background: var(--beige-warm); }

.btn-block { width: 100%; }

/* Ana sayfa layout — referans mockup */
.home-layout {
  display: grid;
  gap: 1.25rem;
  padding: 1rem 0 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .home-layout {
    grid-template-columns: 1fr 19.5rem;
    gap: 1.5rem;
    padding-top: 1.25rem;
  }
}

.home-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home-layout .sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .home-layout .sidebar {
    position: sticky;
    top: 5.5rem;
  }
}

/* Hero — tam görsel, slogan altta */
.hero-banner {
  position: relative;
  margin-bottom: 2.5rem;
}

.hero-banner-frame {
  position: relative;
  border-radius: 0.875rem;
  background: #faf8f5;
  line-height: 0;
  padding-bottom: 2.75rem;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.875rem;
}

.hero-content {
  position: absolute;
  left: 43.5%;
  top: auto;
  bottom: 3.75rem;
  transform: translate(-50%, 0);
  width: min(14.5rem, 22vw);
  max-width: 44%;
  pointer-events: auto;
  line-height: normal;
  padding-bottom: 0;
  z-index: 3;
}

@media (min-width: 1280px) {
  .hero-content {
    left: 43%;
    width: min(15.5rem, 21vw);
    bottom: 4rem;
  }
}

@media (min-width: 1536px) {
  .hero-content {
    left: 42.5%;
    width: min(16.5rem, 19vw);
    bottom: 4.25rem;
  }
}

.hero-tag {
  font-size: clamp(0.625rem, 0.95vw, 0.8125rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.hero-title {
  font-size: clamp(1.0625rem, 1.65vw, 1.4375rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.hero-title .accent {
  color: var(--primary);
}

.hero-flower {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.0625rem;
  vertical-align: middle;
  transform: translateY(-1px);
}

.hero-desc {
  margin-top: 0.45rem;
  font-size: clamp(0.625rem, 0.9vw, 0.75rem);
  color: var(--muted);
  line-height: 1.4;
}

.hero-buttons {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-buttons .btn {
  padding: 0.5rem 0.875rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .hero-buttons .btn {
    font-size: 0.8125rem;
    padding: 0.5625rem 1rem;
  }
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.hero-location {
  margin-top: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.hero-stats-wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 2;
  width: min(36rem, calc(100% - 2rem));
  pointer-events: auto;
  line-height: normal;
}

.hero-stats {
  background: var(--white);
  border: 1px solid rgba(60, 81, 61, 0.1);
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 28px rgba(60, 81, 61, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  text-align: center;
}

.hero-stats > div {
  position: relative;
  padding: 0.25rem 0.375rem;
}

.hero-stats > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 2.25rem;
  background: var(--border);
}

.hero-stat-icon {
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 auto 0.375rem;
  color: var(--accent-dark);
}

.hero-stat-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.6875rem;
  color: var(--muted);
  line-height: 1.3;
  margin-top: 0.125rem;
}

@media (min-width: 640px) {
  .hero-stat-value { font-size: 1rem; }
  .hero-stat-label { font-size: 0.75rem; }
}

@media (max-width: 1024px) {
  .hero-banner {
    margin-bottom: 2.25rem;
  }

  .hero-banner-frame {
    display: flex;
    flex-direction: column;
    line-height: normal;
    padding-bottom: 0;
    overflow: visible;
    border-radius: 0.875rem;
  }

  .hero-banner-img {
    order: 1;
    border-radius: 0.875rem 0.875rem 0 0;
  }

  .hero-stats-wrap {
    order: 2;
    position: relative;
    transform: none;
    left: auto;
    width: calc(100% - 1.5rem);
    margin: -1.5rem auto 0;
    z-index: 2;
  }

  .hero-stats {
    border-radius: 0.875rem 0.875rem 0 0;
    padding-bottom: 0.625rem;
  }

  .hero-content {
    order: 3;
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 1.5rem);
    max-width: none;
    margin: -1px auto 0;
    padding: 0.625rem 1.25rem 1rem 1.375rem;
    background: var(--white);
    border: 1px solid rgba(60, 81, 61, 0.1);
    border-top: none;
    border-radius: 0 0 0.875rem 0.875rem;
    box-shadow: 0 8px 28px rgba(60, 81, 61, 0.12);
    z-index: 2;
  }

  .hero-title {
    max-width: 10.5rem;
    font-size: 0.9375rem;
    line-height: 1.35;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-buttons .btn {
    flex: 1 1 calc(50% - 0.25rem);
    justify-content: center;
  }

  .hero-buttons .btn:first-child {
    flex: 1 1 100%;
  }
}

/* Feature bar */
.feature-bar {
  border: 1px solid rgba(60, 81, 61, 0.1);
  border-radius: 0.875rem;
  background: var(--beige);
  padding: 1.25rem 1rem;
  box-shadow: 0 2px 12px rgba(60, 81, 61, 0.05);
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.75rem;
}

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

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.feature-item {
  text-align: center;
  padding: 0.75rem 0.375rem;
  background: var(--white);
  border-radius: 0.625rem;
  border: 1px solid rgba(60, 81, 61, 0.06);
}

.feature-icon {
  width: 1.375rem;
  height: 1.375rem;
  margin: 0 auto 0.5rem;
  color: var(--accent-dark);
}

.feature-title { font-size: 0.75rem; font-weight: 600; color: var(--primary); }

@media (min-width: 640px) { .feature-title { font-size: 0.8125rem; } }

.feature-desc { font-size: 0.625rem; color: var(--muted); margin-top: 0.125rem; }

@media (min-width: 640px) { .feature-desc { font-size: 0.6875rem; } }

/* Layout grid */
.page-grid { display: grid; gap: 1.75rem; padding: 2rem 0 2.5rem; }

@media (min-width: 1024px) { .page-grid { grid-template-columns: 2fr 1fr; gap: 2rem; } }

/* Section title */
.section-title { text-align: center; }

.section-title h2 { font-family: "Playfair Display", serif; font-size: 1.5rem; font-weight: 600; color: var(--primary); }

@media (min-width: 768px) { .section-title h2 { font-size: 1.875rem; } }

.section-title p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); }

/* Services */
.services-section { padding: 1.25rem 0 1.75rem; }

.services-grid {
  margin-top: 1.75rem;
  display: grid; gap: 1rem;
  align-items: start;
}

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

@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.25rem; text-align: center;
  display: flex; flex-direction: column;
}

.service-icon { width: 1.5rem; height: 1.5rem; margin: 0 auto 0.75rem; color: var(--accent-dark); }

.service-card h3 { font-size: 0.875rem; font-weight: 600; color: var(--primary); }

.service-card p { margin-top: 0.5rem; font-size: 0.75rem; color: var(--muted); line-height: 1.6; }

.service-link {
  margin-top: 0.75rem; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.25rem; font-size: 0.75rem; font-weight: 500; color: var(--accent-dark);
}

.service-link:hover { color: var(--primary); }

/* Care showcase — 4 hizmet görseli */
.care-showcase {
  padding: 0.25rem 0 1rem;
}

.care-showcase-box {
  margin-top: 1.25rem;
  padding: 0;
  border: 1px solid rgba(60, 81, 61, 0.1);
  border-radius: 0.875rem;
  background: var(--beige);
  overflow: hidden;
}

.care-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

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

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

.care-showcase-card {
  display: block;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(60, 81, 61, 0.1);
}

.care-showcase-card:not(:last-child) {
  border-right: none;
}

@media (min-width: 640px) {
  .care-showcase-card:nth-child(odd) {
    border-right: 1px solid rgba(60, 81, 61, 0.1);
  }

  .care-showcase-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(60, 81, 61, 0.1);
  }

  .care-showcase-card:nth-child(3),
  .care-showcase-card:nth-child(4) {
    border-bottom: none;
  }
}

@media (min-width: 1024px) {
  .care-showcase-card {
    border-bottom: none;
  }

  .care-showcase-card:not(:last-child) {
    border-right: 1px solid rgba(60, 81, 61, 0.1);
  }
}

.care-showcase-card:hover .care-showcase-label {
  color: var(--accent-dark);
}

.care-showcase-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.care-photo-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--beige-warm);
  border-radius: 0;
  box-shadow: none;
}

.care-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.care-showcase-label {
  margin: 0;
  padding: 0.75rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
  text-align: center;
  background: var(--white);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

@media (min-width: 640px) {
  .care-showcase-label {
    padding: 0.875rem 0.75rem;
    font-size: 0.8125rem;
  }
}

@media (min-width: 1024px) {
  .care-showcase-label {
    padding: 1rem 0.5rem;
    font-size: 0.8125rem;
  }
}

/* About */
.about-section { padding: 0.5rem 0 0.5rem; }

.about-grid { display: grid; gap: 1.5rem; align-items: center; }

@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.about-image {
  aspect-ratio: 4/3; border-radius: 1rem; overflow: hidden;
  background: var(--beige-warm); box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-text { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; }

@media (min-width: 1024px) { .about-text { font-size: 0.875rem; } }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

@media (min-width: 1024px) { .sidebar { position: sticky; top: 5rem; align-self: start; } }

.sidebar-card { border-radius: 0.75rem; padding: 1.25rem; }

.sidebar-card h3 { font-size: 0.9375rem; font-weight: 600; color: var(--primary); }

.sidebar-beige { background: var(--beige); }

.sidebar-green { background: var(--primary); color: var(--white); }

.sidebar-green h3 { color: var(--white); }

.sidebar-pink { background: var(--accent-light); }

.sidebar-form {
  background: var(--white);
  border: 1px solid rgba(60, 81, 61, 0.1);
  box-shadow: 0 4px 20px rgba(60, 81, 61, 0.06);
}

.sidebar-form .sidebar-desc {
  margin-bottom: 0.875rem;
}

.home-contact-form .form-group {
  margin-bottom: 0.75rem;
}

.home-contact-form .form-group label {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.home-contact-form .form-group input,
.home-contact-form .form-group select,
.home-contact-form .form-group textarea {
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  border-radius: 0.4375rem;
}

.home-contact-form .form-group textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.home-contact-form .form-error {
  font-size: 0.6875rem;
}

.home-contact-form .form-status {
  font-size: 0.75rem;
  padding: 0.625rem 0.75rem;
  margin-bottom: 0.75rem;
}

.home-contact-form .btn-submit {
  margin-top: 0.25rem;
  padding: 0.5625rem 1rem;
  font-size: 0.8125rem;
}

.why-list { margin-top: 0.875rem; display: flex; flex-direction: column; gap: 0.625rem; }

.why-item { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.8125rem; }

.why-icon {
  width: 1.5rem; height: 1.5rem; flex-shrink: 0; margin-top: 0.125rem;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}

.why-icon svg { width: 0.75rem; height: 0.75rem; }

.testimonial-quote { margin-top: 0.75rem; font-size: 0.8125rem; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.6; padding-left: 1.25rem; position: relative; }

.testimonial-author { margin-top: 0.625rem; font-size: 0.75rem; color: rgba(255,255,255,0.65); }

.testimonial-dots { margin-top: 0.875rem; display: flex; justify-content: center; gap: 0.375rem; }

.testimonial-dot {
  width: 0.375rem; height: 0.375rem; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer; padding: 0;
}

.testimonial-dot.active { background: var(--white); }

.contact-list { margin-top: 0.875rem; display: flex; flex-direction: column; gap: 0.625rem; }

.contact-list a, .contact-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.8125rem; }

.contact-list a:hover { color: var(--primary); }

.contact-list svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; margin-top: 0.125rem; color: var(--accent-dark); }

.contact-buttons { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }

.sidebar-desc { margin-top: 0.375rem; font-size: 0.8125rem; color: var(--muted); }

/* Page header */
.page-header { border-bottom: 1px solid var(--border); background: var(--white); padding: 2.5rem 0; }

.page-header h1 { font-family: "Playfair Display", serif; font-size: 1.875rem; font-weight: 600; color: var(--primary); }

@media (min-width: 768px) { .page-header h1 { font-size: 2.25rem; } }

.breadcrumb { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 0.25rem; }

.breadcrumb a:hover { color: var(--primary); }

.page-content { padding: 2.5rem 0; }

.page-content p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

.page-content h2 { font-family: "Playfair Display", serif; font-size: 1.5rem; font-weight: 600; color: var(--primary); margin-bottom: 1rem; }

.content-max { max-width: 48rem; }

.content-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.25rem; margin-bottom: 1rem;
}

.content-card h3 { font-weight: 600; color: var(--primary); }

.content-card p { margin-top: 0.5rem; }

/* Hizmetler sayfası — görsel destekli kartlar */
.services-page-grid {
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .services-page-grid {
    gap: 2rem;
  }
}

/* Paylaşılan kart illustrasyon alanı */
.card-illustration {
  height: 130px;
  padding: 1rem 1.25rem;
  background: #edf5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-illustration::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-dark));
}

.card-illustration img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid rgba(60, 81, 61, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(60, 81, 61, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(60, 81, 61, 0.12);
}

.service-detail-card-body {
  padding: 1.375rem 1.5rem 1.5rem;
}

.service-detail-card-body h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

.service-detail-card-body p {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .service-detail-card-body h3 {
    font-size: 1.1875rem;
  }
}

/* Cards grid */
.cards-grid { display: grid; gap: 1.5rem; }

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

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

@media (min-width: 1024px) { .cards-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 0.75rem; overflow: hidden;
}

.card-body { padding: 1rem; }

.card-image { aspect-ratio: 1; background: var(--beige); overflow: hidden; }

.card-image.ratio-4-3 { aspect-ratio: 4/3; }

.card-image img { width: 100%; height: 100%; object-fit: cover; }

.card h2, .card h3 { font-weight: 600; color: var(--primary); }

.card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); }

.card-date { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: var(--muted); }

/* ── Contact Form ───────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(60,81,61,0.07);
}

/* Honeypot — ekranda gizle */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* İki sütunlu satır (ad+telefon) */
.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group { margin-bottom: 1.125rem; position: relative; }

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-required { color: var(--accent-dark); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  font-family: inherit;
  outline: none;
  background: #fafafa;
  color: var(--text);
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  box-sizing: border-box;
}

.form-group select { cursor: pointer; appearance: auto; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(60,81,61,0.1);
}

/* Doğrulama renkleri */
.form-group input.is-valid,
.form-group select.is-valid,
.form-group textarea.is-valid {
  border-color: #4caf82;
  background: #f6fef9;
}
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: #e05c6a;
  background: #fff8f8;
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #d94050;
  margin-top: 0.3rem;
  min-height: 1rem;
}

.form-group textarea { resize: vertical; min-height: 7rem; }

/* Gönder butonu */
.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
}
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }

/* Dönen ikon (yüklenme) */
.spin { animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Durum mesajı */
.form-status {
  padding: 0.875rem 1.125rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  border: 1.5px solid transparent;
}
.form-status--success {
  background: #f0faf5;
  border-color: #4caf82;
  color: #1e6b47;
}
.form-status--error {
  background: #fff5f6;
  border-color: #e05c6a;
  color: #b02030;
}

.form-note { font-size: 0.75rem; color: var(--muted); margin-bottom: 1rem; }
.form-note a { color: var(--accent-dark); font-weight: 500; }
.form-note a:hover { color: var(--primary); }

.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }

.contact-info-item { display: flex; gap: 1rem; }

.contact-info-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: var(--accent-light); border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center; color: var(--accent-dark);
}

.contact-info-item h3 { font-weight: 600; color: var(--primary); }

.contact-info-item p, .contact-info-item a { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted); }

.contact-info-item a:hover { color: var(--primary); }

.contact-grid { display: grid; gap: 2.5rem; }

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ── Etkinlikler Sayfası (Premium) ──────────────────── */

/* Etiketler */
.ev-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}
.ev-tag--accent { background: var(--accent-light); color: var(--accent-dark); }
.ev-tag--green  { background: rgba(60,81,61,0.1);  color: var(--primary); }

/* ── Hero ── */
.ev-hero {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(60,81,61,0.18);
  margin-bottom: 3rem;
  position: relative;
}
.ev-hero-img {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 280px;
  overflow: hidden;
  background: #1e2e1f;
}
@media (max-width: 640px) { .ev-hero-img { aspect-ratio: 4 / 3; } }
.ev-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.78);
}
.ev-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,35,22,0.85) 0%, rgba(20,35,22,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2.5rem;
}
@media (max-width: 640px) { .ev-hero-overlay { padding: 1.5rem 1.25rem; } }
.ev-hero-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.875rem;
  border-radius: 99px;
  margin-bottom: 0.875rem;
  width: fit-content;
}
.ev-hero-title {
  color: #fff;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.ev-hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  max-width: 620px;
  line-height: 1.6;
}

/* ── Makale Gövdesi ── */
.ev-article { margin-bottom: 3rem; }

.ev-article-lead {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.ev-article-lead p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.ev-dropcap {
  float: left;
  font-size: 3.5rem;
  line-height: 0.75;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
  margin-right: 0.1em;
  margin-top: 0.12em;
}

/* Metin + Fotoğraf yan yana */
.ev-story-row {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .ev-story-row { grid-template-columns: 1fr 1fr; }
  .ev-story-row--imgright .ev-story-text { order: 1; }
  .ev-story-row--imgright .ev-story-img  { order: 2; }
}

.ev-story-img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(60,81,61,0.14);
  aspect-ratio: 4 / 3;
}
.ev-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(1.02) saturate(1.07);
}
.ev-story-text h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.ev-story-text p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.875rem;
}

/* Tam genişlik fotoğraf */
.ev-story-full {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(60,81,61,0.1);
  margin-bottom: 0;
}
.ev-story-full img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
  filter: contrast(1.06) brightness(1.03) saturate(1.08);
}
.ev-img-caption {
  background: #f6f9f6;
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

/* ── Eğlenceli Bölüm ── */
.ev-fun-section {
  background: linear-gradient(135deg, #f4f9f4 0%, #fdf0f2 100%);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 640px) { .ev-fun-section { padding: 1.75rem 1.25rem; } }
.ev-fun-header { max-width: 680px; margin-bottom: 2rem; }
.ev-fun-header h2 { font-size: 1.6rem; color: var(--primary); margin-bottom: 0.75rem; }
.ev-fun-header p { color: var(--muted); line-height: 1.7; font-size: 0.925rem; }

.ev-fun-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .ev-fun-grid { grid-template-columns: 1.35fr 1fr; } }

.ev-fun-main {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(60,81,61,0.14);
}
.ev-fun-main img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ev-fun-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(60,81,61,0.82) 0%, transparent 60%);
  padding: 2rem 1.5rem 1.25rem;
}
.ev-fun-overlay span {
  color: #fff;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
}
.ev-fun-side {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(60,81,61,0.1);
}
.ev-fun-side img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Teşekkür Bloğu ── */
.ev-thanks {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(60,81,61,0.07);
}
@media (max-width: 640px) { .ev-thanks { padding: 1.75rem 1.25rem; } }
.ev-thanks-icon {
  width: 3.5rem; height: 3.5rem;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
  margin: 0 auto 1.25rem;
}
.ev-thanks h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.ev-thanks > p {
  color: var(--muted);
  font-size: 0.925rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.ev-thanks-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto 1.75rem;
  text-align: left;
}
@media (min-width: 600px) { .ev-thanks-list { grid-template-columns: repeat(2, 1fr); } }

.ev-thanks-list li {
  display: flex;
  flex-direction: column;
  background: #f6f9f6;
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
}
.ev-thanks-list li strong {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.ev-thanks-list li span {
  font-size: 0.78rem;
  color: var(--muted);
}
.ev-thanks-note {
  font-size: 0.85rem !important;
  font-style: italic;
  color: var(--muted) !important;
  margin: 0 auto !important;
}

/* ── CTA (paylaşılan) ── */
.event-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #4a6b4c 100%);
  color: var(--white);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
}
.event-cta h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--white); }
.event-cta p { margin-bottom: 1.5rem; opacity: 0.88; }
.event-cta .btn-primary { background: var(--white); color: var(--primary); }
.event-cta .btn-primary:hover { background: var(--accent-light); }

/* ── Kariyer Sayfası ─────────────────────────────────── */

/* ── Öne Çıkan Etkinlik ── */
.ev-featured {
  display: grid;
  gap: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(60,81,61,0.14);
  margin-bottom: 3rem;
  background: var(--white);
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .ev-featured { grid-template-columns: 1.1fr 1fr; }
}

.ev-featured-img {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: #2c3e30;
}
.ev-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.ev-featured-badge {
  position: absolute;
  top: 1.125rem;
  left: 1.125rem;
  background: var(--accent-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ev-featured-body {
  padding: 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ev-featured-body h2 {
  font-size: 1.65rem;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.ev-featured-body p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
}
.ev-featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.ev-featured-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── Etkinlik Kartları Grid ── */
.ev-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 640px)  { .ev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ev-grid { grid-template-columns: repeat(3, 1fr); } }

.ev-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(60,81,61,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.ev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(60,81,61,0.13);
}

.ev-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8f0e9;
}
.ev-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.35s ease;
}
.ev-card:hover .ev-card-img img { transform: scale(1.04); }

.ev-card-tag {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(60,81,61,0.88);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  backdrop-filter: blur(4px);
}

.ev-card-body { padding: 1.25rem 1.375rem 1.5rem; }
.ev-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.ev-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.875rem;
}
.ev-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.ev-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Eğlenceli Etkinlikler Bölümü ── */
.ev-fun-section {
  background: linear-gradient(135deg, #f4f9f4 0%, #fdf0f2 100%);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
}
.ev-fun-header {
  max-width: 680px;
  margin-bottom: 2rem;
}
.ev-fun-header h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.ev-fun-header p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.925rem;
}

.ev-fun-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ev-fun-grid { grid-template-columns: 1.4fr 1fr; }
}

.ev-fun-main {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(60,81,61,0.14);
}
.ev-fun-main img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ev-fun-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(60,81,61,0.82) 0%, transparent 60%);
  padding: 2rem 1.5rem 1.25rem;
}
.ev-fun-overlay span {
  color: #fff;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.ev-fun-side {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(60,81,61,0.1);
}
.ev-fun-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CTA (paylaşılan) ── */
.event-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #4a6b4c 100%);
  color: var(--white);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
}
.event-cta h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.event-cta p { margin-bottom: 1.5rem; opacity: 0.88; }
.event-cta .btn-primary { background: var(--white); color: var(--primary); }
.event-cta .btn-primary:hover { background: var(--accent-light); }

/* ── Kariyer Sayfası ─────────────────────────────────── */

.event-card {
  display: flex;
  gap: 1.125rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(60,81,61,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(60,81,61,0.12);
}
.event-card--past { opacity: 0.72; }

.event-date-badge {
  flex-shrink: 0;
  width: 3.25rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}
.event-date-badge--past { background: #8fa691; }

.event-day   { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.event-month { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.85; }

.event-body { flex: 1; min-width: 0; }

.event-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.18rem 0.55rem;
  border-radius: 99px;
  margin-bottom: 0.5rem;
}
.event-tag--past { background: #e8e8e8; color: #777; }

.event-body h3 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.event-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.event-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.event-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #4a6b4c 100%);
  color: var(--white);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
}
.event-cta h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.event-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.88;
}
.event-cta .btn-primary {
  background: var(--white);
  color: var(--primary);
}
.event-cta .btn-primary:hover { background: var(--accent-light); }

/* ── Kariyer Sayfası ─────────────────────────────────── */
.career-why { margin-bottom: 0; }
.career-why h2 { margin-bottom: 1rem; }
.career-why > p { color: var(--muted); max-width: 700px; margin-bottom: 2rem; line-height: 1.7; }

.career-values {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) { .career-values { grid-template-columns: repeat(4, 1fr); } }

.career-value-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.375rem 1.125rem;
  text-align: center;
}
.career-value-item .icon {
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.career-value-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.375rem;
}
.career-value-item p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.job-list { display: flex; flex-direction: column; gap: 1.25rem; }

.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(60,81,61,0.05);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}
.job-card-header h3 {
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.job-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.job-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
}
.job-badge--fulltime  { background: #e6f4ea; color: #2d6a35; }
.job-badge--parttime  { background: #fff3e0; color: #b35c00; }
.job-badge--location  { background: #f0f4ff; color: #3a5bd9; }

.job-card > p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.875rem;
}

.job-requirements {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.job-requirements li {
  font-size: 0.825rem;
  color: var(--muted);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.825rem;
  white-space: nowrap;
}

/* ── Uzman Kadro Kartları ────────────────────────────── */
.expert-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .expert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .expert-grid { grid-template-columns: repeat(3, 1fr); } }

.expert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(60,81,61,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.expert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(60,81,61,0.13);
}

.expert-card-body { padding: 1.25rem 1.375rem 1.5rem; }

.expert-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 99px;
  margin-bottom: 0.6rem;
}

.expert-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.expert-card-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.875rem;
}

.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.expert-tags li {
  background: #f4f7f4;
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
}

/* ── Google Maps ─────────────────────────────────────── */
.map-wrapper {
  margin-top: 1.75rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  line-height: 0;
}
.map-embed {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
@media (min-width: 768px) { .map-embed { height: 320px; } }

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.65rem 1.375rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}
.btn-directions:hover {
  background: #2e3f2f;
  transform: translateY(-1px);
  color: var(--white);
}

/* ── WhatsApp yüzen buton ────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: #25d366;
  color: #fff;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.125rem 0.75rem 0.875rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  overflow: hidden;
  max-width: 3rem;         /* collapsed — yalnızca ikon */
  transition: max-width 0.35s ease, background 0.2s;
  white-space: nowrap;
}
.wa-float:hover {
  background: #1ebe5d;
  max-width: 18rem;        /* genişle — label görünür */
  color: #fff;
}
.wa-float-label {
  opacity: 0;
  transition: opacity 0.2s 0.15s;
}
.wa-float:hover .wa-float-label { opacity: 1; }

/* Mobil: her zaman genişletilmiş görün */
@media (max-width: 480px) {
  .wa-float {
    bottom: 1rem;
    right: 1rem;
    max-width: 3rem;
    padding: 0.875rem;
    border-radius: 50%;
    justify-content: center;
  }
  .wa-float-label { display: none; }
}

/* ── Form başarı sonrası WA bildirim butonu ──────────── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.75rem;
  transition: background 0.18s;
}
.btn-wa:hover { background: #1ebe5d; color: #fff; }
.btn-wa-notify { width: 100%; justify-content: center; }

/* Footer */
.site-footer { background: var(--primary); color: var(--white); margin-top: auto; }

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.25rem 0 1.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-inner .logo {
    flex-shrink: 0;
  }
}

.footer-mission {
  max-width: 22rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--primary-dark);
}

.footer-bottom .container {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .footer-copyright { font-size: 0.8125rem; }
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

@media (min-width: 768px) {
  .footer-social { align-items: flex-end; }
}

.footer-instagram {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}

.footer-instagram:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

.social-links { display: flex; gap: 0.625rem; }

.social-link {
  width: 2rem; height: 2rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}

.social-link:hover { background: rgba(255,255,255,0.1); }

.social-link svg { width: 1rem; height: 1rem; fill: var(--white); }

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

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

@media (min-width: 1024px) {
  .gallery-grid {
    gap: 1.5rem;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 0.875rem;
  overflow: hidden;
  background: var(--beige);
  box-shadow: 0 4px 16px rgba(60, 81, 61, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.35s ease;
}

/* Okul dış cephesi geniş landscape — binanın ortası gösterilsin */
.gallery-item:first-child img {
  object-position: center 45%;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60, 81, 61, 0.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 0.875rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
}

/* 404 */
.error-page {
  min-height: 50vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 4rem 1rem;
}

.error-page h1 { font-family: "Playfair Display", serif; font-size: 2.25rem; color: var(--primary); }

.error-page p { margin-top: 0.75rem; color: var(--muted); }

.error-page .btn { margin-top: 1.5rem; }

/* Icons inline */
.icon { width: 1rem; height: 1rem; flex-shrink: 0; }

.icon-sm { width: 0.875rem; height: 0.875rem; }

.mb-8 { margin-bottom: 2rem; }

.mt-6 { margin-top: 1.5rem; }

.scroll-mt { scroll-margin-top: 6rem; }
