/* ÇETADER — çevre temalı front stilleri (Tailwind CDN + Bootstrap uyumlu) */
:root {
  --cetader-50: #eef8f1;
  --cetader-100: #d8eee0;
  --cetader-200: #b4dcc3;
  --cetader-300: #82c29a;
  --cetader-400: #4fa574;
  --cetader-500: #2f8a58;
  --cetader-600: #1f6b44;
  --cetader-700: #1a5638;
  --cetader-800: #16452e;
  --cetader-900: #0f2f20;
  --leaf: #7cb342;
  --sun: #e8c547;
  --mist-50: #f4faf6;
  --mist-100: #eaf5ee;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body.site-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cetader-900);
  background: var(--mist-50);
  margin: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.font-display,
.site-body h1,
.site-body h2,
.site-body h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
}

.site-mesh {
  background:
    radial-gradient(ellipse at 8% 12%, rgba(124, 179, 66, 0.18), transparent 42%),
    radial-gradient(ellipse at 92% 8%, rgba(31, 107, 68, 0.14), transparent 38%),
    radial-gradient(ellipse at 50% 100%, rgba(232, 197, 71, 0.08), transparent 45%),
    linear-gradient(165deg, #f4faf6 0%, #eaf5ee 45%, #d8eee0 100%);
}

.site-leaf-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 8c8 10 10 18 0 28-10-10-8-18 0-28z' fill='%231f6b44' fill-opacity='0.04'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

@keyframes site-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes leaf-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

@keyframes soft-pulse {
  0%, 100% { opacity: .55; }
  50% { opacity: .9; }
}

@keyframes wave-drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-2%); }
}

@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes rule-draw {
  from { transform: scaleX(0); opacity: .2; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes float-up {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  15% { opacity: .35; }
  100% { transform: translateY(-110vh) rotate(28deg); opacity: 0; }
}

@keyframes icon-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.animate-rise { animation: site-rise .75s ease-out both; }
.animate-rise-delay { animation: site-rise .75s ease-out .12s both; }
.animate-rise-late { animation: site-rise .75s ease-out .24s both; }
.leaf-float { animation: leaf-float 5s ease-in-out infinite; }
.soft-pulse { animation: soft-pulse 4s ease-in-out infinite; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

.nature-wave {
  animation: wave-drift 10s ease-in-out infinite;
  transform-origin: center;
}

.hero-kenburns {
  animation: ken-burns 14s ease-out infinite alternate;
  transform-origin: center center;
}

.floating-leaves {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.floating-leaves span {
  position: absolute;
  bottom: -40px;
  width: 14px;
  height: 22px;
  border-radius: 0 70% 0 70%;
  background: rgba(124, 179, 66, 0.35);
  animation: float-up linear infinite;
}

.floating-leaves span:nth-child(1) { left: 8%; animation-duration: 16s; animation-delay: 0s; }
.floating-leaves span:nth-child(2) { left: 22%; width: 10px; height: 16px; animation-duration: 20s; animation-delay: 3s; background: rgba(31, 107, 68, 0.28); }
.floating-leaves span:nth-child(3) { left: 48%; animation-duration: 18s; animation-delay: 6s; }
.floating-leaves span:nth-child(4) { left: 68%; width: 12px; height: 18px; animation-duration: 22s; animation-delay: 1.5s; }
.floating-leaves span:nth-child(5) { left: 86%; animation-duration: 17s; animation-delay: 4.5s; background: rgba(232, 197, 71, 0.28); }

.hover-lift {
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .35s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -28px rgba(15, 47, 32, 0.5);
}

.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.img-zoom:hover img {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .animate-rise,
  .animate-rise-delay,
  .animate-rise-late,
  .leaf-float,
  .soft-pulse,
  .nature-wave,
  .hero-kenburns,
  .page-rule,
  .floating-leaves span,
  .pillar-icon,
  .site-cta {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hover-lift:hover,
  .img-zoom:hover img {
    transform: none;
  }
}

/* Bootstrap .hidden { display:none !important } Tailwind'i eziyor — kendi sınıflarımız */
.nav-desktop {
  display: none !important;
  align-items: center;
  gap: .15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-burger {
  display: inline-flex !important;
}

.cta-desktop {
  display: none !important;
}

@media (min-width: 1100px) {
  .nav-desktop {
    display: flex !important;
  }

  .nav-burger {
    display: none !important;
  }

  .cta-desktop {
    display: inline-flex !important;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background:
    linear-gradient(120deg, rgba(15, 47, 32, 0.97), rgba(31, 107, 68, 0.94));
  border-bottom: 1px solid rgba(124, 179, 66, 0.25);
  box-shadow: 0 10px 40px -24px rgba(15, 47, 32, 0.65);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px -20px rgba(15, 47, 32, 0.75);
  background:
    linear-gradient(120deg, rgba(15, 47, 32, 0.99), rgba(26, 86, 56, 0.96));
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.35rem;
  padding: .7rem 1.25rem;
}

@media (min-width: 640px) {
  .site-header-inner {
    min-height: 4.55rem;
    padding: .75rem 1.5rem;
  }
}

.site-logo {
  height: 2.65rem;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

@media (min-width: 640px) {
  .site-logo {
    height: 2.95rem;
  }
}

.logo-plate {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform-origin: left center;
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 179, 66, 0.14), transparent 45%),
    linear-gradient(160deg, #ffffff 0%, #f4faf6 100%);
  border-radius: 1rem;
  padding: .4rem .75rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 10px 28px -16px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(31, 107, 68, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  will-change: transform;
}

.logo-plate::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(124, 179, 66, 0.45), transparent 40%, transparent 60%, rgba(31, 107, 68, 0.25));
  opacity: .55;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}

.logo-plate:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 32px -16px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(31, 107, 68, 0.12);
}

/* Yükseklik değiştirmeden küçült — layout zıplamasını önler */
.site-header.is-scrolled .logo-plate {
  transform: scale(0.84);
}

.site-header.is-scrolled .logo-plate:hover {
  transform: scale(0.84) translateY(-1px);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 70;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0f2f20;
  background: linear-gradient(145deg, #9ccc65, #7cb342);
  box-shadow: 0 14px 30px -14px rgba(31, 107, 68, 0.75);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.92);
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease, filter .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  filter: brightness(1.06);
  transform: translateY(-2px) scale(1.03);
}

.back-to-top svg {
  width: 1.15rem;
  height: 1.15rem;
}

@media (prefers-reduced-motion: reduce) {
  .logo-plate,
  .back-to-top {
    transition: none !important;
  }

  .site-header.is-scrolled .logo-plate,
  .site-header.is-scrolled .logo-plate:hover {
    transform: none;
  }
}

.logo-safe {
  width: auto !important;
  max-width: 160px;
  height: auto !important;
  max-height: 4.5rem;
  object-fit: contain !important;
  margin: 0 auto;
  display: block;
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.95) !important;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  transition: background .2s ease, color .2s ease;
  cursor: pointer;
  background: transparent;
  border: 0;
  white-space: nowrap;
}

.site-nav-link:hover,
.site-nav-link:focus {
  background: rgba(124, 179, 66, 0.28);
  color: #fff !important;
}

.site-dropdown {
  position: relative;
}

.site-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  padding-top: .55rem;
  z-index: 80;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-dropdown-inner {
  padding: .55rem;
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 24px 50px -20px rgba(15, 47, 32, 0.45);
  border: 1px solid rgba(31, 107, 68, 0.12);
}

.site-dropdown:hover .site-dropdown-menu,
.site-dropdown:focus-within .site-dropdown-menu {
  display: block;
}

.site-dropdown-menu a {
  display: block;
  padding: .55rem .75rem;
  border-radius: .75rem;
  color: var(--cetader-800) !important;
  font-size: .88rem;
  font-weight: 650;
  text-decoration: none !important;
}

.site-dropdown-menu a:hover {
  background: var(--cetader-50);
  color: var(--cetader-600) !important;
}

.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(120deg, #9ccc65, #7cb342, #aed581, #7cb342);
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
  color: #0f2f20 !important;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 750;
  padding: .78rem 1.35rem;
  text-decoration: none !important;
  box-shadow: 0 12px 28px -14px rgba(124, 179, 66, 0.9);
  transition: transform .2s ease, filter .2s ease;
}

.site-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: #0f2f20 !important;
}

.site-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: .72rem 1.3rem;
  text-decoration: none !important;
  transition: background .2s ease, border-color .2s ease;
}

.site-cta-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff !important;
}

.site-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 999px;
  background: var(--cetader-600);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: .8rem 1.4rem;
  text-decoration: none !important;
  transition: transform .2s ease, background .2s ease;
}

.site-btn-dark:hover {
  background: var(--cetader-700);
  transform: translateY(-2px);
  color: #fff !important;
}

.burger-btn {
  width: 2.85rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  border-radius: .9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

/* Mobile menu */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 47, 32, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(90vw, 360px);
  background:
    linear-gradient(165deg, #0f2f20 0%, #1a5638 55%, #1f6b44 100%);
  color: #fff;
  padding: 1.35rem 1.2rem 2rem;
  transform: translateX(104%);
  transition: transform .28s ease;
  overflow-y: auto;
}

.mobile-drawer.is-open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer a {
  color: rgba(255, 255, 255, 0.95) !important;
  text-decoration: none !important;
}

.mobile-drawer .mobile-link {
  display: block;
  padding: .8rem .75rem;
  border-radius: .85rem;
  font-size: 1rem;
  font-weight: 700;
}

.mobile-drawer .mobile-link:hover {
  background: rgba(124, 179, 66, 0.22);
}

.mobile-drawer .mobile-sub {
  margin: .15rem 0 .65rem .55rem;
  padding-left: .75rem;
  border-left: 3px solid rgba(124, 179, 66, 0.45);
}

.mobile-drawer .mobile-sub a {
  display: block;
  padding: .5rem .55rem;
  font-size: .92rem;
  opacity: .92;
}

/* Page titles */
.page-kicker {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cetader-500);
}

.page-title {
  margin-top: .45rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 650;
  line-height: 1.15;
  color: var(--cetader-800);
}

.page-rule {
  margin-top: 1rem;
  width: 5.5rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leaf), var(--cetader-600));
  transform-origin: left center;
  animation: rule-draw .9s ease-out both;
}

/* Content prose */
.site-prose {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--cetader-800);
}

.site-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 1.25rem;
  margin: 1.1rem 0;
}

.site-prose p { margin: 0 0 1.1rem; }

.site-prose h1,
.site-prose h2,
.site-prose h3,
.site-prose h4 {
  color: var(--cetader-800);
  margin: 1.5rem 0 .8rem;
  line-height: 1.25;
  font-size: 1.45rem;
}

.site-prose a {
  color: var(--cetader-600);
  text-decoration: underline;
}

.site-prose ul,
.site-prose ol {
  margin: 0 0 1.1rem 1.3rem;
}

/* Owl */
.owl-carousel .owl-item img.logo-safe,
.site-owl .owl-item img.logo-safe {
  width: auto !important;
  max-width: 160px !important;
  height: auto !important;
  max-height: 4.5rem !important;
  object-fit: contain !important;
  margin-left: auto;
  margin-right: auto;
}

.site-owl .owl-item article > a > img:not(.logo-safe) {
  width: 100%;
  object-fit: cover;
}

.site-owl .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
  padding: 0 .2rem;
}

.site-owl .owl-nav button {
  pointer-events: auto;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 9999px !important;
  background: #fff !important;
  color: var(--cetader-700) !important;
  border: 1px solid var(--cetader-200) !important;
  box-shadow: 0 12px 28px -14px rgba(15, 47, 32, 0.45);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
}

.site-owl .owl-nav button span {
  font-size: 1.45rem;
  line-height: 1;
}

.site-owl .owl-dots {
  margin-top: 1.1rem;
  text-align: center;
}

.site-owl .owl-dot span {
  background: var(--cetader-200) !important;
}

.site-owl .owl-dot.active span,
.site-owl .owl-dot:hover span {
  background: var(--cetader-600) !important;
}

.hero-shell {
  min-height: 90vh;
}

.hero-owl,
.hero-owl .owl-stage-outer,
.hero-owl .owl-stage,
.hero-owl .owl-item,
.hero-owl .owl-item > div {
  height: 100%;
}

.hero-owl .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.4rem;
  z-index: 5;
}

.hero-owl .owl-dot span {
  background: rgba(255, 255, 255, 0.45) !important;
  width: 11px !important;
  height: 11px !important;
}

.hero-owl .owl-dot.active span {
  background: #9ccc65 !important;
}

/* Nature wave divider */
.nature-wave {
  display: block;
  width: 100%;
  height: 64px;
  color: #fff;
  animation: wave-drift 10s ease-in-out infinite;
  transform-origin: center;
}

.nature-wave path {
  fill: currentColor;
}

/* Pillar cards */
.pillar {
  position: relative;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 107, 68, 0.12);
  box-shadow: 0 18px 40px -28px rgba(15, 47, 32, 0.35);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -28px rgba(15, 47, 32, 0.5);
}

.pillar::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -24px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 179, 66, 0.28), transparent 70%);
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
  color: var(--cetader-600);
  font-size: 1.35rem;
  margin-bottom: .9rem;
  animation: icon-bob 3.5s ease-in-out infinite;
}

.pillar:hover .pillar-icon {
  animation-duration: 1.6s;
  background: linear-gradient(145deg, #c8e6c9, #a5d6a7);
}

.pillar h3 {
  font-size: 1.55rem;
  font-weight: 650;
  color: var(--cetader-800);
  margin: 0;
}

.pillar p {
  margin: .65rem 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(26, 86, 56, 0.88);
}

/* Decorative leaf SVG helper */
.leaf-deco {
  position: absolute;
  pointer-events: none;
  opacity: .18;
  color: var(--cetader-600);
}

/* Gonullu */
.gonullu-page .chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gonullu-page .chip span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid var(--cetader-200);
  background: #fff;
  color: var(--cetader-700);
  border-radius: 9999px;
  padding: .7rem 1.05rem;
  font-size: 1rem;
  font-weight: 650;
  cursor: pointer;
  transition: all .2s ease;
  user-select: none;
}

.gonullu-page .chip span::before {
  content: '';
  width: .6rem;
  height: .6rem;
  border-radius: 9999px;
  background: var(--cetader-200);
}

.gonullu-page .chip input:checked + span {
  background: var(--cetader-600);
  border-color: var(--cetader-600);
  color: #fff;
  box-shadow: 0 12px 26px -16px rgba(31, 107, 68, 0.9);
}

.gonullu-page .chip input:checked + span::before {
  background: #9ccc65;
}

.gonullu-page input[type="text"],
.gonullu-page input[type="email"],
.gonullu-page input[type="tel"],
.gonullu-page select,
.gonullu-page textarea {
  width: 100%;
  border-radius: .95rem;
  border: 1px solid var(--cetader-200);
  background: #fff;
  padding: .95rem 1.05rem;
  font-size: 1.05rem;
  color: var(--cetader-900);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.gonullu-page input:focus,
.gonullu-page select:focus,
.gonullu-page textarea:focus {
  border-color: var(--cetader-600);
  box-shadow: 0 0 0 4px rgba(31, 107, 68, 0.16);
  background: var(--mist-50);
}

.section-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 107, 68, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(244,250,246,0.94));
  border-radius: 1.4rem;
  padding: 1.6rem;
  box-shadow: 0 18px 50px -28px rgba(15, 47, 32, 0.35);
}

@media (min-width: 768px) {
  .section-panel {
    padding: 1.9rem 2.1rem;
  }
}

#ozgecmisModal.site-modal,
.site-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

#ozgecmisModal.site-modal.is-open,
.site-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 47, 32, 0.55);
}

.site-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(84vh, 720px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 30px 60px -28px rgba(15, 47, 32, 0.55);
  transform: translateY(12px) scale(.98);
  transition: transform .22s ease;
}

.site-modal.is-open .site-modal__panel,
#ozgecmisModal.site-modal.is-open .site-modal__panel {
  transform: translateY(0) scale(1);
}

.site-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--cetader-600);
}

.site-modal__close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  opacity: .85;
}

.site-modal__close:hover {
  opacity: 1;
}

.site-modal__body {
  padding: 1.15rem 1.25rem;
  overflow-y: auto;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cetader-800);
}

.site-modal__footer {
  padding: .9rem 1.15rem 1.15rem;
  border-top: 1px solid var(--cetader-100);
  display: flex;
  justify-content: flex-end;
}

/* List item titles larger */
.list-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 650;
  line-height: 1.3;
  color: var(--cetader-800);
}
