/* ============================================================
   ULTRA MODERN PRESCHOOL THEME v2.0
   "Soft & Dreamy" — Dalgalı Geçişler, Pastel Palet
   Mint Yeşili • Toz Pembe • Bebek Mavisi • Soft Sarı
   ============================================================ */

/* ── Google Fonts loaded in head.php ── */

/* ── CSS Custom Properties ── */
:root {
  /* Primary Palette */
  --ps-mint: #a8e6cf;
  --ps-mint-light: #d4f5e6;
  --ps-mint-dark: #6bc5a0;
  --ps-pink: #ffb7c5;
  --ps-pink-light: #ffe0e6;
  --ps-pink-dark: #e8899e;
  --ps-baby-blue: #b5d5ff;
  --ps-baby-blue-light: #dde9ff;
  --ps-baby-blue-dark: #7aafef;
  --ps-soft-yellow: #fff4b8;
  --ps-soft-yellow-dark: #f5d84a;
  --ps-lavender: #d5c6ff;
  --ps-lavender-light: #ede5ff;
  --ps-peach: #ffdab9;
  --ps-peach-dark: #ffb87a;

  /* Neutrals */
  --ps-white: #ffffff;
  --ps-bg: #fefaf6;
  --ps-bg-alt: #fff8f0;
  --ps-text: #2d2d3f;
  --ps-text-light: #6b6b80;
  --ps-text-muted: #9b9bad;

  /* Design Tokens */
  --ps-radius: 30px;
  --ps-radius-lg: 40px;
  --ps-radius-sm: 16px;
  --ps-radius-pill: 50px;
  --ps-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  --ps-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.1);
  --ps-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
  --ps-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --ps-transition-fast: all 0.25s ease;

  /* Sabit üst menü — JS ölçümü yokken varsayılan; preschool-hero-slider.js html’e yazar */
  --ps-nav-height: 88px;

  /* Marka ana vurgu: turuncu-kırmızı (logoya yakın, koyu bordoya kaymayan) */
  --ps-main: #f56e28;
  --ps-main-mid: #e45f22;
  --ps-main-deep: #c24e1c;
}

/* ── Global Resets ── */
body,
p,
span,
div,
section,
header,
footer,
nav,
main,
aside,
article,
input,
select,
textarea,
button,
label,
table,
th,
td,
tr,
ul,
ol,
li,
a,
blockquote,
figure,
figcaption {
  font-family: "Nunito", sans-serif !important;
}

body {
  background-color: var(--ps-bg) !important;
  color: var(--ps-text) !important;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Dikey scrollbar gizli; fare tekerleği / dokunma kaydırması çalışır */
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* İçerik, sabit navbarın altından başlasın (--ps-nav-height ile hero negatif margin aynı kaynaktan çözülmeli) */
main {
  padding-top: calc(var(--ps-nav-height, 88px) + 0.85rem);
}

/* Tam ekran / klasik hero: main padding ile aynı tutar kadar yukarı çek (çift ofset olmasın) */
main > .ps-hero-fullscreen:first-child,
main > .ps-hero:first-child {
  margin-top: calc(-1 * (var(--ps-nav-height, 88px) + 0.85rem));
}

/* #hero id’si margin-top:0 !important veriyor; ilk çocuk olarak yukarı çek */
main > #hero.ps-hero:first-child {
  margin-top: calc(-1 * (var(--ps-nav-height, 88px) + 0.85rem)) !important;
}

/* Biz Kimiz / statik kurumsal / akademik kadro: üst bandı main padding kadar yukarı al;
   böylece gradient menü altında başlar (şeffaf nav + gövde rengi şeridi kalkar) */
main > .ps-bk-page:first-child,
main > .ps-static-acc-page:first-child,
main > .ps-team-page:first-child {
  margin-top: calc(-1 * (var(--ps-nav-height, 88px) + 0.85rem));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Baloo 2", sans-serif !important;
  font-weight: 600 !important;
  color: var(--ps-text) !important;
}

a {
  color: var(--ps-baby-blue-dark) !important;
  text-decoration: none !important;
  transition: var(--ps-transition-fast);
}

a:hover {
  color: var(--ps-pink-dark) !important;
}

/* ── Animations ── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(5deg);
  }

  75% {
    transform: rotate(-5deg);
  }
}

/* ── Premium SVG Card Animations — Kelebek Kalitesinde ── */
.ps-card-anim {
  position: absolute;
  top: -18px;
  right: -12px;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.15));
  overflow: visible;
}

.ps-prog-v2:hover .ps-card-anim {
  opacity: 1;
}

/* ═══════ 1. BALON — Sıcak Hava Balonu ═══════ */
.ps-anim-balloon {
  animation: baFloat 3.5s ease-in-out infinite;
}

@keyframes baFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

/* Renk tanımları */
.ps-ba-body {
  fill: #ff6b6b;
}

.ps-ba-stripe-l {
  fill: #ff8787;
}

.ps-ba-stripe-r {
  fill: #e74c4c;
}

.ps-ba-neck {
  fill: #efefef;
}

.ps-ba-basket {
  fill: #d2b48c;
  stroke: #8b4513;
  stroke-width: 0.8;
}

.ps-ba-spot {
  fill: rgba(255, 255, 255, 0.4);
}

/* Renk döngüsü: kırmızı → turuncu → mor → mavi → kırmızı */
@keyframes baColorBody {
  0%,
  100% {
    fill: #ff6b6b;
  }

  25% {
    fill: #ffb347;
  }

  50% {
    fill: #a78bfa;
  }

  75% {
    fill: #48cae4;
  }
}

@keyframes baColorStrL {
  0%,
  100% {
    fill: #ff8787;
  }

  25% {
    fill: #ffd080;
  }

  50% {
    fill: #c4b5fd;
  }

  75% {
    fill: #76d6e8;
  }
}

@keyframes baColorStrR {
  0%,
  100% {
    fill: #e74c4c;
  }

  25% {
    fill: #f59e0b;
  }

  50% {
    fill: #7c3aed;
  }

  75% {
    fill: #0891b2;
  }
}

.ps-ba-body {
  animation: baColorBody 14s ease-in-out infinite;
}

.ps-ba-stripe-l {
  animation: baColorStrL 14s ease-in-out infinite;
}

.ps-ba-stripe-r {
  animation: baColorStrR 14s ease-in-out infinite;
}

/* ═══════ 2. UÇURTMA ═══════ */
.ps-anim-kite {
  animation: ktSway 4.5s ease-in-out infinite;
}

@keyframes ktSway {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(5px, -4px) rotate(6deg);
  }

  66% {
    transform: translate(-3px, -2px) rotate(-4deg);
  }
}

/* Renk tanımları */
.ps-kt-panel-tl {
  fill: #48cae4;
}

.ps-kt-panel-tr {
  fill: #00b4d8;
}

.ps-kt-panel-bl {
  fill: #0096c7;
}

.ps-kt-panel-br {
  fill: #0077b6;
}

.ps-kt-spot {
  fill: rgba(255, 255, 255, 0.5);
}

.ps-kt-tail {
  stroke: #94a3b8;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
}

.ps-kt-bow1 {
  fill: #ffb703;
}

.ps-kt-bow2 {
  fill: #fb8500;
}

/* Renk döngüsü: mavi → yeşil → mor → pembe → mavi */
@keyframes ktColorTL {
  0%,
  100% {
    fill: #48cae4;
  }

  25% {
    fill: #6ee7b7;
  }

  50% {
    fill: #c4b5fd;
  }

  75% {
    fill: #fda4af;
  }
}

@keyframes ktColorTR {
  0%,
  100% {
    fill: #00b4d8;
  }

  25% {
    fill: #34d399;
  }

  50% {
    fill: #a78bfa;
  }

  75% {
    fill: #fb7185;
  }
}

@keyframes ktColorBL {
  0%,
  100% {
    fill: #0096c7;
  }

  25% {
    fill: #10b981;
  }

  50% {
    fill: #8b5cf6;
  }

  75% {
    fill: #f43f5e;
  }
}

@keyframes ktColorBR {
  0%,
  100% {
    fill: #0077b6;
  }

  25% {
    fill: #059669;
  }

  50% {
    fill: #7c3aed;
  }

  75% {
    fill: #e11d48;
  }
}

.ps-kt-panel-tl {
  animation: ktColorTL 14s ease-in-out infinite;
}

.ps-kt-panel-tr {
  animation: ktColorTR 14s ease-in-out infinite;
}

.ps-kt-panel-bl {
  animation: ktColorBL 14s ease-in-out infinite;
}

.ps-kt-panel-br {
  animation: ktColorBR 14s ease-in-out infinite;
}

/* ═══════ 3. KUŞ ═══════ */
.ps-anim-bird {
  animation: bdFly 3s ease-in-out infinite;
}

@keyframes bdFly {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Kuş kanat çırpma — kelebekteki gibi transform-based */
.ps-bd-wing {
  transform-origin: 24px 28px;
  animation: bdFlap 0.25s ease-in-out infinite alternate;
}

@keyframes bdFlap {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-15deg);
  }
}

/* Renk tanımları */
.ps-bd-body {
  fill: #fde047;
}

.ps-bd-belly {
  fill: #fef9c3;
}

.ps-bd-wing {
  fill: #facc15;
}

.ps-bd-eye-outer {
  fill: #fefce8;
}

.ps-bd-beak {
  fill: #f97316;
}

.ps-bd-tail {
  fill: #eab308;
}

.ps-bd-cheek {
  fill: #fbbf24;
  opacity: 0.5;
}

/* Renk döngüsü: sarı → yeşilimsi → pembe → turuncu → sarı */
@keyframes bdColorBody {
  0%,
  100% {
    fill: #fde047;
  }

  25% {
    fill: #86efac;
  }

  50% {
    fill: #fda4af;
  }

  75% {
    fill: #fdba74;
  }
}

@keyframes bdColorWing {
  0%,
  100% {
    fill: #facc15;
  }

  25% {
    fill: #4ade80;
  }

  50% {
    fill: #fb7185;
  }

  75% {
    fill: #fb923c;
  }
}

@keyframes bdColorTail {
  0%,
  100% {
    fill: #eab308;
  }

  25% {
    fill: #22c55e;
  }

  50% {
    fill: #f43f5e;
  }

  75% {
    fill: #ea580c;
  }
}

.ps-bd-body {
  animation: bdColorBody 14s ease-in-out infinite;
}

.ps-bd-wing {
  animation:
    bdFlap 0.25s ease-in-out infinite alternate,
    bdColorWing 14s ease-in-out infinite;
}

.ps-bd-tail {
  animation: bdColorTail 14s ease-in-out infinite;
}

/* ── SVG Wave Separator ── */
.ps-wave-separator {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  z-index: 2;
}

.ps-wave-separator svg {
  display: block;
  width: calc(100% + 2px);
  margin-left: -1px;
  position: relative;
}

.ps-wave-top {
  margin-top: -2px;
  margin-bottom: -5px;
}

.ps-wave-bottom {
  margin-top: -5px;
  margin-bottom: -2px;
}

.ps-wave-bottom svg {
  transform: rotate(180deg);
}

/* ── Section Badge ── */
.ps-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: var(--ps-radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.ps-badge-mint {
  background: var(--ps-mint-light);
  color: var(--ps-mint-dark);
}

.ps-badge-pink {
  background: var(--ps-pink-light);
  color: var(--ps-pink-dark);
}

.ps-badge-blue {
  background: var(--ps-baby-blue-light);
  color: var(--ps-baby-blue-dark);
}

.ps-badge-yellow {
  background: var(--ps-soft-yellow);
  color: #c9a800;
}

.ps-badge-lavender {
  background: var(--ps-lavender-light);
  color: #7b61c7;
}

.ps-badge-white {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ── Section Titles ── */
.ps-section-title {
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.ps-section-subtitle {
  font-size: 1.1rem;
  color: var(--ps-text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── Buttons ── */
.ps-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--ps-pink), var(--ps-peach-dark)) !important;
  color: var(--ps-white) !important;
  padding: 15px 36px;
  border-radius: var(--ps-radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: var(--ps-transition);
  box-shadow: 0 6px 25px rgba(255, 183, 197, 0.4);
  text-decoration: none !important;
}

.ps-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(255, 183, 197, 0.55);
  color: var(--ps-white) !important;
}

.ps-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ps-white) !important;
  color: var(--ps-baby-blue-dark) !important;
  padding: 15px 36px;
  border-radius: var(--ps-radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--ps-baby-blue) !important;
  transition: var(--ps-transition);
  text-decoration: none !important;
}

.ps-btn-secondary:hover {
  background: var(--ps-baby-blue) !important;
  color: var(--ps-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(181, 213, 255, 0.4);
  border-color: var(--ps-baby-blue) !important;
}

.ps-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  color: var(--ps-white) !important;
  padding: 13px 32px;
  border-radius: var(--ps-radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  transition: var(--ps-transition);
  text-decoration: none !important;
}

.ps-btn-outline-white:hover {
  background: var(--ps-white) !important;
  color: var(--ps-text) !important;
  border-color: var(--ps-white) !important;
}

/* ============================================================
   NAVBAR — Integrated with Page Sections
   ============================================================ */
.ps-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding: 0.2rem 0 !important; /* Yükseklik daraltıldı */
  z-index: 1050 !important;
  transition:
    background 0.4s ease-in-out,
    box-shadow 0.4s ease-in-out,
    padding 0.35s ease !important;
}

/* Kaydırınca sadece görünüm (konum hep fixed — absolute→fixed sıçraması yok) */
.ps-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ── Brand ── */
.ps-brand {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  text-decoration: none !important;
}

.ps-brand img,
.ps-brand-logo-img {
  border-radius: 12px;
  /* Üst sınır footer ile uyumlu; geniş ekranda ayrıca .ps-navbar kuralları 200px genişlik */
  max-height: clamp(52px, 2.4vw + 38px, 64px) !important;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ps-brand:hover img {
  transform: scale(1.04) rotate(-2deg);
}

.ps-brand-text {
  font-family: "Baloo 2", sans-serif !important;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ps-text) !important;
}

.ps-brand-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--ps-pink-dark) !important;
  letter-spacing: 0.03em;
}

/* ── Nav Links ── */
.ps-nav-links .nav-link {
  color: var(--ps-text) !important;
  font-weight: 600 !important;
  /* Varsayılan: orta genişlik; 1400px+ aşağıda gevşetilir */
  font-size: 13.25px !important;
  padding: 7px 12px !important;
  border-radius: var(--ps-radius-pill) !important;
  transition: all 0.28s ease !important;
  position: relative;
  white-space: nowrap;
}

/* Üst menü: li.nav-item ile li.nav-item.dropdown aynı satırda — yalnızca doğrudan çocuk .nav-link (iç dropdown-item etkilenmez) */
.ps-navbar .ps-nav-links.navbar-nav {
  align-items: center;
}

.ps-navbar .ps-nav-links > .nav-item > .nav-link {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1.25 !important;
}

.ps-nav-links .nav-link:hover,
.ps-nav-links .nav-link:focus {
  color: var(--ps-pink-dark) !important;
  background: var(--ps-pink-light) !important;
}

.ps-nav-links .nav-link i {
  opacity: 0.6;
  margin-right: 2px;
}

/* ── Dropdown Toggle Chevron (first level; style.css global margin-top sıfırlanır) ── */
.ps-nav-links .dropdown > .nav-link.dropdown-toggle::after {
  content: "" !important;
  display: inline-block !important;
  width: 7px;
  height: 7px;
  border: none !important;
  border-right: 2px solid var(--ps-text-light) !important;
  border-bottom: 2px solid var(--ps-text-light) !important;
  transform: rotate(45deg) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 6px !important;
  flex-shrink: 0;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease !important;
}

.ps-nav-links .dropdown:hover > .nav-link.dropdown-toggle::after,
.ps-nav-links .dropdown.show > .nav-link.dropdown-toggle::after {
  border-color: var(--ps-pink-dark) !important;
  transform: rotate(-135deg) !important;
}

/* ── Dropdown Menu ── */
.ps-navbar .dropdown-menu {
  border: none !important;
  border-radius: 20px !important;
  padding: 10px !important;
  background: var(--ps-white) !important;
  box-shadow:
    0 12px 42px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(168, 230, 207, 0.18) !important;
  min-width: 230px;
  animation: psDropIn 0.25s ease;
}

@keyframes psDropIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ps-navbar .dropdown-menu .dropdown-item {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--ps-text) !important;
  padding: 10px 16px !important;
  border-radius: 12px !important;
  transition: all 0.2s ease !important;
}

.ps-navbar .dropdown-menu .dropdown-item:hover,
.ps-navbar .dropdown-menu .dropdown-item:focus {
  background: var(--ps-mint-light) !important;
  color: var(--ps-mint-dark) !important;
  transform: translateX(4px);
}

/* ── Nested (Multi-Level) Dropdown ── */
@media (min-width: 992px) {
  /* Top-level dropdown opens on hover */
  .ps-nav-links .dropdown:hover > .dropdown-menu {
    display: block;
  }

  /* sub-toggle arrow → right chevron */
  .ps-navbar .dropdown-menu .dropdown > .dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .ps-navbar .dropdown-menu .dropdown > .dropdown-toggle::after {
    content: "" !important;
    display: inline-block !important;
    width: 6px;
    height: 6px;
    border: none !important;
    border-right: 2px solid var(--ps-text-muted) !important;
    border-bottom: 2px solid var(--ps-text-muted) !important;
    transform: rotate(-45deg) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    flex-shrink: 0;
    transition: all 0.25s ease !important;
  }

  .ps-navbar .dropdown-menu .dropdown:hover > .dropdown-toggle::after {
    border-color: var(--ps-pink-dark) !important;
    transform: rotate(-45deg) translateX(3px) !important;
  }

  .ps-navbar .dropdown-menu .dropdown > .dropdown-menu {
    display: none;
    position: absolute !important;
    left: 100% !important;
    top: -8px !important;
    margin-left: 4px !important;
    min-width: 230px;
  }

  .ps-navbar .dropdown-menu .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .ps-navbar .dropdown-menu .dropdown:hover > .dropdown-toggle {
    background: var(--ps-pink-light) !important;
    color: var(--ps-pink-dark) !important;
  }
}

/* ── Mobile ── */
@media (max-width: 991.98px) {
  .ps-navbar .navbar > .container {
    position: relative;
  }

  /* Bootstrap collapse mobilde gizli — bottom sheet kullanıyoruz */
  .ps-navbar .navbar-collapse {
    display: none !important;
  }

  /* Logo + telefon + menü tek satırda; logo daralsın */
  .ps-navbar .navbar {
    height: 80px;
    padding: 0.2rem 0 !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.35rem;
  }

  .ps-navbar .navbar-brand.ps-brand {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: 0 !important;
    max-width: calc(100% - 6rem);
  }

  .ps-navbar .ps-brand img,
  .ps-navbar .ps-brand-logo-img {
    max-height: clamp(46px, 13vw, 62px) !important;
    width: auto;
    max-width: 100%;
  }

  .ps-navbar .d-flex.align-items-center.gap-2.d-lg-none {
    flex-shrink: 0;
    gap: 0.65rem !important;
  }
}

@media (max-width: 380px) {
  .ps-navbar .navbar-brand.ps-brand {
    max-width: calc(100% - 5.5rem);
  }

  .ps-navbar .ps-brand img,
  .ps-navbar .ps-brand-logo-img {
    max-height: 44px !important;
  }
}

/* ── Hamburger (mobil) ── */
.ps-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  border: 1.5px solid rgba(168, 230, 207, 0.65) !important;
  background: linear-gradient(155deg, #ffffff 0%, var(--ps-mint-light) 85%) !important;
  box-shadow:
    0 2px 10px rgba(107, 197, 160, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.ps-hamburger:hover {
  border-color: var(--ps-mint) !important;
  box-shadow:
    0 5px 18px rgba(107, 197, 160, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.ps-hamburger:focus-visible {
  outline: 2px solid var(--ps-mint-dark);
  outline-offset: 3px;
}

.ps-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ps-text) 0%, var(--ps-mint-dark) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    background 0.25s ease;
}

.ps-hamburger[aria-expanded="true"] {
  border-color: rgba(168, 230, 207, 0.85) !important;
  background: linear-gradient(160deg, var(--ps-mint-light) 0%, #ffffff 100%) !important;
}

.ps-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ps-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ps-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Şeffaf on-dark topbar: hamburger çizgileri beyaz olsun */
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-hamburger span {
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* ── Phone Badge ── */
.ps-nav-phone {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: var(--ps-text) !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  padding: 8px 16px;
  border-radius: var(--ps-radius-pill);
  border: 1.5px solid var(--ps-mint) !important;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ps-nav-phone span {
  white-space: nowrap;
}

.ps-nav-phone i {
  color: var(--ps-mint-dark);
  font-size: 13px;
}

.ps-nav-phone:hover {
  background: var(--ps-mint-light);
  border-color: var(--ps-mint-dark) !important;
  transform: translateY(-1px);
}

.ps-nav-phone-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  text-decoration: none !important;
  font-size: 0.95rem;
  color: var(--ps-pink-dark) !important;
  border: 1.5px solid rgba(232, 137, 158, 0.42) !important;
  background: linear-gradient(165deg, #ffffff 0%, var(--ps-pink-light) 100%) !important;
  box-shadow:
    0 2px 10px rgba(232, 137, 158, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.ps-nav-phone-sm:hover {
  border-color: rgba(232, 137, 158, 0.75) !important;
  box-shadow:
    0 6px 20px rgba(232, 137, 158, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.ps-nav-phone-sm:focus-visible {
  outline: 2px solid var(--ps-pink-dark);
  outline-offset: 3px;
}

/* ── CTA Button ── */
.ps-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--ps-mint-dark), var(--ps-mint)) !important;
  color: var(--ps-white) !important;
  padding: 10px 26px !important;
  border-radius: var(--ps-radius-pill) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  border: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.45);
  text-decoration: none !important;
  white-space: nowrap;
  position: relative;
}

.ps-nav-cta i {
  font-size: 12px;
}

.ps-nav-cta:hover {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 6px 22px rgba(168, 230, 207, 0.6) !important;
  color: var(--ps-white) !important;
}

/* ── Masaüstü (lg+): tek satır düzen, dar genişlikte sıkılaştırma, genişte rahat ── */
@media (min-width: 992px) {
  .ps-navbar .navbar-expand-lg > .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    column-gap: 0.4rem;
  }

  .ps-navbar .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    align-items: center;
  }

  .ps-navbar .navbar-expand-lg .ps-nav-links {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    flex-wrap: nowrap;
    margin-left: 0.35rem !important;
    margin-right: 0.35rem !important;
  }

  .ps-navbar .navbar-expand-lg .ps-nav-actions {
    flex: 0 0 auto;
    flex-shrink: 0;
    gap: 0.65rem !important;
  }

  .ps-navbar .navbar-expand-lg .navbar-brand.ps-brand {
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(200px, 36vw);
  }
}

@media (min-width: 1400px) {
  .ps-nav-links .nav-link {
    font-size: 14.5px !important;
    padding: 8px 16px !important;
  }

  .ps-navbar .navbar-expand-lg .navbar-brand.ps-brand {
    max-width: min(200px, 40vw);
  }

  .ps-navbar .ps-brand img,
  .ps-navbar .ps-brand-logo-img {
    max-width: 200px !important;
    max-height: 80px !important;
    width: auto !important;
    height: auto !important;
  }

  .ps-navbar .navbar-expand-lg .ps-nav-actions {
    gap: 0.85rem !important;
  }
}

/* 992–1399: link + CTA + telefon sıkı; telefon numarası tek satır (dar sütunda dikey kırılmayı önler) */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .ps-nav-links .nav-link {
    font-size: 12.75px !important;
    padding: 6px 9px !important;
  }

  .ps-nav-phone {
    font-size: 12px;
    padding: 6px 11px;
    gap: 6px;
  }

  .ps-nav-cta {
    padding: 8px 15px !important;
    font-size: 12.75px !important;
  }

  .ps-navbar .navbar-expand-lg .navbar-brand.ps-brand {
    max-width: min(200px, 36vw);
  }

  .ps-navbar .ps-brand img,
  .ps-navbar .ps-brand-logo-img {
    max-width: 200px !important;
    max-height: 80px !important;
    width: auto !important;
    height: auto !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE BOTTOM SHEET NAV
   ══════════════════════════════════════════════════════════════ */
.ps-mob-nav {
  display: none;
}

@media (max-width: 991.98px) {
  .ps-mob-nav {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
  }

  .ps-mob-nav.is-open {
    pointer-events: auto;
  }

  .ps-mob-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .ps-mob-nav.is-open .ps-mob-nav-backdrop {
    opacity: 1;
  }

  .ps-mob-nav-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding-bottom: env(safe-area-inset-bottom, 16px);
    max-height: 88dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.14);
    will-change: transform;
  }

  .ps-mob-nav.is-open .ps-mob-nav-sheet {
    transform: translateY(0);
  }

  .ps-mob-nav-drag-handle {
    display: flex;
    justify-content: center;
    padding: 12px 0 4px;
    cursor: grab;
  }

  .ps-mob-nav-drag-handle span {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.12);
  }

  .ps-mob-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .ps-mob-nav-logo {
    max-height: 48px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
  }

  .ps-mob-nav-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s ease;
  }

  .ps-mob-nav-close:hover {
    background: rgba(0, 0, 0, 0.1);
  }

  .ps-mob-nav-close span {
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 1px;
    background: var(--ps-text, #1e293b);
  }

  .ps-mob-nav-close span:nth-child(1) {
    transform: rotate(45deg);
  }
  .ps-mob-nav-close span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .ps-mob-nav-body {
    padding: 8px 12px;
  }

  .ps-mob-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .ps-mob-nav-links > li > a,
  .ps-mob-nav-links > li > button.ps-mob-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ps-text, #1e293b);
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition:
      background 0.2s ease,
      color 0.2s ease;
  }

  .ps-mob-nav-links > li > a:hover,
  .ps-mob-nav-links > li > button.ps-mob-dropdown-toggle:hover {
    background: var(--ps-mint-light, #e8f9f1);
    color: var(--ps-mint-dark, #2e8b6c);
  }

  .ps-mob-nav-links > li > button.ps-mob-dropdown-toggle {
    justify-content: space-between;
  }

  .ps-mob-nav-links > li > a i,
  .ps-mob-nav-links > li > button i:first-child {
    opacity: 0.55;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
  }

  .ps-mob-chevron {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--ps-text-light, #64748b);
    border-bottom: 2px solid var(--ps-text-light, #64748b);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }

  .ps-mob-dropdown-toggle[aria-expanded="true"] .ps-mob-chevron {
    transform: rotate(-135deg);
  }

  .ps-mob-sub {
    list-style: none;
    margin: 2px 0 4px;
    padding: 0 0 0 16px;
    display: none;
    flex-direction: column;
    gap: 1px;
  }

  .ps-mob-sub.is-open {
    display: flex;
  }

  .ps-mob-sub a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ps-text, #1e293b);
    text-decoration: none;
    transition: background 0.15s ease;
  }

  .ps-mob-sub a:hover {
    background: var(--ps-mint-light, #e8f9f1);
  }

  .ps-mob-sub a i {
    opacity: 0.65;
    width: 16px;
    text-align: center;
  }

  .ps-mob-nav-footer {
    display: flex;
    gap: 10px;
    padding: 14px 16px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .ps-mob-nav-tel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1.5px solid var(--ps-mint, #4caf8e);
    color: var(--ps-text, #1e293b);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .ps-mob-nav-tel:hover {
    background: var(--ps-mint-light, #e8f9f1);
    color: var(--ps-text, #1e293b);
  }

  .ps-mob-nav-tel i {
    color: var(--ps-mint-dark, #2e8b6c);
  }

  .ps-mob-nav-cta-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ps-mint-dark, #2e8b6c), var(--ps-mint, #4caf8e));
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(107, 197, 160, 0.38);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .ps-mob-nav-cta-link:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(107, 197, 160, 0.5);
  }
}

/* ── Menu Hint (tam genişlik alt bar — tıklanabilir) ── */
.ps-menu-hint {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1800;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.ps-menu-hint.is-visible {
  transform: translateY(0);
  pointer-events: auto;
  cursor: pointer;
}

.ps-menu-hint-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.15s ease;
}

.ps-menu-hint.is-visible .ps-menu-hint-pill:hover {
  background: rgba(15, 23, 42, 0.97);
}

.ps-menu-hint-pill .fa-chevron-up {
  animation: psHintChevronBounce 1.2s 0.4s ease infinite;
}

@keyframes psHintChevronBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* ── Slider dot pulse (slide değişince) ── */
@keyframes psDotPulse {
  0% {
    transform: scale(1.25);
    box-shadow: 0 0 0 0 rgba(245, 110, 40, 0.5);
  }
  60% {
    transform: scale(1.25);
    box-shadow: 0 0 0 7px rgba(245, 110, 40, 0);
  }
  100% {
    transform: scale(1.25);
    box-shadow: 0 0 0 0 rgba(245, 110, 40, 0);
  }
}

.ps-hero-fs-dots button.dot-pulse {
  animation: psDotPulse 0.5s ease-out;
}

/* ── Kozalak (Pinecone) on Apply Form ── */
.ps-kzl-wrap {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  pointer-events: none;
  overflow: visible;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.22));
  animation: kozalakSway 3s ease-in-out infinite alternate;
  transform-origin: 32px 6px;
}

@keyframes kozalakSway {
  0% {
    transform: rotate(-7deg);
  }

  100% {
    transform: rotate(7deg);
  }
}

/* ── Animated butterfly on CTA button (footer logo ile aynı animasyonlar) ── */
.ps-nav-cta-bf {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  overflow: visible;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
  transform: rotate(-18deg);
  pointer-events: none;
  animation: logoBfFloat 3.5s ease-in-out infinite;
}

/* ============================================================
   HERO SECTION — Warm Pastel + Big Doodle Animations
   ============================================================ */
#hero.ps-hero {
  position: relative;
  min-height: auto !important;
  height: auto !important;
  padding: 2rem 1rem 0 !important;
  margin-top: 0 !important;
  background: var(--ps-bg);
  overflow: hidden;
}

/* ── Hero Big Doodles ── */
.ps-hero-doodle {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* ☀ Sun — rotating gradient circle with rays */
.ps-hd-sun {
  width: 90px;
  height: 90px;
  top: 60px;
  right: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ps-soft-yellow) 50%, rgba(245, 216, 74, 0.3) 70%, transparent 75%);
  box-shadow:
    0 0 30px rgba(245, 216, 74, 0.3),
    0 0 60px rgba(245, 216, 74, 0.15);
  animation: hdSunPulse 4s ease-in-out infinite;
  opacity: 0.5;
}

.ps-hd-sun::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 3px dashed rgba(245, 216, 74, 0.35);
  animation: doodleSpin 20s linear infinite;
}

/* ☁ Clouds — floating across */
.ps-hd-cloud {
  width: 80px;
  height: 30px;
  background: rgba(181, 213, 255, 0.35);
  border-radius: 30px;
  opacity: 0.45;
}

.ps-hd-cloud::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  background: rgba(181, 213, 255, 0.35);
  border-radius: 50%;
  top: -20px;
  left: 14px;
}

.ps-hd-cloud::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background: rgba(181, 213, 255, 0.35);
  border-radius: 50%;
  top: -10px;
  right: 8px;
}

.ps-hd-cloud-1 {
  top: 30%;
  left: -20px;
  animation: hdCloudDrift 18s ease-in-out infinite;
}

.ps-hd-cloud-2 {
  top: 15%;
  right: 15%;
  left: auto;
  width: 60px;
  height: 22px;
  animation: hdCloudDrift 22s ease-in-out infinite reverse;
  animation-delay: 3s;
}

/* ★ Stars — spinning + pulsing */
.ps-hd-star {
  opacity: 0.3;
}

.ps-hd-star::before,
.ps-hd-star::after {
  content: "";
  position: absolute;
  background: var(--ps-pink-dark);
  border-radius: 4px;
}

.ps-hd-star-1 {
  width: 35px;
  height: 35px;
  top: 20%;
  left: 6%;
  animation:
    doodleSpin 10s linear infinite,
    doodlePulse 3s ease-in-out infinite;
}

.ps-hd-star-1::before {
  width: 10px;
  height: 35px;
  left: 12px;
  top: 0;
}

.ps-hd-star-1::after {
  width: 35px;
  height: 10px;
  top: 12px;
  left: 0;
}

.ps-hd-star-2 {
  width: 22px;
  height: 22px;
  bottom: 25%;
  right: 5%;
  animation:
    doodleSpin 14s linear infinite reverse,
    doodlePulse 4s ease-in-out infinite 1s;
}

.ps-hd-star-2::before {
  width: 7px;
  height: 22px;
  left: 8px;
  top: 0;
  background: var(--ps-soft-yellow-dark);
}

.ps-hd-star-2::after {
  width: 22px;
  height: 7px;
  top: 8px;
  left: 0;
  background: var(--ps-soft-yellow-dark);
}

.ps-hd-star-3 {
  width: 18px;
  height: 18px;
  top: 55%;
  left: 3%;
  animation:
    doodleSpin 8s linear infinite,
    doodlePulse 5s ease-in-out infinite 2s;
}

.ps-hd-star-3::before {
  width: 5px;
  height: 18px;
  left: 7px;
  top: 0;
  background: var(--ps-mint-dark);
}

.ps-hd-star-3::after {
  width: 18px;
  height: 5px;
  top: 7px;
  left: 0;
  background: var(--ps-mint-dark);
}

/* ♥ Hearts — beating */
.ps-hd-heart {
  opacity: 0.25;
}

.ps-hd-heart::before,
.ps-hd-heart::after {
  content: "";
  position: absolute;
  background: var(--ps-pink);
  border-radius: 50% 50% 0 0;
}

.ps-hd-heart-1 {
  width: 36px;
  height: 32px;
  bottom: 15%;
  left: 10%;
  animation: hdHeartBeat 3s ease-in-out infinite;
}

.ps-hd-heart-1::before {
  width: 20px;
  height: 30px;
  left: 0;
  transform: rotate(-45deg);
  transform-origin: bottom right;
}

.ps-hd-heart-1::after {
  width: 20px;
  height: 30px;
  left: 14px;
  transform: rotate(45deg);
  transform-origin: bottom left;
}

.ps-hd-heart-2 {
  width: 20px;
  height: 18px;
  top: 40%;
  right: 3%;
  animation: hdHeartBeat 4s ease-in-out infinite 1.5s;
  opacity: 0.2;
}

.ps-hd-heart-2::before {
  width: 12px;
  height: 18px;
  left: 0;
  transform: rotate(-45deg);
  transform-origin: bottom right;
  background: var(--ps-peach-dark);
}

.ps-hd-heart-2::after {
  width: 12px;
  height: 18px;
  left: 7px;
  transform: rotate(45deg);
  transform-origin: bottom left;
  background: var(--ps-peach-dark);
}

/* 🎈 Balloons — floating up slowly */
.ps-hd-balloon {
  width: 28px;
  height: 34px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.3;
}

.ps-hd-balloon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
}

.ps-hd-balloon-1 {
  background: var(--ps-pink);
  bottom: 30%;
  right: 12%;
  animation: hdBalloonFloat 7s ease-in-out infinite;
}

.ps-hd-balloon-2 {
  background: var(--ps-mint);
  bottom: 20%;
  left: 15%;
  width: 22px;
  height: 28px;
  animation: hdBalloonFloat 9s ease-in-out infinite 2s;
}

/* ⭕ Circles — pulsing outlines */
.ps-hd-circle {
  border-radius: 50%;
  border-style: solid;
}

.ps-hd-circle-1 {
  width: 60px;
  height: 60px;
  border-width: 4px;
  border-color: rgba(168, 230, 207, 0.3);
  top: 10%;
  left: 30%;
  animation: doodlePulse 5s ease-in-out infinite;
}

.ps-hd-circle-2 {
  width: 35px;
  height: 35px;
  border-width: 3px;
  border-color: rgba(213, 198, 255, 0.3);
  bottom: 20%;
  right: 25%;
  animation: doodlePulse 4s ease-in-out infinite 2s;
}

/* ● Dots grid */
.ps-hd-dots {
  width: 70px;
  height: 70px;
  bottom: 10%;
  right: 30%;
  background-image: radial-gradient(var(--ps-lavender) 4px, transparent 4px);
  background-size: 18px 18px;
  opacity: 0.15;
  animation: doodleFloat 6s ease-in-out infinite;
}

/* ⚡ Zigzag */
.ps-hd-zigzag {
  width: 80px;
  height: 25px;
  bottom: 35%;
  left: 4%;
  background: repeating-linear-gradient(90deg, var(--ps-mint-dark) 0px, var(--ps-mint-dark) 10px, transparent 10px, transparent 20px);
  clip-path: polygon(0% 100%, 10% 0%, 20% 100%, 30% 0%, 40% 100%, 50% 0%, 60% 100%, 70% 0%, 80% 100%, 90% 0%, 100% 100%);
  opacity: 0.18;
  animation: doodleFloat 7s ease-in-out infinite 1s;
}

/* ABC text */
.ps-hd-abc {
  top: 8%;
  left: 48%;
  font-family: "Baloo 2", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ps-peach-dark);
  opacity: 0.15;
  animation: hdAbcWobble 5s ease-in-out infinite;
}

.ps-hd-abc::before {
  content: "ABC";
}

/* 🌈 Rainbow arc — minimalist single-tone */
.ps-hd-rainbow {
  width: 80px;
  height: 40px;
  bottom: 8%;
  left: 38%;
  border-radius: 80px 80px 0 0;
  border: 3px solid var(--ps-mint);
  border-bottom: none;
  opacity: 0.18;
  animation: doodleFloat 7s ease-in-out infinite 1s;
}

/* ── Hero Doodle Keyframes ── */
@keyframes hdSunPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.65;
  }
}

@keyframes hdCloudDrift {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(60px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes hdHeartBeat {
  0%,
  100% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.2);
  }

  30% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.15);
  }

  60% {
    transform: scale(1);
  }
}

@keyframes hdBalloonFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(3deg);
  }

  50% {
    transform: translateY(-35px) rotate(-2deg);
  }

  75% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@keyframes hdAbcWobble {
  0%,
  100% {
    transform: rotate(-5deg) scale(1);
  }

  25% {
    transform: rotate(3deg) scale(1.05);
  }

  50% {
    transform: rotate(-3deg) scale(1);
  }

  75% {
    transform: rotate(5deg) scale(1.05);
  }
}

/* ── Hero Content ── */
.ps-hero .ps-hero-content {
  position: relative;
  z-index: 5;
  padding-top: 80px;
}

.ps-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 20px;
  margin-bottom: 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  font-weight: 700;
  color: #fb7185;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ps-hero-highlight {
  color: #fb7185;
  position: relative;
  display: inline-block;
  padding: 0 2px;
}

.ps-hero-highlight::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #fef08a; /* Pale yellow underline from reference */
  z-index: -1;
  border-radius: 2px;
  opacity: 0.8;
}

.ps-hero h1 {
  font-size: 3.2rem !important;
  line-height: 1.15 !important;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.ps-hero h1 span.ps-highlight {
  position: relative;
  color: var(--ps-pink-dark) !important;
  display: inline-block;
}

.ps-hero h1 span.ps-highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--ps-soft-yellow);
  opacity: 0.6;
  border-radius: 5px;
  z-index: -1;
}

.ps-hero-text {
  font-size: 1.1rem;
  color: var(--ps-text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 500px;
  animation: fadeInUp 1s ease;
}

.ps-hero-image {
  position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.ps-hero-image img {
  border-radius: var(--ps-radius-lg);
  max-height: 460px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.08));
}

/* ── Hero 3D Polaroid Gallery ── */
.ps-hero-gallery {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  height: 480px;
  margin-top: 100px;
  perspective: 900px;
  transform-style: preserve-3d;
}

/* Polaroid Card Base */
.ps-polaroid {
  position: absolute;
  background: #fff;
  padding: 10px 10px 40px;
  border-radius: 6px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.ps-polaroid-img {
  overflow: hidden;
  border-radius: 4px;
  line-height: 0;
}

.ps-polaroid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-polaroid-caption {
  text-align: center;
  font-family: "Baloo 2", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ps-text-light);
  margin-top: 8px;
  letter-spacing: 0.3px;
}

/* Washi Tape on top */
.ps-polaroid-tape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 60px;
  height: 22px;
  border-radius: 2px;
  opacity: 0.75;
  z-index: 5;
}

/* Card 1 — Main large, front center */
.ps-pol-1 {
  width: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg) translateZ(50px);
  z-index: 4;
  animation: polFloat1 5s ease-in-out infinite;
}

.ps-pol-1 .ps-polaroid-img {
  height: 240px;
}

.ps-pol-1 .ps-polaroid-tape {
  background: rgba(168, 230, 207, 0.7);
  width: 70px;
}

.ps-pol-1 .ps-polaroid-caption {
  color: var(--ps-mint-dark);
}

/* Card 2 — Left, tilted */
.ps-pol-2 {
  width: 170px;
  top: 8%;
  left: -5%;
  transform: rotate(-12deg) translateZ(20px);
  z-index: 3;
  animation: polFloat2 6s ease-in-out infinite;
}

.ps-pol-2 .ps-polaroid-img {
  height: 160px;
}

.ps-pol-2 .ps-polaroid-tape {
  background: rgba(255, 183, 197, 0.7);
  transform: translateX(-50%) rotate(5deg);
}

.ps-pol-2 .ps-polaroid-caption {
  color: var(--ps-pink-dark);
}

/* Card 3 — Right bottom */
.ps-pol-3 {
  width: 160px;
  bottom: 2%;
  right: 0;
  transform: rotate(8deg) translateZ(30px);
  z-index: 3;
  animation: polFloat3 5.5s ease-in-out infinite;
}

.ps-pol-3 .ps-polaroid-img {
  height: 150px;
}

.ps-pol-3 .ps-polaroid-tape {
  background: rgba(181, 213, 255, 0.7);
  transform: translateX(-50%) rotate(-3deg);
}

.ps-pol-3 .ps-polaroid-caption {
  color: var(--ps-baby-blue-dark);
}

/* Card 4 — Top right, small */
.ps-pol-4 {
  width: 140px;
  top: -2%;
  right: 5%;
  transform: rotate(14deg) translateZ(10px);
  z-index: 2;
  animation: polFloat4 7s ease-in-out infinite;
}

.ps-pol-4 .ps-polaroid-img {
  height: 120px;
}

.ps-pol-4 .ps-polaroid-tape {
  background: rgba(245, 216, 74, 0.65);
  transform: translateX(-50%) rotate(4deg);
}

.ps-pol-4 .ps-polaroid-caption {
  color: var(--ps-soft-yellow-dark);
}

/* Hover — cards pop up */
.ps-polaroid:hover {
  z-index: 10 !important;
  transform: rotate(0deg) translateZ(80px) scale(1.08) !important;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.18),
    0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Polaroid Float Animations */
@keyframes polFloat1 {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-3deg) translateZ(50px);
  }

  50% {
    transform: translate(-50%, calc(-50% - 3px)) rotate(-2.5deg) translateZ(52px);
  }
}

@keyframes polFloat2 {
  0%,
  100% {
    transform: rotate(-12deg) translateZ(20px);
  }

  50% {
    transform: rotate(-11.5deg) translateZ(22px) translateY(-2px);
  }
}

@keyframes polFloat3 {
  0%,
  100% {
    transform: rotate(8deg) translateZ(30px);
  }

  50% {
    transform: rotate(7.5deg) translateZ(32px) translateY(-2px);
  }
}

@keyframes polFloat4 {
  0%,
  100% {
    transform: rotate(14deg) translateZ(10px);
  }

  50% {
    transform: rotate(13.5deg) translateZ(12px) translateY(-3px);
  }
}

.ps-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  animation: fadeInUp 1.2s ease;
}

.ps-hero-stat-number {
  font-family: "Baloo 2", sans-serif !important;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.ps-hero-stat:nth-child(1) .ps-hero-stat-number {
  color: var(--ps-mint-dark) !important;
}

.ps-hero-stat:nth-child(2) .ps-hero-stat-number {
  color: var(--ps-pink-dark) !important;
}

.ps-hero-stat:nth-child(3) .ps-hero-stat-number {
  color: var(--ps-baby-blue-dark) !important;
}

.ps-hero-stat-label {
  font-size: 0.85rem;
  color: var(--ps-text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* ── Hero → About Wave ── */
.ps-wave-hero-about {
  line-height: 0;
  margin-top: 2rem;
  color: var(--ps-white);
  position: relative;
  z-index: 5;
}

.ps-wave-hero-about svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about.ps-about {
  background: var(--ps-white) !important;
  color: var(--ps-text) !important;
  position: relative;
  overflow: hidden;
}

.ps-about h1,
.ps-about h2 {
  color: var(--ps-text) !important;
}

.ps-about p {
  color: var(--ps-text-light) !important;
  line-height: 1.8;
}

.ps-about-image-wrapper {
  position: relative;
  z-index: 2;
  max-width: 460px;
  padding: 15px;
}

/* Blob arka plan — hakkımızda hero ile aynı */
.ps-about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--ps-mint-light) 0%, var(--ps-baby-blue-light) 50%, var(--ps-pink-light) 100%);
  z-index: -1;
  animation: heroBlobFloat 8s ease-in-out infinite;
  opacity: 0.8;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dekoratif yıldızlar */
.ps-about-image-wrapper::after {
  content: "✦ ✦ ✦";
  position: absolute;
  top: -15px;
  right: 10px;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--ps-soft-yellow-dark);
  z-index: 3;
  animation: heroDotsBounce 3s ease-in-out infinite;
}

.ps-about-image-wrapper:hover::before {
  animation-play-state: paused;
  transform: scale(1.03);
}

.ps-about-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 50% 40% 45% 55% / 45% 55% 40% 50%;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  border: 5px solid var(--ps-white);
}

.ps-about-image-wrapper:hover img {
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
  transform: translateY(-5px) scale(1.02);
  border-radius: 45% 55% 50% 40% / 50% 40% 55% 45%;
}

.ps-about-badge {
  position: absolute;
  bottom: 30px;
  right: -10px;
  z-index: 3;
  background: linear-gradient(135deg, var(--ps-pink), var(--ps-peach-dark));
  color: var(--ps-white);
  padding: 18px 28px;
  border-radius: var(--ps-radius);
  text-align: center;
  box-shadow: var(--ps-shadow);
  animation: floatSlow 3s ease-in-out infinite;
}

.ps-badge-number {
  font-family: "Baloo 2", sans-serif !important;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ps-white) !important;
}

.ps-badge-text {
  font-size: 0.8rem;
  opacity: 0.9;
}

.ps-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ps-about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--ps-mint-light);
  border-radius: var(--ps-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--ps-transition-fast);
}

.ps-about-feature:hover {
  transform: translateX(5px);
  background: var(--ps-mint);
}

.ps-about-feature i {
  color: var(--ps-mint-dark);
  font-size: 1.2rem;
}

/* ============================================================
   FEATURES SECTION — V2 Fun Cards + Doodle Animations
   ============================================================ */
#feature.ps-features {
  background: var(--ps-bg) !important;
  position: relative;
  overflow: hidden;
}

.ps-doodle-plus {
  width: 30px;
  height: 30px;
  animation: doodleSpin 12s linear infinite reverse;
}

.ps-doodle-plus::before,
.ps-doodle-plus::after {
  content: "";
  position: absolute;
  background: var(--ps-soft-yellow-dark, #c9a800);
  border-radius: 3px;
}

.ps-doodle-plus::before {
  width: 8px;
  height: 30px;
  left: 11px;
  top: 0;
}

.ps-doodle-plus::after {
  width: 30px;
  height: 8px;
  top: 11px;
  left: 0;
}

@keyframes doodleSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes doodlePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.25;
  }
}

@keyframes doodleFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.12;
  }

  50% {
    transform: translateY(-15px);
    opacity: 0.22;
  }
}

/* ── Feature Card V2 ── */
.ps-feature-card-v2 {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ps-shadow-soft);
  transition: var(--ps-transition);
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ps-feature-card-v2:hover {
  transform: translateY(-12px);
  box-shadow: var(--ps-shadow-hover);
}

/* Decorative blob in corner */
.ps-fc-blob {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.12;
  transition: var(--ps-transition);
}

.ps-feature-card-v2:hover .ps-fc-blob {
  transform: scale(1.6);
  opacity: 0.18;
}

/* Number tag */
.ps-fc-number {
  font-family: "Baloo 2", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.08;
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 1;
  transition: var(--ps-transition);
}

.ps-feature-card-v2:hover .ps-fc-number {
  opacity: 0.15;
  transform: scale(1.1);
}

/* Icon */
.ps-fc-icon {
  width: 65px;
  height: 65px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  transition: var(--ps-transition);
}

.ps-feature-card-v2:hover .ps-fc-icon {
  transform: scale(1.12) rotate(-5deg);
  border-radius: 50%;
}

/* Arrow button */
.ps-fc-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: auto;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--ps-transition);
  align-self: flex-end;
}

.ps-feature-card-v2:hover .ps-fc-arrow {
  opacity: 1;
  transform: translateX(0);
}

.ps-feature-card-v2 h5 {
  font-size: 1.1rem !important;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 2;
}

.ps-feature-card-v2 p {
  font-size: 0.88rem;
  color: var(--ps-text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

/* ── Color Variants ── */
/* Mint */
.ps-fc-mint {
  border-bottom: 4px solid var(--ps-mint-dark);
}

.ps-fc-mint:hover {
  border-color: var(--ps-mint-dark);
}

.ps-fc-mint .ps-fc-blob {
  background: var(--ps-mint);
}

.ps-fc-mint .ps-fc-icon {
  background: var(--ps-mint-light);
  color: var(--ps-mint-dark);
}

.ps-fc-mint .ps-fc-number {
  color: var(--ps-mint-dark);
}

.ps-fc-mint .ps-fc-arrow {
  background: var(--ps-mint-light);
  color: var(--ps-mint-dark);
}

/* Blue */
.ps-fc-blue {
  border-bottom: 4px solid var(--ps-baby-blue-dark);
}

.ps-fc-blue:hover {
  border-color: var(--ps-baby-blue-dark);
}

.ps-fc-blue .ps-fc-blob {
  background: var(--ps-baby-blue);
}

.ps-fc-blue .ps-fc-icon {
  background: var(--ps-baby-blue-light);
  color: var(--ps-baby-blue-dark);
}

.ps-fc-blue .ps-fc-number {
  color: var(--ps-baby-blue-dark);
}

.ps-fc-blue .ps-fc-arrow {
  background: var(--ps-baby-blue-light);
  color: var(--ps-baby-blue-dark);
}

/* Yellow */
.ps-fc-yellow {
  border-bottom: 4px solid #c9a800;
}

.ps-fc-yellow:hover {
  border-color: #c9a800;
}

.ps-fc-yellow .ps-fc-blob {
  background: var(--ps-soft-yellow);
}

.ps-fc-yellow .ps-fc-icon {
  background: var(--ps-soft-yellow);
  color: #c9a800;
}

.ps-fc-yellow .ps-fc-number {
  color: #c9a800;
}

.ps-fc-yellow .ps-fc-arrow {
  background: var(--ps-soft-yellow);
  color: #c9a800;
}

/* Pink */
.ps-fc-pink {
  border-bottom: 4px solid var(--ps-pink-dark);
}

.ps-fc-pink:hover {
  border-color: var(--ps-pink-dark);
}

.ps-fc-pink .ps-fc-blob {
  background: var(--ps-pink);
}

.ps-fc-pink .ps-fc-icon {
  background: var(--ps-pink-light);
  color: var(--ps-pink-dark);
}

.ps-fc-pink .ps-fc-number {
  color: var(--ps-pink-dark);
}

.ps-fc-pink .ps-fc-arrow {
  background: var(--ps-pink-light);
  color: var(--ps-pink-dark);
}

/* Responsive */
@media (max-width: 991px) {
  .ps-doodle {
    display: none;
  }

  .ps-feature-card-v2 {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .ps-feature-card-v2 {
    padding: 1.5rem 1.2rem 1.2rem;
  }

  .ps-fc-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
}

/* ============================================================
   PROGRAMS / SERVICES SECTION — V2 Colorful Header Cards
   ============================================================ */
section.ps-programs {
  background: var(--ps-white) !important;
  position: relative;
}

.ps-prog-v2 {
  background: var(--ps-white);
  border-radius: var(--ps-radius-lg);
  overflow: visible;
  /* Changed from hidden so SVG corner animations pop out */
  box-shadow: var(--ps-shadow-soft);
  transition: var(--ps-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.ps-prog-v2:hover {
  transform: translateY(-10px);
  box-shadow: var(--ps-shadow-hover);
}

/* ── Image-Based Header ── */
.ps-prog-header {
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--ps-radius-lg) var(--ps-radius-lg) 0 0;
  /* Keep top rounded */
}

/* ── Program Card Image ── */
.ps-prog-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.ps-prog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ps-prog-v2:hover .ps-prog-img {
  transform: scale(1.06);
}

/* ── Card Body ── */
.ps-prog-body {
  padding: 1rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.ps-prog-v2 h5 {
  font-size: 1.1rem !important;
  margin-bottom: 0.5rem;
}

.ps-prog-v2 p {
  font-size: 0.88rem;
  color: var(--ps-text-light);
  line-height: 1.7;
  flex: 1;
}

/* ── Pill CTA Button ── */
.ps-prog-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.45rem 1.2rem;
  border-radius: var(--ps-radius-pill);
  transition: var(--ps-transition);
  margin-top: auto;
  align-self: center;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.06);
  color: var(--ps-text) !important;
}

.ps-prog-cta:hover {
  gap: 12px;
  background: rgba(0, 0, 0, 0.1);
  color: var(--ps-text) !important;
}

/* ── Responsive ── */
@media (max-width: 576px) {
  .ps-prog-header {
    padding: 1.8rem 1.2rem 2.4rem;
  }

  .ps-prog-body {
    padding: 0.8rem 1.2rem 1.2rem;
  }

  .ps-prog-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* ============================================================
   NEWSLETTER / CTA SECTION
   ============================================================ */
section.ps-newsletter {
  background: linear-gradient(135deg, var(--ps-baby-blue-dark) 0%, #6c8eef 50%, var(--ps-lavender) 100%) !important;
  margin: 0 !important;
  padding: 4rem 0 !important;
  position: relative;
  overflow: hidden;
}

section.ps-newsletter::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

section.ps-newsletter::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.ps-newsletter h2 {
  color: var(--ps-white) !important;
}

.ps-newsletter p {
  color: rgba(255, 255, 255, 0.85) !important;
}

.ps-newsletter .form-control {
  border-radius: var(--ps-radius-pill) !important;
  padding: 14px 24px !important;
  border: none !important;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   GALLERY SECTION — V2 Fun Cards + Kid Doodle Animations
   ============================================================ */
section.ps-gallery {
  background: var(--ps-bg) !important;
  position: relative;
  overflow: hidden;
}

/* ── Kid-Themed Doodles ── */
.ps-gdoodle {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
}

/* Crayon — tilted rectangle */
.ps-gdoodle-crayon {
  width: 10px;
  height: 55px;
  background: var(--ps-pink-dark);
  border-radius: 3px 3px 1px 1px;
  transform: rotate(-25deg);
  animation: gdCrayonDraw 5s ease-in-out infinite;
}

.ps-gdoodle-crayon::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 1px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 12px solid var(--ps-pink-dark);
}

/* Heart */
.ps-gdoodle-heart {
  width: 28px;
  height: 26px;
  animation: gdHeartBeat 3s ease-in-out infinite;
}

.ps-gdoodle-heart::before,
.ps-gdoodle-heart::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 24px;
  background: var(--ps-pink);
  border-radius: 16px 16px 0 0;
}

.ps-gdoodle-heart::before {
  left: 0;
  transform: rotate(-45deg);
  transform-origin: bottom right;
}

.ps-gdoodle-heart::after {
  left: 10px;
  transform: rotate(45deg);
  transform-origin: bottom left;
}

/* Cloud — triple circles */
.ps-gdoodle-cloud {
  width: 60px;
  height: 25px;
  background: var(--ps-baby-blue);
  border-radius: 25px;
  position: absolute;
  animation: gdCloudDrift 8s ease-in-out infinite;
}

.ps-gdoodle-cloud::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--ps-baby-blue);
  border-radius: 50%;
  top: -14px;
  left: 10px;
}

.ps-gdoodle-cloud::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--ps-baby-blue);
  border-radius: 50%;
  top: -8px;
  right: 8px;
}

/* Balloon — circle + string */
.ps-gdoodle-balloon {
  width: 28px;
  height: 34px;
  background: var(--ps-lavender);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: gdBalloonFloat 6s ease-in-out infinite;
}

.ps-gdoodle-balloon::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 12px;
  width: 2px;
  height: 22px;
  background: var(--ps-lavender);
  border-radius: 1px;
  transform: rotate(5deg);
}

/* Spiral — concentric arcs */
.ps-gdoodle-spiral {
  width: 35px;
  height: 35px;
  border: 3px solid transparent;
  border-top-color: var(--ps-mint-dark);
  border-right-color: var(--ps-mint-dark);
  border-radius: 50%;
  animation: gdSpiralSpin 10s linear infinite;
}

.ps-gdoodle-spiral::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid transparent;
  border-bottom-color: var(--ps-mint-dark);
  border-left-color: var(--ps-mint-dark);
  border-radius: 50%;
  top: 5px;
  left: 5px;
}

/* Paper airplane — triangle */
.ps-gdoodle-plane {
  width: 0;
  height: 0;
  border-left: 22px solid var(--ps-soft-yellow-dark);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  animation: gdPlaneFly 9s ease-in-out infinite;
}

.ps-gdoodle-plane::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 14px solid var(--ps-soft-yellow-dark);
  border-top: 5px solid transparent;
  border-bottom: 0px solid transparent;
  top: -2px;
  left: -20px;
  opacity: 0.5;
}

@keyframes gdCrayonDraw {
  0%,
  100% {
    transform: rotate(-25deg) translateY(0);
  }

  50% {
    transform: rotate(-18deg) translateY(-12px);
  }
}

@keyframes gdHeartBeat {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.12;
  }

  15% {
    transform: scale(1.25);
    opacity: 0.22;
  }

  30% {
    transform: scale(1);
    opacity: 0.12;
  }

  45% {
    transform: scale(1.18);
    opacity: 0.18;
  }
}

@keyframes gdCloudDrift {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.1;
  }

  50% {
    transform: translateX(25px);
    opacity: 0.18;
  }
}

@keyframes gdBalloonFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.12;
  }

  33% {
    transform: translateY(-18px) rotate(4deg);
    opacity: 0.2;
  }

  66% {
    transform: translateY(-8px) rotate(-3deg);
    opacity: 0.15;
  }
}

@keyframes gdSpiralSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes gdPlaneFly {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }

  25% {
    transform: translate(-15px, -20px) rotate(-10deg);
    opacity: 0.18;
  }

  50% {
    transform: translate(10px, -30px) rotate(5deg);
    opacity: 0.22;
  }

  75% {
    transform: translate(-5px, -10px) rotate(-3deg);
    opacity: 0.14;
  }
}

/* ── Gallery Card V2 ── */
.portfolio-container .portfolio-item {
  width: 33.333%;
  padding: 0.75rem;
}

@media (max-width: 991px) {
  .portfolio-container .portfolio-item {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .portfolio-container .portfolio-item {
    width: 100%;
  }
}

.ps-gallery-card {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  overflow: hidden;
  box-shadow: var(--ps-shadow-soft);
  transition: var(--ps-transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  will-change: transform;
  transform: translateZ(0);
}

.ps-gallery-card:hover {
  transform: translateY(-10px) rotate(-0.5deg) translateZ(0);
  box-shadow: var(--ps-shadow-hover);
}

/* Image wrapper */
.ps-gallery-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--ps-radius) var(--ps-radius) 0 0;
}

.ps-gallery-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: var(--ps-transition);
}

.ps-gallery-card:hover .ps-gallery-img-wrap img {
  transform: scale(1.08);
}

/* Hover overlay */
.ps-gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(107, 197, 160, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--ps-transition);
}

.ps-gallery-card:hover .ps-gallery-hover {
  opacity: 1;
}

/* Zoom button */
.ps-gallery-zoom {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ps-mint-dark);
  transform: translateY(20px) scale(0.7);
  transition: var(--ps-transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.ps-gallery-card:hover .ps-gallery-zoom {
  transform: translateY(0) scale(1);
}

.ps-gallery-zoom:hover {
  background: var(--ps-white);
  color: var(--ps-pink-dark);
  transform: translateY(0) scale(1.12) !important;
}

/* Category tag on image */
.ps-gallery-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 14px;
  border-radius: var(--ps-radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  z-index: 3;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.ps-gtag-mint {
  background: rgba(168, 230, 207, 0.85);
  color: var(--ps-mint-dark);
}

.ps-gtag-pink {
  background: rgba(255, 183, 197, 0.85);
  color: var(--ps-pink-dark);
}

.ps-gtag-blue {
  background: rgba(181, 213, 255, 0.85);
  color: var(--ps-baby-blue-dark);
}

/* Card info area */
.ps-gallery-info {
  padding: 1rem 1.3rem 1.2rem;
}

.ps-gallery-info h5 {
  font-size: 1rem !important;
  margin-bottom: 0.2rem;
}

.ps-gallery-info p {
  font-size: 0.82rem;
  color: var(--ps-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Redesigned filter pills ── */
.ps-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin-bottom: 2.5rem !important;
  list-style: none;
}

#portfolio-flters.ps-gallery-filters li {
  color: var(--ps-text-light) !important;
  padding: 10px 20px;
  border-radius: var(--ps-radius-pill);
  border: 2px solid var(--ps-pink-light);
  border-bottom: 2px solid var(--ps-pink-light);
  transition: var(--ps-transition-fast);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.88rem;
  background: var(--ps-white);
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

#portfolio-flters.ps-gallery-filters li i {
  margin-right: 4px;
  font-size: 0.8rem;
}

#portfolio-flters.ps-gallery-filters li:hover,
#portfolio-flters.ps-gallery-filters li.active {
  color: var(--ps-white) !important;
  background: linear-gradient(135deg, var(--ps-pink), var(--ps-pink-dark));
  border-color: var(--ps-pink-dark) !important;
  border-bottom-color: var(--ps-pink-dark) !important;
  box-shadow: 0 4px 15px rgba(232, 137, 158, 0.35);
}

/* Anasayfa galeri — Bootstrap pill sekmeler (Tümü + albümler) */
.ps-home-gallery-tabbar {
  padding: 0;
  margin-bottom: 2rem !important;
  list-style: none;
}

.ps-home-gallery-tabbar .nav-link {
  color: var(--ps-text-light) !important;
  padding: 10px 18px;
  border-radius: var(--ps-radius-pill);
  border: 2px solid var(--ps-pink-light);
  font-weight: 600;
  font-size: 0.88rem;
  background: var(--ps-white);
  transition: var(--ps-transition-fast);
}

.ps-home-gallery-tabbar .nav-link:hover {
  color: var(--ps-pink-dark) !important;
  border-color: var(--ps-pink);
}

.ps-home-gallery-tabbar .nav-link.active {
  color: var(--ps-white) !important;
  background: linear-gradient(135deg, var(--ps-pink), var(--ps-pink-dark));
  border-color: var(--ps-pink-dark) !important;
  box-shadow: 0 4px 15px rgba(232, 137, 158, 0.35);
}

/* Anasayfa galeri — tam galeri CTA (temaya uygun düz hap, baby-blue) */
.ps-gallery-full-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--ps-radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  color: var(--ps-white) !important;
  background: var(--ps-baby-blue-dark) !important;
  border: none !important;
  text-decoration: none !important;
  transition: var(--ps-transition);
  box-shadow: none;
}

.ps-gallery-full-btn:hover,
.ps-gallery-full-btn:focus-visible {
  color: var(--ps-white) !important;
  /* baby-blue-dark üzerine hafif koyulaştırma */
  background: #5c9ae8 !important;
  text-decoration: none !important;
}

.ps-gallery-full-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 175, 239, 0.45);
}

.ps-gallery-full-btn:focus-visible {
  outline: 3px solid var(--ps-baby-blue);
  outline-offset: 3px;
}

.ps-gallery-full-btn i {
  font-size: 0.9em;
  opacity: 0.95;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .ps-gdoodle {
    display: none;
  }
}

@media (max-width: 576px) {
  .ps-gallery-filters {
    gap: 6px;
  }

  .ps-gallery-filters li {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .ps-gallery-info {
    padding: 0.8rem 1rem;
  }

  .ps-gallery-zoom {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ============================================================
   TESTIMONIALS — V3 Pastel Floating Cards
   ============================================================ */
section.ps-testimonials {
  background: var(--ps-white) !important;
  position: relative;
}

/* ── Card Base ── */
.ps-tv3-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ps-tv3-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

/* Decorative floating dots */
.ps-tv3-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ps-tv3-card:hover .ps-tv3-dot {
  opacity: 0.28;
}

.ps-tv3-dot-a {
  width: 90px;
  height: 90px;
  top: -28px;
  right: -20px;
}

.ps-tv3-dot-b {
  width: 48px;
  height: 48px;
  bottom: 56px;
  left: -16px;
}

/* Giant background quote mark */
.ps-tv3-big-quote {
  position: absolute;
  top: 4px;
  left: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8rem;
  line-height: 1;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s ease;
}

.ps-tv3-card:hover .ps-tv3-big-quote {
  opacity: 0.13;
}

/* Card body */
.ps-tv3-body {
  padding: 1.8rem 1.6rem 1rem;
  position: relative;
  z-index: 2;
}

/* Stars */
.ps-tv3-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
}

/* Text */
.ps-tv3-text {
  font-size: 0.91rem;
  line-height: 1.85;
  color: var(--ps-text);
  font-style: italic;
  margin: 0;
}

/* Author footer strip */
.ps-tv3-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1.6rem;
  margin-top: 0.8rem;
  position: relative;
  z-index: 2;
}

/* Avatar */
.ps-tv3-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
}

.ps-tv3-card:hover .ps-tv3-avatar {
  transform: scale(1.1);
}

.ps-tv3-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Initials avatar variants */
.ps-tv3-av-mint {
  background: linear-gradient(135deg, var(--ps-mint-dark), #4daa7a);
}

.ps-tv3-av-pink {
  background: linear-gradient(135deg, var(--ps-pink-dark), #d45e7a);
}

.ps-tv3-av-blue {
  background: linear-gradient(135deg, var(--ps-baby-blue-dark), #5588d4);
}

.ps-tv3-av-peach {
  background: linear-gradient(135deg, var(--ps-peach-dark), #e07a30);
}

/* Author meta */
.ps-tv3-meta {
  flex: 1;
}

.ps-tv3-meta strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ps-text);
  font-weight: 700;
}

.ps-tv3-meta span {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Verified check */
.ps-tv3-check {
  font-size: 1.25rem;
  opacity: 0.75;
}

/* ── Color Variants ── */

/* Mint */
.ps-tv3-mint {
  background: linear-gradient(155deg, #edfaf4 0%, #c8eee0 100%);
}

.ps-tv3-mint .ps-tv3-dot-a,
.ps-tv3-mint .ps-tv3-dot-b {
  background: var(--ps-mint-dark);
}

.ps-tv3-mint .ps-tv3-big-quote {
  color: var(--ps-mint-dark);
}

.ps-tv3-mint .ps-tv3-stars i {
  color: var(--ps-mint-dark);
}

.ps-tv3-mint .ps-tv3-footer {
  background: rgba(168, 230, 207, 0.3);
}

.ps-tv3-mint .ps-tv3-meta span {
  color: var(--ps-mint-dark);
}

.ps-tv3-mint .ps-tv3-check {
  color: var(--ps-mint-dark);
}

/* Pink */
.ps-tv3-pink {
  background: linear-gradient(155deg, #fff2f5 0%, #ffd2dc 100%);
}

.ps-tv3-pink .ps-tv3-dot-a,
.ps-tv3-pink .ps-tv3-dot-b {
  background: var(--ps-pink-dark);
}

.ps-tv3-pink .ps-tv3-big-quote {
  color: var(--ps-pink-dark);
}

.ps-tv3-pink .ps-tv3-stars i {
  color: var(--ps-pink-dark);
}

.ps-tv3-pink .ps-tv3-footer {
  background: rgba(255, 183, 197, 0.3);
}

.ps-tv3-pink .ps-tv3-meta span {
  color: var(--ps-pink-dark);
}

.ps-tv3-pink .ps-tv3-check {
  color: var(--ps-pink-dark);
}

/* Blue */
.ps-tv3-blue {
  background: linear-gradient(155deg, #eef5ff 0%, #c8daff 100%);
}

.ps-tv3-blue .ps-tv3-dot-a,
.ps-tv3-blue .ps-tv3-dot-b {
  background: var(--ps-baby-blue-dark);
}

.ps-tv3-blue .ps-tv3-big-quote {
  color: var(--ps-baby-blue-dark);
}

.ps-tv3-blue .ps-tv3-stars i {
  color: var(--ps-baby-blue-dark);
}

.ps-tv3-blue .ps-tv3-footer {
  background: rgba(147, 197, 253, 0.3);
}

.ps-tv3-blue .ps-tv3-meta span {
  color: var(--ps-baby-blue-dark);
}

.ps-tv3-blue .ps-tv3-check {
  color: var(--ps-baby-blue-dark);
}

/* Peach */
.ps-tv3-peach {
  background: linear-gradient(155deg, #fff6ee 0%, #ffd9b8 100%);
}

.ps-tv3-peach .ps-tv3-dot-a,
.ps-tv3-peach .ps-tv3-dot-b {
  background: var(--ps-peach-dark);
}

.ps-tv3-peach .ps-tv3-big-quote {
  color: var(--ps-peach-dark);
}

.ps-tv3-peach .ps-tv3-stars i {
  color: var(--ps-peach-dark);
}

.ps-tv3-peach .ps-tv3-footer {
  background: rgba(255, 180, 100, 0.22);
}

.ps-tv3-peach .ps-tv3-meta span {
  color: var(--ps-peach-dark);
}

.ps-tv3-peach .ps-tv3-check {
  color: var(--ps-peach-dark);
}

/* ── Owl Carousel Nav Arrows ── */
section.ps-testimonials .owl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

section.ps-testimonials .owl-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50% !important;
  background: var(--ps-lavender-light) !important;
  color: #7b61c7 !important;
  font-size: 1rem !important;
  transition: var(--ps-transition);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.ps-testimonials .owl-nav button span {
  display: none;
}

section.ps-testimonials .owl-nav button:hover {
  background: var(--ps-lavender) !important;
  color: var(--ps-white) !important;
  transform: scale(1.12);
  border-color: #7b61c7 !important;
  box-shadow: 0 4px 15px rgba(123, 97, 199, 0.25);
}

.owl-theme .owl-dots .owl-dot span {
  background: var(--ps-mint-light) !important;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: var(--ps-mint-dark) !important;
}

/* ── Responsive ── */
@media (max-width: 576px) {
  .ps-tv3-body {
    padding: 1.4rem 1.2rem 0.8rem;
  }

  .ps-tv3-footer {
    padding: 0.75rem 1.2rem;
  }

  .ps-tv3-text {
    font-size: 0.87rem;
  }

  .ps-tv3-avatar {
    width: 42px;
    height: 42px;
  }
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
section.ps-blog {
  background: var(--ps-bg) !important;
}

/* Blog card styling */
.blog.card,
.blog-inner {
  border-radius: var(--ps-radius) !important;
  overflow: hidden;
  box-shadow: var(--ps-shadow-soft) !important;
  transition: var(--ps-transition);
  border: none !important;
}

.blog.card:hover,
.blog-inner:hover {
  transform: translateY(-6px);
  box-shadow: var(--ps-shadow-hover) !important;
}

.blog-meta {
  border-radius: 0 0 var(--ps-radius-sm) var(--ps-radius-sm) !important;
}

.blog-title a {
  color: var(--ps-text) !important;
}

.blog-title a:hover {
  color: var(--ps-pink-dark) !important;
}

.blog-link a {
  color: var(--ps-mint-dark) !important;
}

.blog-link a:hover {
  color: var(--ps-pink-dark) !important;
}

/* Blog listing page */
.blogContent .border {
  border: none !important;
  background: var(--ps-white);
  border-radius: var(--ps-radius) !important;
  box-shadow: var(--ps-shadow-soft);
  padding: 1.5rem;
}

.blog-writer-article-title h4 {
  color: var(--ps-text) !important;
  font-family: "Baloo 2", sans-serif !important;
  font-size: 1.1rem !important;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--ps-mint-light);
}

.blog-writer-article-tags a {
  color: var(--ps-text) !important;
  font-weight: 600;
}

.blog-writer-article-tags a:hover {
  color: var(--ps-pink-dark) !important;
}

.blog-writer-article-tags img {
  border-radius: var(--ps-radius-sm) !important;
  width: 60px !important;
  height: 60px !important;
  object-fit: cover;
  margin-right: 10px;
}

.filter-btn {
  background: var(--ps-white) !important;
  border: 2px solid var(--ps-mint-light) !important;
  border-radius: var(--ps-radius-pill) !important;
  padding: 10px 22px !important;
  font-weight: 600;
  color: var(--ps-text) !important;
  transition: var(--ps-transition-fast);
}

.filter-btn:hover {
  border-color: var(--ps-pink) !important;
}

/* Blog detail page */
.blog-detail h1 {
  font-size: 2.2rem !important;
  color: var(--ps-text) !important;
}

.blog-detail-image {
  border-radius: var(--ps-radius) !important;
  box-shadow: var(--ps-shadow);
}

.blog-detail-inclusive {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-detail-inclusive span {
  background: var(--ps-bg);
  padding: 6px 14px;
  border-radius: var(--ps-radius-pill);
  font-size: 0.85rem;
  color: var(--ps-text-light) !important;
}

/* ============================================================
   FOOTER — V2 Modern Preschool (Warm Pastel)
   ============================================================ */
/* ============================================================
   FOOTER — Modern Preschool Design
   ============================================================ */

/* ── Wave Separator ── */
.ps-footer-wave-sep {
  background: var(--ps-mint);
  line-height: 0;
  margin-bottom: -1px;
}

.ps-footer-wave-sep svg {
  display: block;
  width: 100%;
  height: 50px;
}

/* ── Main Body ── */
.ps-footer-body {
  background: var(--ps-bg);
  padding: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.ps-footer-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 5% 15%, rgba(200, 185, 165, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 95% 85%, rgba(200, 185, 165, 0.1) 0%, transparent 35%);
  pointer-events: none;
}

/* Logo */
.ps-footer-logo {
  display: inline-block;
  margin-bottom: 1.2rem;
}

.ps-footer-logo img {
  max-width: 200px;
  height: auto;
}

/* Description */
.ps-footer-desc {
  color: var(--ps-text-light) !important;
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

/* Info list */
.ps-footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.ps-footer-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ps-text-light) !important;
  text-decoration: none !important;
  font-size: 0.83rem;
  transition: color 0.2s ease;
}

.ps-footer-info-item:hover {
  color: var(--ps-text) !important;
}

.ps-fi-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.ps-fi-mint,
.ps-fi-pink,
.ps-fi-blue {
  background: rgba(0, 0, 0, 0.05);
  color: var(--ps-text-light);
}

/* Social icons */
.ps-footer-socials {
  display: flex;
  gap: 10px;
}

.ps-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  background: rgba(0, 0, 0, 0.05);
  color: var(--ps-text-light) !important;
}

.ps-footer-socials a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--ps-text) !important;
}

/* Widget */
.ps-footer-widget h5 {
  color: var(--ps-text) !important;
  font-size: 0.95rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.ps-footer-widget h5 i {
  color: var(--ps-text-light);
  font-size: 0.85rem;
}

.ps-footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ps-footer-widget ul li a {
  color: var(--ps-text-light) !important;
  text-decoration: none;
  font-size: 0.84rem;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.ps-footer-widget ul li a::before {
  content: "›";
  color: var(--ps-text-muted);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.ps-footer-widget ul li a:hover {
  color: var(--ps-text) !important;
  padding-left: 4px;
}

.ps-footer-widget ul li a:hover::before {
  transform: translateX(3px);
}

/* Working Hours */
.ps-footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.8rem;
}

.ps-fh-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--ps-white);
  border-left: 3px solid var(--ps-text-muted);
  box-shadow: var(--ps-shadow-soft);
}

.ps-fh-item.ps-fh-closed {
  border-left-color: var(--ps-text-muted);
  opacity: 0.55;
}

.ps-fh-day {
  color: var(--ps-text);
  font-size: 0.82rem;
  font-weight: 600;
}

.ps-fh-time {
  color: var(--ps-text);
  font-size: 0.82rem;
  font-weight: 700;
}

.ps-fh-closed .ps-fh-time {
  color: var(--ps-text-muted);
}

/* Stats */
.ps-footer-stats {
  display: flex;
  gap: 8px;
}

.ps-fstat {
  flex: 1;
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  box-shadow: var(--ps-shadow-soft);
}

.ps-fstat {
  background: rgba(0, 0, 0, 0.03);
}

.ps-fstat-num {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: "Baloo 2", sans-serif;
  line-height: 1;
  margin-bottom: 3px;
  color: var(--ps-text);
}

.ps-fstat-label {
  display: block;
  font-size: 0.67rem;
  color: var(--ps-text-light);
  font-weight: 500;
  line-height: 1.2;
}

/* ── Bottom Bar ── */
.ps-footer-bottom {
  background: #f7efe7;
  padding: 1rem 0;
  border-top: 1px solid rgba(235, 220, 200, 0.5);
}

.ps-footer-copy {
  color: var(--ps-text-light);
  font-size: 0.78rem;
  margin: 0;
}

.ps-footer-copy a {
  color: var(--ps-text) !important;
  text-decoration: none;
  font-weight: 600;
}

.ps-footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: center;
}

@media (min-width: 992px) {
  .ps-footer-legal-links {
    justify-content: flex-end;
  }
}

.ps-footer-legal-links a {
  color: var(--ps-text-light) !important;
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.ps-footer-legal-links a:hover {
  color: var(--ps-text) !important;
}

/* ── Footer Responsive ── */
@media (max-width: 767px) {
  .ps-footer-body {
    padding: 2.5rem 0 2rem;
  }

  .ps-footer-logo {
    display: block;
    text-align: center;
  }

  .ps-footer-desc {
    text-align: center;
  }

  .ps-footer-info-list {
    align-items: center;
  }

  .ps-footer-socials {
    justify-content: center;
  }

  .ps-footer-widget {
    margin-top: 0.5rem;
  }

  .ps-footer-widget h5 {
    justify-content: center;
  }

  .ps-footer-widget ul li a {
    justify-content: center;
  }

  .ps-footer-stats {
    justify-content: center;
  }

  .ps-footer-copy {
    text-align: center;
  }

  .ps-footer-designed-by {
    text-align: center;
  }
}

.ps-footer-designed-by {
  font-size: 0.72rem;
  color: var(--ps-text-muted);
}

.ps-footer-designed-by a {
  color: var(--ps-mint-dark) !important;
  text-decoration: none;
  font-weight: 600;
}

.ps-footer-designed-by a:hover {
  color: var(--ps-pink-dark) !important;
}

/* ============================================================
   ABOUT PAGE — Redesigned (hakkimizda.php)
   ============================================================ */

/* ── Hero Section ── */
.ps-about-hero {
  background: var(--ps-bg);
  padding: 140px 0 40px;
  position: relative;
  overflow: hidden;
}

.ps-about-hero-text {
  position: relative;
  z-index: 2;
}

.ps-about-hero-desc {
  font-size: 1.05rem;
  color: var(--ps-text-light);
  line-height: 1.85;
  margin-top: 1rem;
  max-width: 520px;
}

/* ── Hero Image — Preschool Blob Frame ── */
.ps-about-hero-image {
  position: relative;
  z-index: 2;
  max-width: 460px;
  padding: 15px;
}

/* Soft blob background */
.ps-about-hero-image::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--ps-mint-light) 0%, var(--ps-baby-blue-light) 50%, var(--ps-pink-light) 100%);
  z-index: -1;
  animation: heroBlobFloat 8s ease-in-out infinite;
  opacity: 0.8;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Decorative dots */
.ps-about-hero-image::after {
  content: "✦ ✦ ✦";
  position: absolute;
  top: -15px;
  right: 10px;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--ps-soft-yellow-dark);
  z-index: 3;
  animation: heroDotsBounce 3s ease-in-out infinite;
}

.ps-about-hero-image:hover::before {
  animation-play-state: paused;
  transform: scale(1.03);
}

.ps-about-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 50% 40% 45% 55% / 45% 55% 40% 50%;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  border: 5px solid var(--ps-white);
}

.ps-about-hero-image:hover img {
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
  transform: translateY(-5px) scale(1.02);
  border-radius: 45% 55% 50% 40% / 50% 40% 55% 45%;
}

@keyframes heroBlobFloat {
  0%,
  100% {
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  }

  25% {
    border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%;
  }

  50% {
    border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%;
  }

  75% {
    border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%;
  }
}

@keyframes heroDotsBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.ps-about-hero-badge {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: rgba(107, 148, 130, 0.92);
  color: var(--ps-white);
  padding: 16px 22px;
  border-radius: var(--ps-radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 30px rgba(107, 148, 130, 0.35);
  animation: float 4s ease-in-out infinite;
  z-index: 3;
  line-height: 1.2;
  text-align: center;
}

.ps-about-hero-badge .badge-num {
  font-family: "Baloo 2", sans-serif !important;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.ps-about-hero-badge .badge-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ── Hero Stats ── */
.ps-about-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ps-about-stat-item {
  background: var(--ps-white);
  padding: 16px 22px;
  border-radius: var(--ps-radius-sm);
  box-shadow: var(--ps-shadow-soft);
  text-align: center;
  min-width: 110px;
  transition: var(--ps-transition);
  border: 2px solid transparent;
}

.ps-about-stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--ps-mint-light);
  box-shadow: var(--ps-shadow);
}

.ps-about-stat-num {
  font-family: "Baloo 2", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ps-mint-dark) !important;
}

.ps-about-stat-item:nth-child(2) .ps-about-stat-num {
  color: var(--ps-pink-dark) !important;
}

.ps-about-stat-item:nth-child(3) .ps-about-stat-num {
  color: var(--ps-baby-blue-dark) !important;
}

.ps-about-stat-item:nth-child(4) .ps-about-stat-num {
  color: #7b61c7 !important;
}

.ps-about-stat-label {
  font-size: 0.78rem;
  color: var(--ps-text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* ── Mission & Vision Cards ── */
.ps-mv-card {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--ps-shadow-soft);
  border: 2px solid transparent;
  transition: var(--ps-transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ps-mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.ps-mv-mission::before {
  background: linear-gradient(90deg, var(--ps-mint), var(--ps-mint-dark));
}

.ps-mv-vision::before {
  background: linear-gradient(90deg, var(--ps-baby-blue), var(--ps-baby-blue-dark));
}

.ps-mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ps-shadow-hover);
  border-color: var(--ps-mint-light);
}

.ps-mv-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.ps-mv-mission .ps-mv-icon {
  background: var(--ps-mint-light);
  color: var(--ps-mint-dark);
}

.ps-mv-vision .ps-mv-icon {
  background: var(--ps-baby-blue-light);
  color: var(--ps-baby-blue-dark);
}

.ps-mv-card h3 {
  font-size: 1.3rem !important;
  margin-bottom: 1rem;
}

.ps-mv-card p {
  color: var(--ps-text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.ps-mv-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.ps-mv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ps-text);
}

.ps-mv-list li i {
  color: var(--ps-mint-dark) !important;
  font-size: 0.85rem;
}

.ps-mv-vision .ps-mv-list li i {
  color: var(--ps-baby-blue-dark) !important;
}

/* ── Why Us Cards ── */
.ps-about-why {
  background: var(--ps-bg);
}

.ps-why-card {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--ps-shadow-soft);
  transition: var(--ps-transition);
  border: 2px solid transparent;
  height: 100%;
}

.ps-why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--ps-shadow-hover);
  border-color: var(--ps-mint-light);
}

.ps-why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
  transition: var(--ps-transition);
}

.ps-why-card:hover .ps-why-icon {
  transform: scale(1.15) rotate(8deg);
}

.ps-why-card h5 {
  font-size: 1.1rem !important;
  margin-bottom: 0.8rem;
}

.ps-why-card p {
  font-size: 0.9rem;
  color: var(--ps-text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Team Section ── */
.ps-team-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ps-team-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--ps-bg);
  border-radius: var(--ps-radius-sm);
  transition: var(--ps-transition-fast);
}

.ps-team-highlight:hover {
  background: var(--ps-mint-light);
  transform: translateX(5px);
}

.ps-team-highlight-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--ps-mint-light);
  color: var(--ps-mint-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ps-team-highlight strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ps-text);
}

.ps-team-highlight span {
  font-size: 0.82rem;
  color: var(--ps-text-muted);
}

/* ── Team Image — Preschool Blob Frame (same as hero) ── */
.ps-team-image-wrapper {
  position: relative;
  z-index: 2;
  max-width: 460px;
  padding: 15px;
}

.ps-team-image-wrapper::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--ps-mint-light) 0%, var(--ps-baby-blue-light) 50%, var(--ps-pink-light) 100%);
  z-index: -1;
  animation: heroBlobFloat 8s ease-in-out infinite;
  opacity: 0.8;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ps-team-image-wrapper::after {
  content: "✦ ✦ ✦";
  position: absolute;
  top: -15px;
  right: 10px;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--ps-soft-yellow-dark);
  z-index: 3;
  animation: heroDotsBounce 3s ease-in-out infinite;
}

.ps-team-image-wrapper:hover::before {
  animation-play-state: paused;
  transform: scale(1.03);
}

.ps-team-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 50% 40% 45% 55% / 45% 55% 40% 50%;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  border: 5px solid var(--ps-white);
}

.ps-team-image-wrapper:hover img {
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
  transform: translateY(-5px) scale(1.02);
  border-radius: 45% 55% 50% 40% / 50% 40% 55% 45%;
}

.ps-team-floating-card {
  position: absolute;
  background: var(--ps-white);
  padding: 12px 20px;
  border-radius: var(--ps-radius-sm);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ps-text);
  z-index: 3;
}

.ps-team-floating-card i {
  font-size: 1.1rem;
}

.ps-team-fc-1 {
  top: 30px;
  right: 0;
  animation: float 5s ease-in-out infinite;
}

.ps-team-fc-1 i {
  color: var(--ps-mint-dark) !important;
}

.ps-team-fc-2 {
  bottom: 30px;
  left: 0;
  animation: float 5s ease-in-out infinite 1.5s;
}

.ps-team-fc-2 i {
  color: var(--ps-pink-dark) !important;
}

/* ── CTA Banner ── */
.ps-about-cta-banner {
  background: linear-gradient(135deg, var(--ps-baby-blue-dark) 0%, #6c8eef 50%, var(--ps-lavender) 100%);
  border-radius: var(--ps-radius);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.ps-about-cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px), radial-gradient(circle at 80% 20%, white 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, white 1.5px, transparent 1.5px);
  background-size:
    60px 60px,
    80px 80px,
    40px 40px;
}

.ps-about-cta-banner h3 {
  color: var(--ps-white) !important;
  font-size: 1.6rem !important;
  margin-bottom: 0.5rem;
}

.ps-about-cta-banner p {
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 0;
  font-size: 1rem;
}

.ps-cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ps-white) !important;
  color: var(--ps-baby-blue-dark) !important;
  padding: 14px 28px;
  border-radius: var(--ps-radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none !important;
  transition: var(--ps-transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.ps-cta-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  color: var(--ps-pink-dark) !important;
}

.ps-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  color: var(--ps-white) !important;
  padding: 12px 26px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--ps-radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none !important;
  transition: var(--ps-transition);
}

.ps-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: var(--ps-white);
  transform: translateY(-3px);
  color: var(--ps-white) !important;
}

/* ── FAQ Image — Preschool Blob Frame (same as hero) ── */
.ps-faq-image-wrapper {
  position: relative;
  z-index: 2;
  max-width: 460px;
  padding: 15px;
}

.ps-faq-image-wrapper::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--ps-mint-light) 0%, var(--ps-baby-blue-light) 50%, var(--ps-pink-light) 100%);
  z-index: -1;
  animation: heroBlobFloat 8s ease-in-out infinite;
  opacity: 0.8;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ps-faq-image-wrapper::after {
  content: "✦ ✦ ✦";
  position: absolute;
  top: -15px;
  right: 10px;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--ps-soft-yellow-dark);
  z-index: 3;
  animation: heroDotsBounce 3s ease-in-out infinite;
}

.ps-faq-image-wrapper:hover::before {
  animation-play-state: paused;
  transform: scale(1.03);
}

.ps-faq-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 50% 40% 45% 55% / 45% 55% 40% 50%;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  border: 5px solid var(--ps-white);
}

.ps-faq-image-wrapper:hover img {
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
  transform: translateY(-5px) scale(1.02);
  border-radius: 45% 55% 50% 40% / 50% 40% 55% 45%;
}

/* ── About Page Responsive ── */
@media (max-width: 991px) {
  .ps-about-hero {
    padding-top: 100px;
  }

  .ps-about-hero-image {
    margin-top: 2.5rem;
    max-width: 100%;
  }

  .ps-about-hero-image img {
    height: 300px;
    border-radius: 50% 40% 45% 55% / 45% 55% 40% 50%;
  }

  .ps-about-hero-image::after {
    display: none;
  }

  .ps-about-hero-stats {
    justify-content: center;
  }

  .ps-team-image-wrapper img {
    height: 300px;
    border-radius: 50% 40% 45% 55% / 45% 55% 40% 50%;
  }

  .ps-team-image-wrapper::after {
    display: none;
  }

  .ps-team-floating-card {
    font-size: 0.8rem;
    padding: 10px 14px;
  }

  .ps-about-cta-banner {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .ps-about-cta-banner h3 {
    font-size: 1.3rem !important;
  }
}

@media (max-width: 576px) {
  .ps-about-hero h1 {
    font-size: 1.8rem !important;
  }

  .ps-about-hero-stats {
    gap: 0.8rem;
  }

  .ps-about-stat-item {
    min-width: 90px;
    padding: 12px 14px;
  }

  .ps-about-stat-num {
    font-size: 1.4rem;
  }

  .ps-mv-card {
    padding: 1.8rem 1.2rem;
  }

  .ps-about-hero-badge {
    right: 10px;
    bottom: 20px;
    padding: 12px 16px;
  }

  .ps-about-hero-badge .badge-num {
    font-size: 1.3rem;
  }

  .ps-faq-image-wrapper img {
    height: 300px;
    border-radius: 50% 40% 45% 55% / 45% 55% 40% 50%;
  }

  .ps-faq-image-wrapper::after {
    display: none;
  }
}

/* ============================================================
   BİZ KİMİZ (hakkimizda.php) — müşteri metni, statik v1 (ps-bk-*)
   ============================================================ */
.ps-bk-page {
  overflow-x: hidden;
}

.ps-bk-hero {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(130deg, rgba(15, 32, 39, 0.72) 0%, rgba(32, 58, 67, 0.62) 45%, rgba(44, 83, 100, 0.56) 100%),
    linear-gradient(180deg, rgba(8, 26, 34, 0.5) 0%, rgba(8, 26, 34, 0.18) 38%, rgba(8, 26, 34, 0.58) 100%),
    url("../images/kozalak-anaokulu1280x720.jpg") center center / cover no-repeat;
  /* main negatif margin ile hizalı; .container.py-5 üstte ek boşluk veriyor */
  padding-top: calc(var(--ps-nav-height, 88px) + 0.85rem + 0.75rem);
  padding-bottom: 0.5rem;
  min-height: clamp(320px, 40vh, 520px);
}

.ps-bk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.22), transparent 36%),
    radial-gradient(circle at 84% 78%, rgba(168, 230, 207, 0.2), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.ps-bk-hero > .container {
  position: relative;
  z-index: 1;
}

.ps-bk-hero-title {
  font-family: "Baloo 2", sans-serif !important;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800 !important;
  color: #fff !important;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  margin: 0 0 0.75rem;
  line-height: 1.12;
}

.ps-bk-hero-lead {
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.65;
  margin: 0 auto 1.75rem;
  max-width: 68rem;
}

.ps-bk-pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  justify-content: center;
}

.ps-bk-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  color: #fff !important;
  background: linear-gradient(145deg, var(--ps-main, #f56e28) 0%, var(--ps-main-mid, #e45f22) 52%, var(--ps-main-deep, #c24e1c) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 20px rgba(245, 110, 40, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.ps-bk-pill:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(245, 110, 40, 0.4);
}

.ps-bk-pill--alt {
  background: var(--ps-white);
  color: var(--ps-mint-dark) !important;
  border: 2px solid var(--ps-mint-dark);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.ps-bk-pill--alt:hover {
  color: var(--ps-mint-dark) !important;
  background: var(--ps-mint-light);
}

.ps-bk-section {
  position: relative;
}

.ps-bk-section--white {
  background: var(--ps-white);
}

.ps-bk-section--mint {
  background: linear-gradient(180deg, rgba(212, 245, 230, 0.65) 0%, var(--ps-white) 100%);
}

/* Hikâye: sadece metin — sıcak nötr, pembe vurgu */
.ps-bk-section--story {
  background: linear-gradient(180deg, #fffdfb 0%, var(--ps-bg) 48%, #fff9f5 100%);
  border-top: 1px solid rgba(232, 137, 158, 0.18);
  border-bottom: 1px solid rgba(232, 137, 158, 0.12);
}

.ps-bk-kicker--story {
  color: var(--ps-pink-dark) !important;
}

.ps-bk-story-body {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  border-left: 4px solid var(--ps-pink-dark);
  box-shadow: 0 10px 36px rgba(45, 45, 63, 0.06);
}

/* Hayal: fotoğraf + liste — mint / marka vurgusu */
.ps-bk-section--dream {
  background: linear-gradient(165deg, rgba(212, 245, 230, 0.55) 0%, var(--ps-white) 55%, var(--ps-mint-light) 100%);
  border-top: 1px solid rgba(168, 230, 207, 0.35);
}

.ps-bk-kicker--dream {
  color: var(--ps-mint-dark) !important;
}

.ps-bk-checklist--dream li::before {
  color: var(--ps-main, #f56e28) !important;
}

.ps-bk-dream-photo {
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(168, 230, 207, 0.5);
  border: 4px solid var(--ps-white);
}

.ps-bk-dream-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.ps-bk-section--cream {
  background: var(--ps-bg);
}

.ps-bk-section--slate {
  background: linear-gradient(160deg, #7daa92 0%, #0c7a43 55%, #62be90 100%);
  color: #e2f5ed;
}

.ps-bk-section--wave {
  background: var(--ps-white);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.ps-bk-section-head {
  margin-bottom: 1.25rem;
}

.ps-bk-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ps-mint-dark);
  margin-bottom: 0.35rem;
}

.ps-bk-kicker--on-dark {
  color: #a8e6cf;
}

.ps-bk-h2 {
  font-family: "Baloo 2", sans-serif !important;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 800 !important;
  color: var(--ps-text) !important;
  margin: 0;
  line-height: 1.2;
}

.ps-bk-h2--on-dark {
  color: #fff !important;
}

.ps-bk-h3 {
  font-family: "Baloo 2", sans-serif !important;
  font-size: 1.2rem;
  font-weight: 700 !important;
  color: var(--ps-text) !important;
  margin: 0 0 1rem;
}

.ps-bk-prose {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ps-text-light);
}

.ps-bk-prose p {
  margin-bottom: 1rem;
}

.ps-bk-prose p:last-child {
  margin-bottom: 0;
}

.ps-bk-prose--story {
  font-size: 1.08rem;
}

.ps-bk-prose--on-dark {
  color: rgba(226, 232, 240, 0.95) !important;
}

.ps-bk-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ps-bk-facts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ps-bg);
  border-radius: 14px;
  border: 1px solid rgba(168, 230, 207, 0.35);
  font-size: 0.98rem;
  color: var(--ps-text);
}

.ps-bk-facts i {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--ps-mint-light);
  color: var(--ps-mint-dark);
  flex-shrink: 0;
}

.ps-bk-side-img img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  object-fit: cover;
}

.ps-bk-portrait {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  border: 4px solid var(--ps-white);
}

.ps-bk-portrait img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.ps-bk-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ps-bk-checklist li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ps-text);
}

.ps-bk-checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.85rem;
  color: var(--ps-mint-dark);
}

.ps-bk-checklist--compact li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.ps-bk-emphasis {
  margin: 1.5rem auto 0;
  max-width: 46rem;
  font-family: "Baloo 2", sans-serif !important;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 600 !important;
  line-height: 1.55;
  color: var(--ps-text) !important;
  border: none;
  padding: 0;
}

.ps-bk-quoteblock {
  margin: 2rem auto 0;
  max-width: 40rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  border-left: 4px solid #a8e6cf;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ps-bk-quoteblock blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  font-style: italic;
  color: #f8fafc;
}

.ps-bk-quoteblock figcaption {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: 0.04em;
}

.ps-bk-timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--ps-mint);
}

.ps-bk-timeline-node {
  position: relative;
  padding-bottom: 1.75rem;
}

.ps-bk-timeline-node:last-child {
  padding-bottom: 0;
}

.ps-bk-timeline-node::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ps-main, #f56e28);
  border: 2px solid var(--ps-white);
  box-shadow: 0 0 0 3px rgba(245, 110, 40, 0.28);
}

.ps-bk-timeline-year {
  display: inline-block;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ps-mint-dark);
  margin-bottom: 0.35rem;
}

.ps-bk-aimcard {
  background: linear-gradient(145deg, var(--ps-mint-light) 0%, var(--ps-white) 100%);
  border-radius: 24px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(168, 230, 207, 0.5);
  box-shadow: var(--ps-shadow-soft);
  height: 100%;
}

/* Footer üstü — hızlı iletişim: açık pastel şerit (footer gövdesiyle uyumlu) */
.ps-bk-bottom-cta {
  position: relative;
  overflow: hidden;
  color: var(--ps-text);
  background: linear-gradient(122deg, #fffdfb 0%, var(--ps-mint-light) 38%, #fff8f2 72%, var(--ps-bg-alt) 100%);
  border-top: 1px solid rgba(168, 230, 207, 0.55);
  box-shadow:
    0 -10px 36px rgba(107, 197, 160, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.ps-bk-bottom-cta::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 140%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 42% at 12% 28%, rgba(255, 183, 197, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 50% 45% at 88% 35%, rgba(168, 230, 207, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 50% 120%, rgba(255, 218, 185, 0.18) 0%, transparent 45%);
  opacity: 0.95;
}

.ps-bk-bottom-cta .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .ps-bk-bottom-cta .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.ps-bk-bottom-cta__intro {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  max-width: 26rem;
  color: var(--ps-text);
  font-weight: 600;
}

.ps-bk-bottom-cta__intro strong {
  color: var(--ps-main);
  font-weight: 800;
}

.ps-bk-bottom-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .ps-bk-bottom-cta__actions {
    justify-content: flex-end;
  }
}

.ps-bk-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  min-height: 2.5rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--ps-main) 0%, var(--ps-main-mid) 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 4px 16px rgba(245, 110, 40, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.ps-bk-cta-btn:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #ff8a4a 0%, var(--ps-main) 100%);
  box-shadow:
    0 6px 22px rgba(245, 110, 40, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  transform: translateY(-1px);
}

.ps-bk-cta-btn--ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ps-text) !important;
  border: 1.5px solid rgba(168, 230, 207, 0.75);
  box-shadow: 0 2px 12px rgba(45, 45, 63, 0.05);
}

.ps-bk-cta-btn--ghost:hover {
  background: var(--ps-mint-light);
  color: var(--ps-mint-dark) !important;
  border-color: var(--ps-mint);
  box-shadow: 0 4px 16px rgba(107, 197, 160, 0.18);
}

.ps-bk-cta-btn--icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  max-height: 2.5rem;
  max-width: 2.5rem;
  padding: 0;
  border-radius: 50%;
  aspect-ratio: 1;
  line-height: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ps-text-light) !important;
  border: 1.5px solid rgba(168, 230, 207, 0.7);
  box-shadow: 0 2px 10px rgba(45, 45, 63, 0.05);
}

.ps-bk-cta-btn--icon > i {
  display: block;
  line-height: 1;
  font-size: 1.08rem;
  text-align: center;
}

.ps-bk-cta-btn--icon:hover {
  background: var(--ps-pink-light);
  color: var(--ps-pink-dark) !important;
  border-color: rgba(232, 137, 158, 0.55);
  box-shadow: 0 4px 14px rgba(232, 137, 158, 0.2);
}

/* Bottom CTA — mobil: tam genişlik metin butonları; sosyal ikonlar tek satırda yan yana ve ortada */
@media (max-width: 767px) {
  .ps-bk-bottom-cta__intro {
    text-align: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .ps-bk-bottom-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* Satır aralığı: metin satırı ile ikon satırı arası — yalnızca ilk ikona margin verme (hizayı bozuyordu) */
    row-gap: 0.75rem;
    column-gap: 0.6rem;
  }

  .ps-bk-bottom-cta__actions > .ps-bk-cta-btn:not(.ps-bk-cta-btn--icon) {
    flex: 1 1 100%;
    width: 100%;
    min-height: 2.75rem;
  }

  .ps-bk-bottom-cta__actions > .ps-bk-cta-btn--icon {
    flex: 0 0 auto;
  }
}

@media (max-width: 575px) {
  .ps-bk-pill {
    width: 100%;
    justify-content: center;
  }
}

.accordion-item {
  border: none !important;
  margin-bottom: 1rem;
  border-radius: var(--ps-radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--ps-shadow-soft);
}

.accordion-button {
  font-family: "Nunito", sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  color: var(--ps-text) !important;
  background: var(--ps-white) !important;
  border-radius: var(--ps-radius-sm) !important;
  padding: 1.2rem 1.5rem !important;
}

.accordion-button:not(.collapsed) {
  background: var(--ps-mint-light) !important;
  color: var(--ps-mint-dark) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-body {
  padding: 1.2rem 1.5rem !important;
  color: var(--ps-text-light) !important;
  line-height: 1.8;
}

/* ============================================================
   CONTACT PAGE (iletisim.php) — Modern Redesign
   ============================================================ */
.ps-contact-section {
  background: var(--ps-white);
  padding: 2rem 0 4rem;
}

/* --- Info Cards Strip --- */
.ps-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  padding: 1.5rem 1.5rem;
  box-shadow: var(--ps-shadow-soft);
  transition: var(--ps-transition);
  height: 100%;
  border-left: 4px solid transparent;
}

.ps-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ps-shadow);
}

.ps-cc-address {
  border-left-color: var(--ps-pink-dark);
}

.ps-cc-phone {
  border-left-color: var(--ps-mint-dark);
}

.ps-cc-email {
  border-left-color: var(--ps-baby-blue-dark);
}

.ps-cc-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ps-white);
}

.ps-cc-address .ps-cc-icon {
  background: var(--ps-pink-dark);
}

.ps-cc-phone .ps-cc-icon {
  background: var(--ps-mint-dark);
}

.ps-cc-email .ps-cc-icon {
  background: var(--ps-baby-blue-dark);
}

.ps-contact-card h6 {
  font-weight: 700;
  color: var(--ps-text);
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

.ps-contact-card p {
  margin: 0;
  color: var(--ps-text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ps-contact-card a {
  color: var(--ps-text-light);
  text-decoration: none;
  transition: var(--ps-transition-fast);
}

.ps-contact-card a:hover {
  color: var(--ps-mint-dark);
}

/* --- Form Wrapper --- */
.ps-contact-form-wrap {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  padding: 2.5rem;
  box-shadow: var(--ps-shadow);
  height: 100%;
}

.ps-contact-form-header {
  margin-bottom: 1.5rem;
}

.ps-contact-form-header h3 {
  font-family: var(--ps-font-heading);
  color: var(--ps-text);
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.ps-contact-form-header p {
  color: var(--ps-text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* --- Field --- */
.ps-cf-field {
  position: relative;
}

.ps-cf-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ps-text);
  margin-bottom: 0.35rem;
}

.ps-cf-field label i {
  color: var(--ps-mint-dark);
  margin-right: 4px;
  font-size: 0.8rem;
}

.ps-cf-field input,
.ps-cf-field select,
.ps-cf-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--ps-mint-light);
  border-radius: var(--ps-radius-sm);
  font-size: 0.95rem;
  background: var(--ps-bg);
  color: var(--ps-text);
  transition: var(--ps-transition-fast);
  outline: none;
  font-family: var(--ps-font-body);
}

.ps-cf-field input:focus,
.ps-cf-field select:focus,
.ps-cf-field textarea:focus {
  border-color: var(--ps-mint-dark);
  box-shadow: 0 0 0 4px rgba(168, 230, 207, 0.25);
}

.ps-cf-field textarea {
  min-height: 120px;
  resize: vertical;
}

.ps-cf-field input::placeholder,
.ps-cf-field textarea::placeholder {
  color: var(--ps-text-light);
  opacity: 0.6;
}

.ps-cf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236BC5A0' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* --- Submit Button --- */
.ps-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--ps-mint-dark), var(--ps-mint));
  color: var(--ps-white);
  border: none;
  padding: 14px 36px;
  border-radius: var(--ps-radius-pill);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--ps-transition);
  box-shadow: 0 6px 20px rgba(168, 230, 207, 0.4);
  font-family: var(--ps-font-body);
  width: 100%;
  justify-content: center;
}

.ps-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(168, 230, 207, 0.6);
}

/* --- Map Wrapper --- */
.ps-contact-map-wrap {
  border-radius: var(--ps-radius);
  overflow: hidden;
  box-shadow: var(--ps-shadow);
  height: 340px;
}

.ps-contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* --- Working Hours --- */
.ps-contact-hours {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--ps-shadow-soft);
  margin-top: 1rem;
}

.ps-contact-hours h6 {
  font-weight: 700;
  color: var(--ps-text);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.ps-contact-hours h6 i {
  color: var(--ps-mint-dark);
  margin-right: 6px;
}

.ps-contact-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ps-contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--ps-mint-light);
  font-size: 0.9rem;
  color: var(--ps-text-light);
}

.ps-contact-hours li:last-child {
  border-bottom: none;
}

.ps-contact-hours li strong {
  color: var(--ps-text);
  font-weight: 600;
}

.ps-contact-hours .ps-closed {
  color: var(--ps-pink-dark);
}

/* --- Social Media Box --- */
.ps-contact-social {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--ps-shadow-soft);
  margin-top: 1rem;
  text-align: center;
}

.ps-contact-social h6 {
  font-weight: 700;
  color: var(--ps-text);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.ps-contact-social h6 i {
  color: var(--ps-mint-dark);
  margin-right: 6px;
}

.ps-contact-social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ps-contact-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(168, 230, 207, 0.25);
  color: var(--ps-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--ps-transition);
  text-decoration: none;
}

.ps-contact-social-links a:hover {
  background: var(--ps-mint);
  color: var(--ps-text);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(168, 230, 207, 0.25);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .ps-contact-form-wrap {
    padding: 1.8rem;
  }

  .ps-contact-map-wrap {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .ps-contact-form-wrap {
    padding: 1.3rem;
  }

  .ps-contact-card {
    padding: 1.2rem;
  }

  .ps-cc-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .ps-contact-social-links a {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

/* ============================================================
   SECTION-CATEGORIES PAGE
   ============================================================ */
.path-nav {
  background: var(--ps-white);
  padding: 12px 20px;
  border-radius: var(--ps-radius-pill);
  box-shadow: var(--ps-shadow-soft);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.path-nav a {
  color: var(--ps-text-light) !important;
  font-weight: 600;
}

.path-nav a:last-child {
  color: var(--ps-mint-dark) !important;
}

.section-title {
  color: var(--ps-text) !important;
}

.section-title span:first-child,
.section-title span:last-child,
.section-title span:first-child::after,
.section-title span:last-child::after {
  background: var(--ps-pink) !important;
}

.service-item {
  border: 2px solid var(--ps-mint-light) !important;
  border-radius: var(--ps-radius) !important;
  transition: var(--ps-transition) !important;
}

.service-item:hover {
  margin-top: 0 !important;
  transform: translateY(-10px);
  padding-bottom: 45px !important;
  background: linear-gradient(135deg, #2a2d4e, #1b1d35) !important;
  border-color: transparent !important;
  box-shadow: var(--ps-shadow-hover) !important;
}

.service-item a.btn {
  background: var(--ps-mint) !important;
  color: var(--ps-white) !important;
}

/* ━━ FAQ Kart (Soru-Cevap) ━━ */
.ps-faq-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  box-shadow: var(--ps-shadow-soft);
  border-left: 4px solid var(--ps-mint);
  text-decoration: none !important;
  color: var(--ps-text) !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ps-faq-card:hover {
  transform: translateX(5px);
  box-shadow: var(--ps-shadow-hover);
  border-left-color: var(--ps-pink);
  color: var(--ps-text) !important;
  text-decoration: none !important;
}

.ps-faq-number {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--ps-mint-light);
  color: var(--ps-mint-dark);
  font-family: "Baloo 2", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.ps-faq-card:hover .ps-faq-number {
  background: var(--ps-pink-light);
  color: var(--ps-pink-dark);
}

.ps-faq-content {
  flex: 1;
  min-width: 0;
}

.ps-faq-content h5 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ps-text);
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

.ps-faq-content p {
  font-size: 0.875rem;
  color: var(--ps-text-light);
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ps-faq-arrow {
  color: var(--ps-text-light);
  font-size: 0.85rem;
  flex-shrink: 0;
  align-self: center;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.ps-faq-card:hover .ps-faq-arrow {
  transform: translateX(4px);
  color: var(--ps-pink-dark);
}

/* ━━ Program Kart (Kategori) ━━ */
.ps-program-card {
  display: flex;
  flex-direction: column;
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  box-shadow: var(--ps-shadow-soft);
  overflow: hidden;
  text-decoration: none !important;
  color: var(--ps-text) !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

.ps-program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ps-shadow-hover);
  color: var(--ps-text) !important;
  text-decoration: none !important;
}

.ps-program-card-img {
  height: 180px;
  overflow: hidden;
}

.ps-program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ps-program-card:hover .ps-program-card-img img {
  transform: scale(1.05);
}

.ps-program-card-body {
  padding: 1.25rem;
  flex: 1;
}

.ps-program-card-body h5 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ps-text);
  margin-bottom: 0.5rem;
}

.ps-program-card-body p {
  font-size: 0.875rem;
  color: var(--ps-text-light);
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ps-program-card-arrow {
  padding: 0.75rem 1.25rem;
  text-align: right;
  color: var(--ps-mint-dark);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.ps-program-card:hover .ps-program-card-arrow {
  color: var(--ps-pink-dark);
}

/* ━━ Article Content ━━ */
.ps-article-content {
  line-height: 1.8;
  color: var(--ps-text);
}

.ps-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--ps-radius);
  margin: 1rem 0;
}

.ps-article-content h1,
.ps-article-content h2,
.ps-article-content h3 {
  font-family: "Baloo 2", sans-serif;
  color: var(--ps-text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ━━ Sidebar Sections ━━ */
.sidebar-sections {
  background: var(--ps-white);
  padding: 1.75rem;
  border-radius: var(--ps-radius);
  box-shadow: var(--ps-shadow-soft);
  position: sticky;
  top: 100px;
}

.sidebar-sections h4 {
  font-family: "Baloo 2", sans-serif !important;
  color: var(--ps-text) !important;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid var(--ps-mint);
}

/* Sidebar nav container */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ━━ Sidebar Group (Category with children) ━━ */
.sidebar-group {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-group:last-child {
  border-bottom: none;
}

.sidebar-group-title {
  display: block;
  font-family: "Baloo 2", sans-serif !important;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ps-text) !important;
  padding: 0.5rem 0;
  text-decoration: none;
  transition: var(--ps-transition-fast);
}

.sidebar-group-title:hover {
  color: var(--ps-mint-dark) !important;
}

/* ━━ Sidebar Sub Menu ━━ */
.sidebar-sub {
  list-style: none;
  padding: 0 0 0.25rem 0;
  margin: 0;
}

.sidebar-sub li {
  padding: 0;
}

.sidebar-sub li a {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ps-text-light) !important;
  text-decoration: none;
  padding: 0.4rem 0 0.4rem 0.75rem;
  border-left: 2px solid transparent;
  transition: var(--ps-transition-fast);
}

.sidebar-sub li a:hover {
  color: var(--ps-mint-dark) !important;
  border-left-color: var(--ps-mint);
  padding-left: 1rem;
}

/* ━━ Sidebar Single Link (no children) ━━ */
.sidebar-single-link {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ps-text-light) !important;
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--ps-transition-fast);
}

.sidebar-single-link:last-child {
  border-bottom: none;
}

.sidebar-single-link:hover {
  color: var(--ps-mint-dark) !important;
  padding-left: 0.5rem;
}

/* ━━ Post CTA Banner ━━ */
.ps-post-cta {
  margin-top: 2.5rem;
  padding: 0;
}

.ps-post-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, var(--ps-mint-light) 0%, var(--ps-baby-blue-light) 100%);
  padding: 1.5rem 2rem;
  border-radius: var(--ps-radius);
  border: 2px solid var(--ps-mint);
  flex-wrap: wrap;
}

.ps-post-cta-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--ps-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ps-mint-dark);
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.4);
}

.ps-post-cta-text {
  flex: 1;
  min-width: 180px;
}

.ps-post-cta-text h5 {
  font-family: "Baloo 2", sans-serif !important;
  font-size: 1.05rem;
  color: var(--ps-text) !important;
  margin: 0 0 0.2rem;
}

.ps-post-cta-text p {
  font-size: 0.9rem;
  color: var(--ps-text-light);
  margin: 0;
}

.ps-post-cta-inner .ps-btn-primary {
  white-space: nowrap;
}

@media (max-width: 576px) {
  .ps-post-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  .ps-post-cta-inner .ps-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   REGISTRATION FORMS (Multi-step feel)
   ============================================================ */
.ps-registration {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  box-shadow: var(--ps-shadow);
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.ps-registration h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.ps-registration .ps-step-indicator {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.ps-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ps-mint-light);
  transition: var(--ps-transition-fast);
}

.ps-step-dot.active {
  background: var(--ps-mint-dark);
  width: 36px;
  border-radius: 6px;
}

.ps-form-group {
  margin-bottom: 1rem;
}

.ps-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--ps-text);
  font-size: 0.95rem;
}

.ps-form-group input,
.ps-form-group select,
.ps-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--ps-mint-light);
  border-radius: var(--ps-radius-sm);
  font-size: 15px;
  background: var(--ps-bg);
  color: var(--ps-text);
  transition: var(--ps-transition-fast);
  outline: none;
}

.ps-form-group input:focus,
.ps-form-group select:focus,
.ps-form-group textarea:focus {
  border-color: var(--ps-mint-dark);
  box-shadow: 0 0 0 4px rgba(168, 230, 207, 0.25);
}

.ps-form-group textarea {
  min-height: 70px;
  resize: vertical;
}

/* Ön başvuru / başvuru: doğrulama hataları (main.js + siteApi fieldErrors) */
.ps-form-group.ps-has-error input,
.ps-form-group.ps-has-error select,
.ps-form-group.ps-has-error textarea {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.ps-apply-kvkk.ps-has-error .ps-checkbox-label {
  color: #922b21;
}

.ps-field-error {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c0392b;
  line-height: 1.35;
}

.ps-form-summary-error {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--ps-radius-sm);
  background: #fdecea;
  border: 1px solid #e5989e;
  color: #7b241c;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.ps-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

/* ============================================================
   ÖN BAŞVURU PAGE — Application Form
   ============================================================ */
.ps-apply-card {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  box-shadow: var(--ps-shadow);
  padding: 2rem 2.5rem;
  border: 2px solid var(--ps-mint-light);
  position: relative;
}

.ps-apply-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--ps-baby-blue-light);
  border-radius: var(--ps-radius-sm);
  padding: 0.7rem 1rem;
  margin-bottom: 1.5rem;
  color: var(--ps-text);
  font-size: 0.88rem;
  line-height: 1.5;
}

.ps-apply-info i {
  color: var(--ps-baby-blue-dark);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Section Headers */
.ps-apply-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--ps-radius-sm);
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  margin-top: 0.25rem;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: var(--ps-font-heading);
}

.ps-apply-header-mint {
  background: var(--ps-mint-light);
  color: var(--ps-mint-dark);
}

.ps-apply-header-pink {
  background: var(--ps-pink-light);
  color: var(--ps-pink-dark);
}

.ps-apply-header-blue {
  background: var(--ps-baby-blue-light);
  color: var(--ps-baby-blue-dark);
}

.ps-apply-header-yellow {
  background: var(--ps-soft-yellow-light, #fff8e1);
  color: var(--ps-soft-yellow-dark, #f9a825);
}

/* Two-column form row */
.ps-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

/* Phone input with prefix */
.ps-phone-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--ps-mint-light);
  border-radius: var(--ps-radius-sm);
  background: var(--ps-bg);
  transition: var(--ps-transition-fast);
  overflow: hidden;
}

.ps-phone-input:focus-within {
  border-color: var(--ps-mint-dark);
  box-shadow: 0 0 0 4px rgba(168, 230, 207, 0.25);
}

.ps-phone-prefix {
  padding: 14px 14px;
  background: var(--ps-mint-light);
  color: var(--ps-mint-dark);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  user-select: none;
}

.ps-phone-input input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-left: 12px;
}

.ps-phone-input input:focus {
  border: none !important;
  box-shadow: none !important;
}

/* Form hint text */
.ps-form-hint {
  font-size: 0.82rem;
  color: var(--ps-text-muted);
  margin-top: -4px;
  margin-bottom: 8px;
}

/* Required asterisk */
.ps-form-group .required {
  color: var(--ps-pink-dark);
}

/* KVKK checkbox */
.ps-apply-kvkk {
  margin-top: 1.5rem;
}

.ps-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ps-text-light);
  cursor: pointer;
  line-height: 1.5;
}

.ps-checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  accent-color: var(--ps-mint-dark);
}

.ps-checkbox-label a {
  color: var(--ps-mint-dark);
  text-decoration: underline;
  font-weight: 600;
}

/* Large submit button */
.ps-btn-lg {
  padding: 16px 48px;
  font-size: 1.1rem;
}

/* Trust badges */
.ps-apply-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.ps-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ps-text-muted);
  font-size: 0.88rem;
}

.ps-trust-item i {
  color: var(--ps-mint);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .ps-apply-card {
    padding: 1.5rem 1.2rem;
  }

  .ps-apply-trust {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* --- Ön Başvuru Doodle Decorations --- */
.ps-apply-doodle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Paper Airplane — top right */
.ps-doodle-airplane {
  top: 40px;
  right: 5%;
  animation: applyPlaneFly 6s ease-in-out infinite;
}

@keyframes applyPlaneFly {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(-8px, -12px) rotate(-3deg);
  }

  50% {
    transform: translate(-4px, -20px) rotate(2deg);
  }

  75% {
    transform: translate(6px, -8px) rotate(-1deg);
  }
}

/* Ribbon Swirl — left side */
.ps-doodle-ribbon {
  top: 120px;
  left: 3%;
  animation: applyRibbonSway 7s ease-in-out infinite;
}

@keyframes applyRibbonSway {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(5deg) scale(1.05);
  }
}

/* Curved Arrow — right mid */
.ps-doodle-arrow {
  top: 50%;
  right: 3%;
  animation: applyArrowBounce 4s ease-in-out infinite;
}

@keyframes applyArrowBounce {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-8px);
  }
}

/* Sparkle Burst — bottom left */
.ps-doodle-sparkle {
  bottom: 20%;
  left: 4%;
  animation: applySparklePulse 3s ease-in-out infinite;
}

@keyframes applySparklePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.6;
  }
}

/* Small Sparkle — top left */
.ps-doodle-sparkle-sm {
  top: 60px;
  left: 12%;
  animation: applySparklePulse 4s ease-in-out infinite 1s;
}

/* Mini Airplane — bottom right */
.ps-doodle-airplane-sm {
  bottom: 12%;
  right: 8%;
  animation: applyPlaneFly 8s ease-in-out infinite 2s;
  opacity: 0.3;
}

/* Hide doodles on tablets and below */
@media (max-width: 992px) {
  .ps-apply-doodle {
    display: none;
  }
}

/* ============================================================
   BLOG PAGE — Modern Kreş Blog Design
   ============================================================ */

/* Sidebar Cards */
.ps-sidebar-card {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  overflow: hidden;
  box-shadow: var(--ps-shadow-soft);
  border: 2px solid transparent;
  transition: var(--ps-transition);
}

.ps-sidebar-card:hover {
  box-shadow: var(--ps-shadow);
  border-color: var(--ps-mint-light);
}

.ps-sidebar-heading {
  background: var(--ps-mint-light);
  color: var(--ps-mint-dark);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ps-sidebar-heading i {
  font-size: 1rem;
}

.ps-sidebar-list {
  padding: 12px;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: none;
}

.ps-sidebar-list::-webkit-scrollbar {
  display: none;
}

/* Son Eklenenler — mavi scroll */
#divLastBlogs {
  scrollbar-color: var(--ps-baby-blue-dark) transparent;
}

.ps-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--ps-radius-sm);
  transition: var(--ps-transition-fast);
  text-decoration: none !important;
  color: var(--ps-text) !important;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
}

.ps-sidebar-item:hover {
  background: var(--ps-bg) !important;
  color: var(--ps-pink-dark) !important;
  transform: translateX(4px);
}

/* Son Eklenenler hover — mavi */
#divLastBlogs .ps-sidebar-item:hover {
  color: var(--ps-baby-blue-dark) !important;
}

.ps-sidebar-item + .ps-sidebar-item {
  border-top: 1px solid var(--ps-bg);
}

.ps-sidebar-item img {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ps-sidebar-item span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog Cards */
.ps-blog-card {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  overflow: hidden;
  box-shadow: var(--ps-shadow-soft);
  transition: var(--ps-transition);
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ps-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ps-shadow-hover);
  border-color: var(--ps-mint-light);
}

.ps-blog-card-image {
  display: block;
  position: relative;
  overflow: hidden;
  height: 210px;
}

.ps-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ps-blog-card:hover .ps-blog-card-image img {
  transform: scale(1.08);
}

.ps-blog-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(168, 230, 207, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ps-blog-card:hover .ps-blog-card-overlay {
  opacity: 1;
}

.ps-blog-card-overlay i {
  width: 50px;
  height: 50px;
  background: var(--ps-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--ps-mint-dark) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ps-blog-card-meta {
  display: flex;
  justify-content: space-between;
  padding: 10px 18px;
  background: var(--ps-mint-light);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ps-mint-dark) !important;
}

.ps-blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ps-mint-dark) !important;
}

.ps-blog-card-meta i {
  font-size: 0.85rem;
  color: var(--ps-mint-dark) !important;
}

.ps-blog-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ps-blog-card-body h5 {
  font-size: 1.05rem !important;
  line-height: 1.4;
  margin-bottom: 8px;
  min-height: auto !important;
}

.ps-blog-card-body h5 a {
  color: var(--ps-text) !important;
}

.ps-blog-card-body h5 a:hover {
  color: var(--ps-pink-dark) !important;
}

.ps-blog-card-body p {
  font-size: 0.88rem;
  color: var(--ps-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.ps-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ps-mint-dark) !important;
  transition: var(--ps-transition-fast);
  text-decoration: none !important;
}

.ps-blog-read-more:hover {
  color: var(--ps-pink-dark) !important;
  gap: 10px;
}

/* Filter Buttons */
.ps-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ps-white) !important;
  color: var(--ps-text) !important;
  padding: 10px 20px !important;
  border-radius: var(--ps-radius-pill) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  border: 2px solid var(--ps-mint-light) !important;
  transition: var(--ps-transition-fast) !important;
}

.ps-filter-btn:hover,
.ps-filter-btn:focus {
  background: var(--ps-mint-light) !important;
  border-color: var(--ps-mint) !important;
  color: var(--ps-mint-dark) !important;
}

/* Blog Pagination */
.ps-blogs-page .pagination .page-link,
.ps-blogs-page .pagination li a,
.ps-blogs-page .pagination li button {
  border-radius: 14px !important;
  margin: 0 3px;
  padding: 8px 16px;
  border: 2px solid var(--ps-mint-light) !important;
  color: var(--ps-text) !important;
  font-weight: 600;
  background: var(--ps-white) !important;
  transition: var(--ps-transition-fast);
}

.ps-blogs-page .pagination .page-item.active .page-link,
.ps-blogs-page .pagination li.active a,
.ps-blogs-page .pagination li.active button {
  background: var(--ps-mint) !important;
  border-color: var(--ps-mint) !important;
  color: var(--ps-white) !important;
}

/* Override old blog styles */
.blogContent .border {
  border: none !important;
  border-radius: 0 !important;
}

.blog-writer-article-title h4 {
  color: var(--ps-text) !important;
}

.blog-inner {
  border-radius: var(--ps-radius) !important;
  overflow: hidden;
  box-shadow: var(--ps-shadow-soft) !important;
  border: none !important;
}

/* ============================================================
   BLOG DETAIL PAGE — Matching Blog Listing Design
   ============================================================ */

.ps-blog-detail-card {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  overflow: hidden;
  box-shadow: var(--ps-shadow-soft);
  border: 2px solid transparent;
  transition: var(--ps-transition);
}

.ps-blog-detail-card:hover {
  border-color: var(--ps-mint-light);
  box-shadow: var(--ps-shadow);
}

.ps-blog-detail-image {
  position: relative;
  overflow: hidden;
  max-height: 480px;
}

.ps-blog-detail-image img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.ps-blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 14px 24px;
  background: var(--ps-mint-light);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ps-mint-dark);
}

.ps-blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ps-mint-dark);
}

.ps-blog-detail-meta span i {
  font-size: 0.88rem;
  color: var(--ps-mint-dark);
}

.ps-blog-detail-content {
  padding: 28px 28px 16px;
  line-height: 1.85;
  color: var(--ps-text-light);
  font-size: 0.96rem;
}

.ps-blog-detail-content h2,
.ps-blog-detail-content h3,
.ps-blog-detail-content h4 {
  color: var(--ps-text);
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.ps-blog-detail-content h2 {
  font-size: 1.4rem;
}

.ps-blog-detail-content h3 {
  font-size: 1.2rem;
}

.ps-blog-detail-content h4 {
  font-size: 1.05rem;
}

.ps-blog-detail-content p {
  margin-bottom: 1rem;
  line-height: 1.85;
}

.ps-blog-detail-content ul,
.ps-blog-detail-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.ps-blog-detail-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.ps-blog-detail-content img {
  max-width: 100%;
  border-radius: var(--ps-radius-sm);
  margin: 1rem 0;
}

.ps-blog-detail-content blockquote {
  border-left: 4px solid var(--ps-mint);
  background: var(--ps-mint-light);
  padding: 16px 20px;
  border-radius: 0 var(--ps-radius-sm) var(--ps-radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ps-mint-dark);
}

/* --- Table of Contents (TOC) --- */
.ps-toc-card {
  position: sticky;
  top: 20px;
  z-index: 10;
}

.ps-toc-nav {
  padding: 12px 16px;
  max-height: 55vh;
  overflow-y: auto;
}

.ps-toc-nav::-webkit-scrollbar {
  width: 3px;
}

.ps-toc-nav::-webkit-scrollbar-thumb {
  background: var(--ps-mint-light);
  border-radius: 10px;
}

.ps-toc-nav a {
  display: block;
  padding: 6px 0 6px 0;
  font-size: 0.85rem;
  color: var(--ps-text-light);
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: var(--ps-transition-fast);
  line-height: 1.4;
}

.ps-toc-nav a:hover {
  color: var(--ps-pink-dark);
  border-left-color: var(--ps-pink-dark);
}

.ps-toc-nav a.active {
  color: var(--ps-pink-dark);
  font-weight: 700;
  border-left-color: var(--ps-pink-dark);
  background: var(--ps-pink-light);
  border-radius: 0 8px 8px 0;
}

.ps-toc-nav a.ps-toc-h3 {
  padding-left: 22px;
  font-size: 0.82rem;
}

.ps-toc-nav a.ps-toc-h4 {
  padding-left: 34px;
  font-size: 0.78rem;
}

.ps-blog-detail-footer {
  padding: 20px 28px 28px;
  text-align: center;
}

.ps-blog-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--ps-mint);
  color: var(--ps-white) !important;
  border-radius: var(--ps-radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none !important;
  transition: var(--ps-transition-fast);
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.4);
}

.ps-blog-back-btn:hover {
  background: var(--ps-mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 230, 207, 0.6);
  color: var(--ps-white) !important;
}

@media (max-width: 991.98px) {
  .ps-blog-detail-content {
    padding: 20px 18px 12px;
  }

  .ps-blog-detail-footer {
    padding: 16px 18px 24px;
  }

  .ps-blog-detail-meta {
    padding: 12px 18px;
    gap: 4px 12px;
    font-size: 0.8rem;
  }
}

/* ============================================================
   FOOTER — Fix wave colors for pastel theme
   ============================================================ */
.ps-footer {
  background: linear-gradient(180deg, #1b1d35 0%, #151729 100%) !important;
}

.ps-footer .footer-social-icon a {
  color: var(--ps-white) !important;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(168, 230, 207, 0.15);
  transition: var(--ps-transition-fast);
}

.ps-footer .footer-social-icon a:hover {
  background: var(--ps-mint);
  color: var(--ps-text) !important;
  transform: translateY(-3px);
}

/* ============================================================
   PAGE HEADER BANNER (for sub-pages)
   ============================================================ */
.ps-page-header {
  background: var(--ps-bg);
  padding: 140px 0 40px;
  text-align: center;
  position: relative;
  margin-top: 0;
}

.ps-page-header h1 {
  font-size: 2.5rem !important;
  margin-bottom: 0.5rem;
}

.ps-page-header p {
  color: var(--ps-text-light);
  font-size: 1.1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .ps-hero h1 {
    font-size: 2.4rem !important;
  }

  .ps-hero .ps-hero-image {
    margin-top: 2rem;
    text-align: center;
  }

  /* Hero Gallery — tablet */
  .ps-hero-gallery {
    max-width: 400px;
    height: 400px;
    margin: 2rem auto 0;
  }

  .ps-pol-1 {
    width: 200px;
  }

  .ps-pol-1 .ps-polaroid-img {
    height: 200px;
  }

  .ps-pol-2 {
    width: 140px;
  }

  .ps-pol-2 .ps-polaroid-img {
    height: 130px;
  }

  .ps-pol-3 {
    width: 135px;
  }

  .ps-pol-3 .ps-polaroid-img {
    height: 125px;
  }

  .ps-pol-4 {
    width: 115px;
  }

  .ps-pol-4 .ps-polaroid-img {
    height: 100px;
  }

  .ps-hero-stats {
    justify-content: center;
  }

  /* Hide bigger doodles on tablet */
  .ps-hd-sun {
    width: 60px;
    height: 60px;
  }

  .ps-hd-cloud-2,
  .ps-hd-rainbow,
  .ps-hd-dots,
  .ps-hd-abc {
    display: none;
  }

  .ps-about-features {
    grid-template-columns: 1fr;
  }

  .ps-section-title {
    font-size: 2rem;
  }

  .ps-nav-cta {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .ps-hero .ps-hero-content {
    padding-top: 100px;
  }

  .about-slide-two {
    margin: 2rem 1rem !important;
    padding: 2rem !important;
  }
}

@media (max-width: 576px) {
  .ps-hero h1 {
    font-size: 1.9rem !important;
  }

  .ps-hero-stats {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  /* Minimal doodles on phone */
  .ps-hero-doodle {
    opacity: 0.12;
  }

  .ps-hd-sun {
    width: 45px;
    height: 45px;
    top: 40px;
  }

  .ps-hd-heart-2,
  .ps-hd-star-3,
  .ps-hd-balloon-2,
  .ps-hd-circle-2,
  .ps-hd-zigzag {
    display: none;
  }

  /* Hero Gallery — mobile */
  .ps-hero-gallery {
    max-width: 300px;
    height: 340px;
    margin: 1.5rem auto 0;
    perspective: 600px;
  }

  .ps-pol-1 {
    width: 170px;
  }

  .ps-pol-1 .ps-polaroid-img {
    height: 170px;
  }

  .ps-pol-2 {
    width: 120px;
    left: -2%;
  }

  .ps-pol-2 .ps-polaroid-img {
    height: 110px;
  }

  .ps-pol-3 {
    width: 115px;
  }

  .ps-pol-3 .ps-polaroid-img {
    height: 105px;
  }

  .ps-pol-4 {
    display: none;
  }

  .ps-section-title {
    font-size: 1.6rem;
  }

  .ps-registration {
    padding: 1.5rem;
  }

  .contactForm {
    padding: 1.5rem;
  }
}

/* ============================================================
   LOGO BUTTERFLY — Footer logo üstünde sabit, kanat çırpan, renk değiştiren
   ============================================================ */
.ps-footer-logo-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.ps-logo-bf {
  position: absolute;
  top: -14px;
  left: 8px;
  pointer-events: none;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.15));
  overflow: visible;
}

/* Wings */
.ps-logo-bf-wt-l,
.ps-logo-bf-wt-r {
  transform-origin: 32px 30px;
}

.ps-logo-bf-wb-l,
.ps-logo-bf-wb-r {
  transform-origin: 32px 30px;
}

/* Kanat çırpma — cursor kelebeğiyle aynı */
.ps-logo-bf-wt-l {
  animation: bfFlapTL 0.22s ease-in-out infinite alternate;
}

.ps-logo-bf-wt-r {
  animation: bfFlapTR 0.22s ease-in-out infinite alternate;
}

.ps-logo-bf-wb-l {
  animation: bfFlapBL 0.22s ease-in-out infinite alternate;
}

.ps-logo-bf-wb-r {
  animation: bfFlapBR 0.22s ease-in-out infinite alternate;
}

/* Yavaş renk değişimi — üst kanatlar */
.ps-logo-bf-wt-l,
.ps-logo-bf-wt-r {
  animation:
    bfFlapTL 0.22s ease-in-out infinite alternate,
    logoBfColorW1 12s ease-in-out infinite;
}

.ps-logo-bf-wt-r {
  animation:
    bfFlapTR 0.22s ease-in-out infinite alternate,
    logoBfColorW1 12s ease-in-out infinite;
}

/* Alt kanatlar */
.ps-logo-bf-wb-l {
  animation:
    bfFlapBL 0.22s ease-in-out infinite alternate,
    logoBfColorW2 12s ease-in-out infinite;
}

.ps-logo-bf-wb-r {
  animation:
    bfFlapBR 0.22s ease-in-out infinite alternate,
    logoBfColorW2 12s ease-in-out infinite;
}

/* Gövde & baş renk değişimi */
.ps-logo-bf-body,
.ps-logo-bf-head {
  animation: logoBfColorBody 12s ease-in-out infinite;
}

/* Noktalar */
.ps-logo-bf-spot {
  animation: logoBfColorSpot 12s ease-in-out infinite;
}

/* Kanat renk döngüsü: mint → pembe → mavi → sarı → lavender → mint */
@keyframes logoBfColorW1 {
  0%,
  100% {
    fill: #a8e6cf;
  }

  20% {
    fill: #ffb7c5;
  }

  40% {
    fill: #b5d5ff;
  }

  60% {
    fill: #fff4b8;
  }

  80% {
    fill: #d5c6ff;
  }
}

@keyframes logoBfColorW2 {
  0%,
  100% {
    fill: #6bc5a0;
  }

  20% {
    fill: #e8899e;
  }

  40% {
    fill: #7aafef;
  }

  60% {
    fill: #f5d84a;
  }

  80% {
    fill: #b5a3e8;
  }
}

@keyframes logoBfColorBody {
  0%,
  100% {
    fill: #4a9e7a;
  }

  20% {
    fill: #c46a80;
  }

  40% {
    fill: #5a8ac4;
  }

  60% {
    fill: #d4b630;
  }

  80% {
    fill: #8a7abf;
  }
}

@keyframes logoBfColorSpot {
  0%,
  100% {
    fill: #ffb7c5;
  }

  20% {
    fill: #b5d5ff;
  }

  40% {
    fill: #a8e6cf;
  }

  60% {
    fill: #d5c6ff;
  }

  80% {
    fill: #fff4b8;
  }
}

/* Yukarı-aşağı hafif yüzme */
.ps-logo-bf {
  animation: logoBfFloat 3.5s ease-in-out infinite;
}

@keyframes logoBfFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(-4deg);
  }

  50% {
    transform: translateY(-6px) rotate(4deg);
  }
}

/* Mobilde gizle */
@media (max-width: 767px) {
  .ps-logo-bf {
    display: none;
  }
}

/* ============================================================
   BUTTERFLY CURSOR COMPANION
   ============================================================ */
.ps-butterfly {
  position: fixed;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
  --bf-flap-dur: 0.2s;
}

.ps-bf-svg {
  display: block;
  overflow: visible;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
}

/* Wings */
.ps-bf-wt-l,
.ps-bf-wt-r,
.ps-bf-wb-l,
.ps-bf-wb-r {
  transition: fill 0.8s ease;
  transform-origin: 32px 30px;
}

/* Wing flap — flying (duration driven by JS --bf-flap-dur from movement speed) */
.ps-bf-wt-l {
  animation: bfFlapTL var(--bf-flap-dur, 0.2s) ease-in-out infinite alternate;
}

.ps-bf-wt-r {
  animation: bfFlapTR var(--bf-flap-dur, 0.2s) ease-in-out infinite alternate;
}

.ps-bf-wb-l {
  animation: bfFlapBL var(--bf-flap-dur, 0.2s) ease-in-out infinite alternate;
}

.ps-bf-wb-r {
  animation: bfFlapBR var(--bf-flap-dur, 0.2s) ease-in-out infinite alternate;
}

@keyframes bfFlapTL {
  0% {
    transform: perspective(120px) rotateY(0deg);
  }

  100% {
    transform: perspective(120px) rotateY(50deg);
  }
}

@keyframes bfFlapTR {
  0% {
    transform: perspective(120px) rotateY(0deg);
  }

  100% {
    transform: perspective(120px) rotateY(-50deg);
  }
}

@keyframes bfFlapBL {
  0% {
    transform: perspective(120px) rotateY(0deg);
  }

  100% {
    transform: perspective(120px) rotateY(40deg);
  }
}

@keyframes bfFlapBR {
  0% {
    transform: perspective(120px) rotateY(0deg);
  }

  100% {
    transform: perspective(120px) rotateY(-40deg);
  }
}

/* Konma: önce süzülme (açık), sonra yavaş kapanış; menteşe = kanat iç kenarı */
.ps-bf-landed .ps-bf-svg {
  animation: bfLandFloat 3.6s ease-in-out 1.35s infinite;
  transform-origin: 32px 54px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

@keyframes bfLandFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-1.5px) rotate(0.5deg);
  }
}

.ps-bf-landed .ps-bf-wt-l,
.ps-bf-landed .ps-bf-wt-r,
.ps-bf-landed .ps-bf-wb-l,
.ps-bf-landed .ps-bf-wb-r {
  transform-box: fill-box;
}

.ps-bf-landed .ps-bf-wt-l,
.ps-bf-landed .ps-bf-wb-l {
  transform-origin: right center;
}

.ps-bf-landed .ps-bf-wt-r,
.ps-bf-landed .ps-bf-wb-r {
  transform-origin: left center;
}

/* ~0.9s açık duraklama, ardından ~1.9s yavaş kapanış (toplam ~2.8s) */
.ps-bf-landed .ps-bf-wt-l {
  animation: bfLandSeqTL 2.8s cubic-bezier(0.42, 0, 0.2, 1) 0s 1 normal forwards;
}

.ps-bf-landed .ps-bf-wt-r {
  animation: bfLandSeqTR 2.8s cubic-bezier(0.42, 0, 0.2, 1) 0s 1 normal forwards;
}

.ps-bf-landed .ps-bf-wb-l {
  animation: bfLandSeqBL 2.95s cubic-bezier(0.42, 0, 0.2, 1) 0s 1 normal forwards;
}

.ps-bf-landed .ps-bf-wb-r {
  animation: bfLandSeqBR 2.95s cubic-bezier(0.42, 0, 0.2, 1) 0s 1 normal forwards;
}

@keyframes bfLandSeqTL {
  0%,
  32% {
    transform: perspective(180px) rotateY(0deg) scale(1, 1);
  }

  38% {
    transform: perspective(180px) rotateY(10deg) scale(1, 1);
  }

  62% {
    transform: perspective(180px) rotateY(32deg) scale(0.98, 0.99);
  }

  82% {
    transform: perspective(180px) rotateY(48deg) scale(0.96, 0.99);
  }

  100% {
    transform: perspective(180px) rotateY(56deg) scale(0.95, 0.99);
  }
}

@keyframes bfLandSeqTR {
  0%,
  32% {
    transform: perspective(180px) rotateY(0deg) scale(1, 1);
  }

  38% {
    transform: perspective(180px) rotateY(-10deg) scale(1, 1);
  }

  62% {
    transform: perspective(180px) rotateY(-32deg) scale(0.98, 0.99);
  }

  82% {
    transform: perspective(180px) rotateY(-48deg) scale(0.96, 0.99);
  }

  100% {
    transform: perspective(180px) rotateY(-56deg) scale(0.95, 0.99);
  }
}

@keyframes bfLandSeqBL {
  0%,
  34% {
    transform: perspective(180px) rotateY(0deg) scale(1, 1);
  }

  40% {
    transform: perspective(180px) rotateY(8deg) scale(1, 1);
  }

  65% {
    transform: perspective(180px) rotateY(26deg) scale(0.98, 1);
  }

  85% {
    transform: perspective(180px) rotateY(40deg) scale(0.97, 1);
  }

  100% {
    transform: perspective(180px) rotateY(48deg) scale(0.96, 1);
  }
}

@keyframes bfLandSeqBR {
  0%,
  34% {
    transform: perspective(180px) rotateY(0deg) scale(1, 1);
  }

  40% {
    transform: perspective(180px) rotateY(-8deg) scale(1, 1);
  }

  65% {
    transform: perspective(180px) rotateY(-26deg) scale(0.98, 1);
  }

  85% {
    transform: perspective(180px) rotateY(-40deg) scale(0.97, 1);
  }

  100% {
    transform: perspective(180px) rotateY(-48deg) scale(0.96, 1);
  }
}

.ps-bf-landed .ps-bf-spot {
  animation: bfLandSpotDim 2.8s ease forwards;
}

@keyframes bfLandSpotDim {
  0%,
  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 0.3;
  }
}

/* Body & details */
.ps-bf-body,
.ps-bf-head {
  transition: fill 0.8s ease;
}

.ps-bf-spot {
  opacity: 0.6;
  transition:
    fill 0.8s ease,
    opacity 0.45s ease;
}

.ps-bf-ant {
  fill: none;
  stroke: rgba(0, 0, 0, 0.3);
  stroke-width: 1.2;
  stroke-linecap: round;
}

.ps-bf-ant-tip {
  transition: fill 0.8s ease;
}

/* Hide on mobile/tablet */
@media (max-width: 767px) {
  .ps-butterfly {
    display: none !important;
  }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ps-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--ps-mint);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ps-mint-dark);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Override original style.css where needed */
.top-padding {
  padding-top: 0 !important;
}

.top-margin {
  margin-top: 0 !important;
}

/* ── Yasal / Politika Sayfaları ── */
.ps-legal-content {
  color: var(--ps-text);
  line-height: 1.7;
}
.ps-legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ps-text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.ps-legal-content h2:first-of-type {
  margin-top: 0;
}
.ps-legal-content p,
.ps-legal-content ul {
  margin-bottom: 1rem;
}
.ps-legal-content ul {
  padding-left: 1.5rem;
}
.ps-legal-content a {
  color: var(--ps-mint-dark);
  text-decoration: underline;
}
.ps-legal-updated {
  font-size: 0.9rem;
  color: var(--ps-text-muted);
  margin-bottom: 1.5rem;
}

/* İç sayfa üst boşluk: artık `main` padding-top ile (galeri vb. ek sınıf gerekmez) */

/* ============================================================
   Akademik kadro — başlık bandı + kartlar
   ============================================================ */
.ps-team-page {
  background: var(--ps-bg);
  position: relative;
  overflow: hidden;
}

.ps-inner-page-head {
  padding-top: calc(var(--ps-nav-height, 88px) + 0.85rem + 3.25rem);
  padding-bottom: 2.25rem;
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(165deg, rgba(168, 230, 207, 0.35) 0%, rgba(186, 230, 253, 0.2) 42%, var(--ps-bg) 88%);
  position: relative;
}

@media (min-width: 992px) {
  .ps-inner-page-head {
    padding-top: calc(var(--ps-nav-height, 88px) + 0.85rem + 4rem);
    padding-bottom: 2.75rem;
  }
}

/* Statik: Eğitim Yaklaşımımız / Öğrenme Ortamlarımız (accordion) */
.ps-static-acc-page {
  background: var(--ps-white);
  position: relative;
  overflow: hidden;
}

/* İlgili sayfalar — kart bağlantılar */
.ps-static-nav-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .ps-static-nav-cards--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 42rem;
  }
}

@media (min-width: 768px) {
  .ps-static-nav-cards--trio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: min(56rem, 100%);
  }
}

.ps-static-nav-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0.95rem;
  border-radius: 18px;
  background: var(--ps-white);
  border: 1px solid rgba(168, 230, 207, 0.5);
  text-decoration: none !important;
  color: var(--ps-text) !important;
  box-shadow: var(--ps-shadow-soft);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.ps-static-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(45, 45, 63, 0.1);
  border-color: rgba(168, 230, 207, 0.95);
}

.ps-static-nav-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.12rem;
  color: #fff;
}

.ps-static-nav-card__icon--mint {
  background: linear-gradient(145deg, var(--ps-mint-dark) 0%, var(--ps-mint) 100%);
}

.ps-static-nav-card__icon--sun {
  background: linear-gradient(145deg, var(--ps-soft-yellow-dark) 0%, var(--ps-soft-yellow) 100%);
  color: var(--ps-text) !important;
}

.ps-static-nav-card__icon--sky {
  background: linear-gradient(145deg, var(--ps-baby-blue-dark) 0%, var(--ps-baby-blue) 100%);
  color: #1e293b !important;
}

.ps-static-nav-card__body {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.ps-static-nav-card__title {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.96rem;
  line-height: 1.2;
  display: block;
}

.ps-static-nav-card__hint {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ps-text-light);
  display: block;
  margin-top: 0.15rem;
  line-height: 1.35;
}

.ps-static-nav-card__go {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 230, 207, 0.4);
  color: var(--ps-mint-dark);
  font-size: 0.82rem;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.ps-static-nav-card:hover .ps-static-nav-card__go {
  background: linear-gradient(135deg, var(--ps-main) 0%, var(--ps-main-mid) 100%);
  color: #fff;
}

.ps-bk-hero .ps-static-nav-cards--in-hero {
  margin-top: 0.15rem;
}

.ps-bk-hero .ps-static-nav-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(3px);
  box-shadow: 0 16px 34px rgba(10, 22, 34, 0.26);
}

.ps-bk-hero .ps-section-badge {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ps-main-deep);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.ps-static-acc-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ps-text-light);
  line-height: 1.55;
}

.ps-static-acc-accordion {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.ps-static-acc-accordion .accordion-item {
  border: none !important;
  margin-bottom: 0.75rem;
  border-radius: var(--ps-radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--ps-shadow-soft);
}

.ps-static-acc-accordion .accordion-button {
  font-family: "Nunito", sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  color: var(--ps-text) !important;
  background: var(--ps-white) !important;
  border-radius: var(--ps-radius-sm) !important;
  padding: 1rem 1.15rem !important;
  box-shadow: none !important;
  line-height: 1.35;
}

.ps-static-acc-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--ps-mint-light) 0%, #fff 100%) !important;
  color: var(--ps-text) !important;
}

.ps-static-acc-accordion .accordion-button:focus {
  box-shadow: 0 0 0 2px rgba(168, 230, 207, 0.65) !important;
}

.ps-static-acc-btn-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.2rem;
  width: 100%;
  padding-right: 1.5rem;
}

.ps-static-acc-idx {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ps-mint-dark);
}

.ps-static-acc-title {
  font-family: "Baloo 2", sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  color: var(--ps-text) !important;
}

.ps-static-acc-tease {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ps-text-light);
}

.ps-static-acc-accordion .accordion-body {
  padding: 1rem 1.2rem 1.15rem !important;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ps-text);
  background: var(--ps-white);
}

.ps-team-group-title {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ps-mint-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px dashed rgba(168, 230, 207, 0.85);
  text-align: center;
}

@media (min-width: 768px) {
  .ps-team-group-title {
    text-align: left;
  }
}

.ps-team-card {
  background: var(--ps-white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(168, 230, 207, 0.35);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.ps-team-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 48px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(244, 114, 182, 0.25);
}

.ps-team-card__photo {
  position: relative;
  height: 200px;
  background: linear-gradient(145deg, var(--ps-mint-light) 0%, var(--ps-baby-blue-light) 55%, var(--ps-pink-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.ps-team-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.45) 0%, transparent 55%);
  pointer-events: none;
}

.ps-team-card__photo img {
  position: relative;
  z-index: 1;
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--ps-white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.ps-team-card--placeholder .ps-team-card__photo img {
  object-fit: contain;
  padding: 18px;
  background: var(--ps-white);
}

.ps-team-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.ps-team-card__name {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ps-text);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.ps-team-card__role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ps-pink-dark);
  margin: 0 0 0.75rem;
}

.ps-team-card__bio {
  font-size: 0.9rem;
  color: var(--ps-text-light);
  line-height: 1.65;
  margin: 0 0 0.65rem;
}

.ps-team-card__credentials {
  font-size: 0.82rem;
  color: var(--ps-text-muted);
  line-height: 1.55;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(15, 23, 42, 0.08);
}

/* ============================================================
   KOZ-2 — Tam ekran hero slider + koyu arka plan üstünde navbar
   ============================================================ */
/* KOZ-2: üst blok — padding ana NAVBAR bölümüyle aynı (çifte yükseklik sıçraması olmasın) */
.ps-navbar {
  position: fixed; /* Fixed by default to avoid jumpy transitions */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.2rem 0 !important;
  background: transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled state */
.ps-navbar.scrolled {
  background: #ffffff;
  padding: 0.2rem 0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Sadece üst sıradaki linkler beyaz; açılır menü içi ayrı kurallarda koyu */
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-nav-links > .nav-item > .nav-link,
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .navbar-brand,
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-brand-text {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  transition:
    color 0.4s ease-in-out,
    text-shadow 0.4s ease-in-out !important;
}

/* Açılır / iç içe menü: beyaz kart — her zaman koyu metin */
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .dropdown-menu .dropdown-item,
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .dropdown-menu .nav-link,
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .dropdown-menu .dropdown-toggle {
  color: var(--ps-text) !important;
  text-shadow: none !important;
}

/* İç içe satır: varsayılan koyu yazı kuralını aşarak hover / açık durum (mevcut pembe/mint) */
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .dropdown-menu .dropdown:hover > .dropdown-toggle,
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .dropdown-menu .dropdown.show > .dropdown-toggle {
  color: var(--ps-pink-dark) !important;
  background: var(--ps-pink-light) !important;
}

.ps-navbar.ps-navbar--on-dark:not(.scrolled) .dropdown-menu .dropdown-item:hover,
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .dropdown-menu .dropdown-item:focus {
  color: var(--ps-mint-dark) !important;
  background: var(--ps-mint-light) !important;
}

/* Üst sıra: şeffaf bar üzerinde hover (pembe yazı + açık zemin yerine) */
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-nav-links > .nav-item > .nav-link:hover,
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-nav-links > .nav-item > .nav-link:focus-visible,
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-nav-links > .nav-item > .nav-link:focus {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.16) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-nav-links > .nav-item.dropdown > .nav-link.dropdown-toggle::after {
  border-right-color: rgba(255, 255, 255, 0.78) !important;
  border-bottom-color: rgba(255, 255, 255, 0.78) !important;
}

.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-nav-links > .nav-item.dropdown:hover > .nav-link.dropdown-toggle::after,
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-nav-links > .nav-item.dropdown.show > .nav-link.dropdown-toggle::after {
  border-right-color: #fff !important;
  border-bottom-color: #fff !important;
}

.ps-navbar.ps-navbar--on-dark .ps-nav-phone-sm {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff !important;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.38) !important;
  background: rgba(255, 255, 255, 0.16) !important;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none !important;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease !important;
}

.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-nav-phone-sm:hover {
  background: rgba(255, 255, 255, 0.26) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  transform: translateY(-2px);
}

.ps-navbar.ps-navbar--on-dark .ps-nav-phone,
.ps-navbar.ps-navbar--on-dark .ps-nav-cta {
  transition:
    color 0.4s ease-in-out,
    background 0.4s ease-in-out,
    border-color 0.4s ease-in-out !important;
}

/* Masaüstü telefon (metin + ikon): şeffaf bar + koyu hero — nav linkleriyle aynı kontrast */
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-nav-phone {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-nav-phone i {
  color: rgba(255, 255, 255, 0.92) !important;
}

.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-nav-phone:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
  color: #fff !important;
}

.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-nav-phone:hover i {
  color: #fff !important;
}

.ps-navbar.ps-navbar--on-dark.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ps-navbar.ps-navbar--on-dark.scrolled .ps-nav-links > .nav-item > .nav-link,
.ps-navbar.ps-navbar--on-dark.scrolled .navbar-brand,
.ps-navbar.ps-navbar--on-dark.scrolled .ps-brand-text {
  color: var(--ps-text) !important;
  text-shadow: none !important;
}

.ps-navbar.ps-navbar--on-dark.scrolled .dropdown-menu .dropdown-item,
.ps-navbar.ps-navbar--on-dark.scrolled .dropdown-menu .nav-link,
.ps-navbar.ps-navbar--on-dark.scrolled .dropdown-menu .dropdown-toggle {
  color: var(--ps-text) !important;
  text-shadow: none !important;
}

.ps-navbar.ps-navbar--on-dark.scrolled .ps-nav-phone {
  color: var(--ps-text) !important;
  text-shadow: none !important;
  border-color: var(--ps-mint) !important;
}

.ps-navbar.ps-navbar--on-dark.scrolled .ps-nav-phone i {
  color: var(--ps-mint-dark) !important;
}

.ps-navbar.ps-navbar--on-dark.scrolled .ps-nav-phone:hover {
  background: var(--ps-mint-light) !important;
  border-color: var(--ps-mint-dark) !important;
  color: var(--ps-text) !important;
}

.ps-navbar.ps-navbar--on-dark.scrolled .ps-nav-phone:hover i {
  color: var(--ps-mint-dark) !important;
}

.ps-navbar.ps-navbar--on-dark.scrolled .ps-nav-phone-sm {
  color: var(--ps-lavender-light) !important;
  border: 1.5px solid rgba(137, 229, 232, 0.45) !important;
  background: linear-gradient(165deg, #ffffff 0%, var(--ps-baby-blue-dark) 100%) !important;
  box-shadow:
    0 2px 12px rgba(137, 221, 232, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Şeffaf bar: mobil menü + telefon — cam kart */
.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-hamburger {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-hamburger:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.48) !important;
}

.ps-navbar.ps-navbar--on-dark:not(.scrolled) .ps-hamburger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.24) !important;
  border-color: rgba(255, 255, 255, 0.52) !important;
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Hamburger çizgileri (on-dark) */
.ps-navbar.ps-navbar--on-dark .ps-hamburger span {
  background: #fff !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  transition:
    background 0.35s ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease !important;
}

.ps-navbar.ps-navbar--on-dark.scrolled .ps-hamburger span {
  background: linear-gradient(90deg, var(--ps-text) 0%, var(--ps-mint-dark) 100%) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* ── Navbar: Light Theme for Light Slides (e.g. Polaroid/Doodle) ── */
.ps-navbar.ps-navbar--on-light:not(.scrolled) .nav-link,
.ps-navbar.ps-navbar--on-light:not(.scrolled) .navbar-brand,
.ps-navbar.ps-navbar--on-light:not(.scrolled) .ps-brand-text,
.ps-navbar.ps-navbar--on-light:not(.scrolled) .dropdown-toggle {
  color: #1e293b;
}

.ps-navbar.ps-navbar--on-light:not(.scrolled) .ps-nav-phone-sm {
  color: #1e293b !important;
  border: 1.5px solid rgba(30, 41, 59, 0.14) !important;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 100%) !important;
  box-shadow:
    0 2px 12px rgba(30, 41, 59, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.ps-navbar.ps-navbar--on-light:not(.scrolled) .ps-nav-phone {
  color: #1e293b !important;
  text-shadow: none !important;
}

.ps-navbar.ps-navbar--on-light:not(.scrolled) .ps-nav-phone i {
  color: #64748b !important;
}

.ps-navbar.ps-navbar--on-light:not(.scrolled) .ps-hamburger span {
  background: #1e293b !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/*
 * Anasayfa: hem --on-dark (slider var) hem --on-light (polaroid slayt) aynı anda.
 * --on-dark tek başına #fff !important verir; şeffaf navbar + açık zemin için koyu metin şart.
 */
.ps-navbar.ps-navbar--on-dark.ps-navbar--on-light:not(.scrolled) .ps-nav-links > .nav-item > .nav-link,
.ps-navbar.ps-navbar--on-dark.ps-navbar--on-light:not(.scrolled) .navbar-brand,
.ps-navbar.ps-navbar--on-dark.ps-navbar--on-light:not(.scrolled) .ps-brand-text {
  color: #1e293b !important;
  text-shadow: none !important;
}

.ps-navbar.ps-navbar--on-dark.ps-navbar--on-light:not(.scrolled) .ps-nav-links .nav-link i {
  opacity: 0.75;
}

.ps-navbar.ps-navbar--on-dark.ps-navbar--on-light:not(.scrolled) .ps-nav-links .dropdown > .nav-link.dropdown-toggle::after {
  border-right-color: #64748b !important;
  border-bottom-color: #64748b !important;
}

.ps-navbar.ps-navbar--on-dark.ps-navbar--on-light:not(.scrolled) .ps-nav-phone-sm {
  color: #1e293b !important;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1.5px solid rgba(30, 41, 59, 0.12) !important;
  box-shadow:
    0 2px 14px rgba(30, 41, 59, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ps-navbar.ps-navbar--on-dark.ps-navbar--on-light:not(.scrolled) .ps-nav-phone {
  color: #1e293b !important;
  text-shadow: none !important;
  border-color: rgba(30, 41, 59, 0.22) !important;
}

.ps-navbar.ps-navbar--on-dark.ps-navbar--on-light:not(.scrolled) .ps-nav-phone i {
  color: #64748b !important;
}

.ps-navbar.ps-navbar--on-dark.ps-navbar--on-light:not(.scrolled) .ps-hamburger span {
  background: #1e293b !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.ps-hero-fullscreen {
  position: relative;
  /* vh/dvh bazen masaüstünde gerçek görünür alandan kısa kalır; preschool-hero-slider.js --ps-hero-viewport-h yazar */
  min-height: 100vh;
  min-height: 100dvh;
  min-height: var(--ps-hero-viewport-h, 100dvh);
  overflow: hidden;
  background: #0f172a;
  outline: none;
  box-sizing: border-box;
}

.ps-hero-fs-track {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.ps-hero-fs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Çıkış: önce opaklık, görünürlük sonda — çapraz solma daha yumuşak */
  transition:
    opacity 1.15s cubic-bezier(0.4, 0, 0.25, 1),
    visibility 0s linear 1.15s;
}

.ps-hero-fs-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  /* Giriş: hemen etkileşim + aynı sürede fade-in */
  transition:
    opacity 1.15s cubic-bezier(0.4, 0, 0.25, 1),
    visibility 0s linear 0s;
}

@media (prefers-reduced-motion: reduce) {
  .ps-hero-fs-slide {
    transition: none;
  }
}

.ps-hero-fs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Animasyon süresi kısaltıldı (3 saniye), ease-out ile yumuşak duruş */
  transition: transform 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}

.ps-hero-fs-slide.is-active .ps-hero-fs-img {
  transform: scale(1.05); /* Yakınlaşma duracak */
}

@media (prefers-reduced-motion: reduce) {
  .ps-hero-fs-img {
    transition: none;
    transform: none !important;
  }
}

.ps-hero-fs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.25) 45%, rgba(15, 23, 42, 0.35) 100%);
  z-index: 2;
  pointer-events: none;
}

.ps-hero-fs-caption {
  position: absolute;
  inset: 0;
  z-index: 3;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--ps-nav-height, 88px) + 1rem) clamp(0.75rem, 2.5vw, 1.5rem) 3rem;
  text-align: center;
}

/* ── Tam ekran hero: içerik kartı (cam / blok) — karmaşık arka planda okunabilirlik ── */
.ps-hero-fs-panel-shell {
  width: 100%;
  max-width: min(48rem, 96vw);
}

.ps-hero-fs-panel-shell--glass {
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2.1rem) clamp(1.25rem, 2.8vw, 1.75rem);
  border-radius: clamp(20px, 4vw, 30px);
  background: linear-gradient(155deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.58) 48%, rgba(30, 41, 59, 0.62) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 0 0 1px rgba(0, 0, 0, 0.06) inset;
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

@media (prefers-reduced-motion: reduce) {
  .ps-hero-fs-panel-shell--glass {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(15, 23, 42, 0.9);
  }
}

.ps-hero-fs-panel-shell--solid {
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2.1rem) clamp(1.25rem, 2.8vw, 1.75rem);
  border-radius: clamp(20px, 4vw, 30px);
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
}

.ps-hero-fs-panel-shell--none {
  max-width: min(50rem, 100%);
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Özel metin kartı: renk / blur / radius admin’den inline; yapı burada */
.ps-hero-fs-panel-shell--custom {
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2.1rem) clamp(1.25rem, 2.8vw, 1.75rem);
  max-width: min(48rem, 96vw);
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  .ps-hero-fs-panel-shell--custom[data-caption-rrm="1"] {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* Özel görsel overlay: gradient + blend inline; yedek ton */
.ps-hero-fs-overlay--custom {
  pointer-events: none;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.28) 100%);
  mix-blend-mode: normal;
}

.ps-hero-fs-panel-shell .ps-hero-fs-titleblock {
  max-width: 100%;
  margin-bottom: 0.35rem;
}

.ps-hero-fs-panel-shell .ps-hero-fs-title {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35) !important;
}

.ps-hero-fs-panel-shell .ps-hero-fs-substack {
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 100%;
}

.ps-hero-fs-panel-shell--none .ps-hero-fs-substack {
  padding-top: 0.85rem;
  border-top-color: rgba(255, 255, 255, 0.18);
}

/* Tam ekran: CTA şeridi metin kartının dışında (cam/blok sadece metin alanında) */
.ps-hero-fs-cta-strip {
  width: 100%;
  max-width: min(48rem, 96vw);
  margin-top: clamp(0.85rem, 2.2vw, 1.35rem);
  flex-shrink: 0;
}

.ps-hero-fs-caption--left .ps-hero-fs-panel-shell {
  margin-left: 0;
  margin-right: auto;
}

.ps-hero-fs-caption--center .ps-hero-fs-panel-shell {
  margin-left: auto;
  margin-right: auto;
}

.ps-hero-fs-caption--right .ps-hero-fs-panel-shell {
  margin-left: auto;
  margin-right: 0;
}

.ps-hero-fs-titleblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(50rem, 100%);
  margin: 0 0 0.65rem;
}

.ps-hero-fs-titleblock--doodle {
  max-width: 100%;
  align-items: flex-start;
}

.ps-hero-fs-quote-wrap {
  width: 100%;
  max-width: 100%;
}

.ps-hero-fs-title {
  font-family: "Baloo 2", sans-serif !important;
  font-size: clamp(2.15rem, 4.85vw, 4.2rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important; /* Rengine zorlandı */
  margin: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6) !important;
  line-height: 1.15;
  text-align: center;
}

.ps-hero-fs-titleblock--doodle .ps-hero-fs-title {
  text-align: left;
}

.ps-hero-fs-caption--center .ps-hero-fs-titleblock {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.ps-hero-fs-caption--left .ps-hero-fs-titleblock {
  align-items: flex-start;
}

.ps-hero-fs-caption--right .ps-hero-fs-titleblock {
  align-items: flex-end;
}

.ps-hero-fs-caption--left .ps-hero-fs-title {
  text-align: left;
}

.ps-hero-fs-caption--right .ps-hero-fs-title {
  text-align: right;
}

.ps-hero-fs-attribution {
  display: block;
  margin: 0.55rem 0 0;
  padding: 0.55rem 0 0;
  width: 100%;
  box-sizing: border-box;
  text-align: right;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.9vw, 1.3rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(255, 248, 240, 0.94) !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  line-height: 1.35;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  opacity: 0.98;
}

.ps-hero-fs-attribution::before {
  content: "— ";
  opacity: 0.75;
  font-style: normal;
  letter-spacing: 0;
}

.ps-hero-fs-attribution--doodle {
  color: #64748b !important;
  text-shadow: none !important;
  border-top-color: rgba(15, 23, 42, 0.1);
}

.ps-hero-fs-attribution--doodle::before {
  color: var(--ps-main, #f56e28);
  opacity: 0.85;
}

.ps-hero-fs-group .ps-hero-fs-attribution--left {
  text-align: left;
}
.ps-hero-fs-group .ps-hero-fs-attribution--center {
  text-align: center;
}
.ps-hero-fs-group .ps-hero-fs-attribution--right {
  text-align: right;
}

.ps-hero-fs-extra-icon {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.35rem;
  opacity: 0.65;
  pointer-events: none;
  user-select: none;
}

.ps-hero-fs-title .ps-hero-highlight {
  color: #fef08a !important;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}

.ps-hero-fs-title .ps-hero-highlight::after {
  background: rgba(251, 113, 133, 0.55);
  opacity: 1;
  bottom: 4px;
  height: 0.42em;
}

.ps-hero-fs-substack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: min(48rem, 100%);
  margin: 0 auto;
}

.ps-hero-fs-substack--doodle {
  max-width: 100%;
}

.ps-hero-fs-subline {
  font-size: clamp(1.12rem, 2.35vw, 1.45rem);
  margin: 0;
  opacity: 0.95;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
  line-height: 1.55;
}

.ps-hero-fs-subline--lead {
  font-size: clamp(1.2rem, 2.55vw, 1.58rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.58;
  opacity: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.ps-hero-fs-subline--support {
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.62;
  padding-left: 0.55rem;
  border-left: 3px solid rgba(254, 240, 138, 0.75);
  text-align: left;
  margin-top: 0.35rem;
}

.ps-hero-fs-caption--center .ps-hero-fs-subline--support {
  margin-left: auto;
  margin-right: auto;
  max-width: 46rem;
  transform: translateY(0.45rem);
}

.ps-hero-fs-caption--left .ps-hero-fs-subline--support {
  margin-left: 0;
  margin-right: auto;
}

.ps-hero-fs-caption--right .ps-hero-fs-subline--support {
  margin-left: auto;
  margin-right: 0;
  border-left: none;
  border-right: 3px solid rgba(254, 240, 138, 0.75);
  padding-left: 0.65rem;
  padding-right: 0.75rem;
  border-radius: 0 12px 12px 0;
  text-align: right;
}

.ps-hero-fs-panel-shell .ps-hero-fs-subline--support {
  border-left-color: rgba(254, 240, 138, 0.55);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.65rem 0.85rem 0.72rem 0.95rem;
  margin-top: 1.05rem;
  border-radius: 10px 20px 16px 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.ps-hero-fs-caption--right .ps-hero-fs-panel-shell .ps-hero-fs-subline--support {
  border-radius: 18px 12px 14px 20px;
  padding: 0.65rem 0.95rem 0.72rem 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  .ps-hero-fs-caption--center .ps-hero-fs-subline--support {
    transform: none;
  }
}

.ps-hero-fs-subline .ps-hero-highlight {
  color: #fef08a !important;
}

.ps-hero-fs-subline .ps-hero-highlight::after {
  background: rgba(251, 113, 133, 0.45);
  bottom: 2px;
  height: 0.4em;
}

.ps-hero-fs-slide--doodle .ps-hero-fs-subline .ps-hero-highlight {
  color: var(--ps-main, #f56e28) !important;
}

.ps-hero-fs-slide--doodle .ps-hero-fs-subline .ps-hero-highlight::after {
  background: #fef08a;
  opacity: 0.85;
}

.ps-hero-fs-slide--doodle .ps-hero-fs-title {
  color: var(--ps-text, #1e293b) !important;
  text-shadow: none !important;
}

.ps-hero-fs-dots {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 20; /* Önceki değer düşüktü, krem zemin vs üstüne çıkması için artırıldı */
}

.ps-hero-fs-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.8);
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.ps-hero-fs-dots button.is-active {
  background: var(--ps-main, #f56e28);
  border-color: var(--ps-main, #f56e28);
  transform: scale(1.25);
}

.ps-hero-fs-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  opacity: 0.95;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.ps-hero-fs-slide--doodle .ps-hero-fs-sub {
  color: var(--ps-text, #334155) !important;
  text-shadow: none !important;
}

.ps-hero-fs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100; /* Increased to stay above all doodle cards */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.ps-hero-fs-nav:hover,
.ps-hero-fs-nav:focus-visible {
  background: rgba(255, 255, 255, 0.35);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.ps-hero-fs-prev {
  left: 1rem;
}

.ps-hero-fs-next {
  right: 1rem;
}

.ps-hero-fs-nav i {
  font-size: 1.05rem;
  line-height: 1;
}

/* ─── V2 Group-based Layout: Desktop-first ─── */
.ps-hero-fs-layers-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2vw, 1.5rem);
  width: 100%;
  max-width: min(58rem, 96vw);
  margin: 0 auto;
  transition: all 0.5s ease;
}

/* Butonlar en altta: içerik bu bölgede dikey hizalanır, butonlar stack dibinde kalır */
.ps-hero-fs-content-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
}

.ps-hero-fs-group {
  width: 100%;
  max-width: min(58rem, 100%);
  margin-left: auto;
  margin-right: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ps-hero-fs-group--content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ps-hero-fs-group--extra {
  margin-top: 0.25rem;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: saturate(115%);
  -webkit-backdrop-filter: saturate(115%);
}

.ps-hero-fs-extra-content {
  font-size: clamp(1.02rem, 1.95vw, 1.3rem);
  line-height: 1.55;
  font-weight: 500;
}

.ps-hero-fs-group--buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.85rem;
  margin-top: 0.75rem;
  z-index: 5;
}

.ps-hero-fs-buttons--left {
  justify-content: flex-start;
  text-align: left;
  margin-left: 0;
}
.ps-hero-fs-buttons--center {
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.ps-hero-fs-buttons--right {
  justify-content: flex-end;
  text-align: right;
  margin-right: 0;
}

/* Caption alignment for group stacks */
.ps-hero-fs-caption--left .ps-hero-fs-group {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.ps-hero-fs-caption--center .ps-hero-fs-group {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Ek kart: genel "caption ortada" kuralı metni ortalamasın; hizayı inline / sola bırak */
.ps-hero-fs-caption--center .ps-hero-fs-group--extra {
  text-align: start;
}
.ps-hero-fs-caption--right .ps-hero-fs-group {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

.ps-hero-fs-top-title {
  display: block;
  font-size: clamp(0.78rem, 1.5vw, 1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ps-mint-light, #fef08a);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ps-hero-fs-description {
  font-size: clamp(1.28rem, 2.45vw, 1.68rem);
  line-height: 1.58;
  font-weight: 400;
  opacity: 0.92;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin-top: 0.5rem;
}

/* Tam ekran hero — mobil: navbar + safe-area sonrası alanda içeriği dikey ortala; oklar dokununca */
@media (max-width: 767px) {
  .ps-hero-fs-caption {
    min-height: 100dvh;
    min-height: 100vh;
    box-sizing: border-box;
    justify-content: center;
    padding-top: calc(var(--ps-nav-height, 88px) + env(safe-area-inset-top, 0px) + 0.5rem);
    padding-bottom: max(clamp(4.75rem, 14vh, 6.75rem), calc(env(safe-area-inset-bottom, 0px) + 4.25rem));
    padding-left: 1rem;
    padding-right: 1rem;
    gap: clamp(0.65rem, 2.2vh, 1.15rem);
  }

  .ps-hero-fs-panel-shell {
    flex: 0 1 auto;
  }

  .ps-hero-fs-cta-strip {
    margin-top: clamp(1.2rem, 3.8vh, 2rem);
    padding-top: 0;
    flex-shrink: 0;
  }

  .ps-hero-fs-panel-shell .ps-hero-fs-titleblock {
    margin-bottom: clamp(0.35rem, 1.5vh, 0.65rem);
  }

  .ps-hero-fs-title {
    font-size: clamp(1.5rem, 5.55vw + 0.55rem, 3.45rem) !important;
    line-height: 1.18 !important;
  }

  .ps-hero-fs-attribution {
    margin-top: 0.45rem;
    padding-top: 0.45rem;
  }

  .ps-hero-fs-substack {
    gap: clamp(0.75rem, 2.4vh, 1.15rem);
  }

  .ps-hero-fs-panel-shell .ps-hero-fs-substack {
    margin-top: 0.35rem;
  }

  .ps-hero-fs-dots {
    bottom: max(22px, calc(env(safe-area-inset-bottom, 0px) + 16px));
    gap: 10px;
  }

  .ps-hero-fs-dots button {
    width: 14px;
    height: 14px;
  }

  .ps-hero-fs-prev {
    left: 0.65rem;
  }

  .ps-hero-fs-next {
    right: 0.65rem;
  }

  .ps-hero-fs-nav {
    width: 36px;
    height: 36px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%);
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease,
      background 0.2s ease;
  }

  .ps-hero-fs-nav i {
    font-size: 0.85rem;
  }

  .ps-hero-fullscreen--nav-revealed .ps-hero-fs-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .ps-hero-fs-layers-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
    transition: all 0.5s ease;
  }

  .ps-hero-fs-group {
    width: 100%;
    max-width: min(58rem, 100%);
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .ps-hero-fs-group--content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 !important;
  }

  .ps-hero-fs-top-title {
    display: block;
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ps-mint-light, #fef08a);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ps-hero-fs-description {
    font-size: clamp(1.28rem, 2.45vw, 1.62rem);
    line-height: 1.58;
    font-weight: 400;
    opacity: 0.92;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin-top: 0.5rem;
  }

  .ps-hero-fs-group--extra {
    margin-top: 0.5rem;
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.32),
      inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    backdrop-filter: saturate(115%);
    -webkit-backdrop-filter: saturate(115%);
  }

  .ps-hero-fs-extra-content {
    font-size: clamp(0.98rem, 1.92vw, 1.24rem);
    line-height: 1.5;
    font-weight: 500;
  }

  .ps-hero-fs-group--buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
    z-index: 5;
  }

  .ps-hero-fs-buttons--left {
    justify-content: flex-start;
    text-align: left;
    margin-left: 0;
  }
  .ps-hero-fs-buttons--center {
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .ps-hero-fs-buttons--right {
    justify-content: flex-end;
    text-align: right;
    margin-right: 0;
  }

  /* Caption Alignment logic for stack */
  .ps-hero-fs-caption--left .ps-hero-fs-group {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }
  .ps-hero-fs-caption--center .ps-hero-fs-group {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .ps-hero-fs-caption--center .ps-hero-fs-group--extra {
    text-align: start;
  }
  .ps-hero-fs-caption--right .ps-hero-fs-group {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
  }
}

/* Polaroid / açık zemin slaytta oklar: beyaz yarı saydam buton kaybolmasın */
.ps-hero-fullscreen--light-slide .ps-hero-fs-nav {
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.2);
}

.ps-hero-fullscreen--light-slide .ps-hero-fs-nav:hover,
.ps-hero-fullscreen--light-slide .ps-hero-fs-nav:focus-visible {
  background: rgba(15, 23, 42, 0.75);
  outline-color: rgba(15, 23, 42, 0.6);
}

.ps-hero-fullscreen--light-slide .ps-hero-fs-dots button {
  border-color: rgba(15, 23, 42, 0.35);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.12);
}

/* ps-hero-fs-edge alt kırpma tamamen kaldırıldı */

/* ── KOZ-2 v2: Overlay presets ── */
.ps-hero-fs-overlay--light {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.1) 45%, rgba(15, 23, 42, 0.15) 100%);
}

.ps-hero-fs-overlay--medium {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.25) 45%, rgba(15, 23, 42, 0.35) 100%);
}

.ps-hero-fs-overlay--dark {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 45%, rgba(15, 23, 42, 0.6) 100%);
}

.ps-hero-fs-overlay--none {
  background: transparent;
}

.ps-hero-fs-overlay--dark-30 {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.62) 0%, rgba(15, 23, 42, 0.22) 48%, rgba(15, 23, 42, 0.32) 100%);
}

.ps-hero-fs-overlay--dark-50 {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.38) 50%, rgba(15, 23, 42, 0.48) 100%);
}

.ps-hero-fs-overlay--light-30 {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.2) 0%, rgba(15, 23, 42, 0.28) 52%, rgba(15, 23, 42, 0.42) 100%);
}

.ps-hero-fs-overlay--grad-night {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.ps-hero-fs-overlay--grad-blue {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.ps-hero-fs-overlay--sepia {
  background: rgba(161, 98, 7, 0.3);
  mix-blend-mode: multiply;
}

.ps-hero-fs-overlay--sepia-warm {
  background: linear-gradient(to top, rgba(180, 83, 9, 0.46) 0%, rgba(245, 158, 11, 0.18) 55%, rgba(251, 191, 36, 0.1) 100%);
  mix-blend-mode: multiply;
}

.ps-hero-fs-overlay--sepia-vintage {
  background: linear-gradient(to top, rgba(120, 53, 15, 0.6) 0%, rgba(146, 64, 14, 0.38) 52%, rgba(251, 191, 36, 0.12) 100%);
  mix-blend-mode: soft-light;
  box-shadow: inset 0 0 120px rgba(24, 24, 27, 0.38);
}

.ps-hero-fs-overlay--forest {
  background: linear-gradient(to bottom, rgba(6, 78, 59, 0.2) 0%, rgba(6, 78, 59, 0.7) 100%);
}

.ps-hero-fs-overlay--mist {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ── KOZ-2 v2: Caption alignment ── */
.ps-hero-fs-caption--left {
  text-align: left;
  align-items: flex-start;
}

.ps-hero-fs-caption--center {
  text-align: center;
  align-items: center;
}

.ps-hero-fs-caption--right {
  text-align: right;
  align-items: flex-end;
}

.ps-hero-fs-caption--left .ps-hero-fs-sub {
  margin-left: 0;
  margin-right: auto;
}

.ps-hero-fs-caption--right .ps-hero-fs-sub {
  margin-left: auto;
  margin-right: 0;
}

.ps-hero-fs-caption--left .ps-hero-fs-titleblock,
.ps-hero-fs-caption--left .ps-hero-fs-substack {
  margin-left: 0;
  margin-right: auto;
}

.ps-hero-fs-caption--right .ps-hero-fs-titleblock,
.ps-hero-fs-caption--right .ps-hero-fs-substack {
  margin-left: auto;
  margin-right: 0;
}

.ps-hero-fs-slide--doodle .ps-hero-fs-subline {
  color: var(--ps-text, #475569) !important;
  text-shadow: none !important;
}

/* ── KOZ-2 v2: Buttons group ── */
.ps-hero-fs-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.ps-hero-fs-caption--left .ps-hero-fs-buttons {
  justify-content: flex-start;
}

.ps-hero-fs-caption--right .ps-hero-fs-buttons {
  justify-content: flex-end;
}

/* Tam ekran CTA: cam kartın dışında, pill / cam modern butonlar */
.ps-hero-fs-buttons--cta {
  gap: 0.65rem 0.85rem;
}

.ps-hero-fs-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.72rem 1.65rem;
  min-height: 2.85rem;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-decoration: none !important;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.ps-hero-fs-cta-btn:focus-visible {
  outline: 2px solid #fef08a;
  outline-offset: 3px;
}

.ps-hero-fs-cta-btn--primary {
  color: #fff !important;
  background: linear-gradient(145deg, var(--ps-main, #f56e28) 0%, var(--ps-main-mid, #e45f22) 52%, var(--ps-main-deep, #c24e1c) 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 6px 22px rgba(245, 110, 40, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.ps-hero-fs-cta-btn--primary:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(245, 110, 40, 0.48),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

.ps-hero-fs-cta-btn--secondary {
  color: rgba(255, 255, 255, 0.98) !important;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.ps-hero-fs-cta-btn--secondary:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

/* Çerçeve (outline) */
.ps-hero-fs-cta-btn--outline {
  color: #fff !important;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
}
.ps-hero-fs-cta-btn--outline:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Açık (light) */
.ps-hero-fs-cta-btn--light {
  color: #1f2937 !important;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
.ps-hero-fs-cta-btn--light:hover {
  color: #111827 !important;
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

/* Koyu (dark) */
.ps-hero-fs-cta-btn--dark {
  color: #fff !important;
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
}
.ps-hero-fs-cta-btn--dark:hover {
  color: #fff !important;
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

/* Buton boyutları */
.ps-hero-fs-buttons--size-sm .ps-hero-fs-cta-btn {
  padding: 0.5rem 1.15rem;
  min-height: 2.35rem;
  font-size: clamp(0.85rem, 1.2vw, 0.98rem);
}
.ps-hero-fs-buttons--size-lg .ps-hero-fs-cta-btn {
  padding: 0.9rem 2.1rem;
  min-height: 3.3rem;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

@media (prefers-reduced-motion: reduce) {
  .ps-hero-fs-cta-btn:hover {
    transform: none;
  }

  .ps-hero-fs-cta-btn--secondary {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(15, 23, 42, 0.72);
  }
}

/* Doodle deck içindeki secondary buton dark olmalı (ps-btn-secondary--dark) */
.ps-btn-secondary.ps-btn-secondary--dark {
  background: transparent !important;
  color: var(--ps-text, #1e293b) !important;
  border: 2px solid var(--ps-text, #1e293b) !important;
  backdrop-filter: none;
}

.ps-btn-secondary.ps-btn-secondary--dark:hover {
  background: var(--ps-text, #1e293b) !important;
  color: #fff !important;
}

/* ── KOZ-2 v2: Doodle deck layout ── */
.ps-hero-fs-slide--doodle .ps-hero-fs-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-top: calc(var(--ps-nav-height, 88px) + 1.5rem);
  padding-bottom: calc(5rem + 80px); /* wave + dots */
}

.ps-hero-fs-caption-col {
  flex: 1 1 45%;
  color: #fff;
  z-index: 3;
  padding-right: 2rem;
}

.ps-hero-fs-caption-col .ps-hero-fs-title {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.ps-hero-fs-caption-col .ps-hero-fs-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  max-width: 28rem;
  margin: 0 0 1.25rem;
  opacity: 0.95;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* Statik .ps-hero-gallery polaroid düzenine yakın: mutlak konum, üst üste köşeler, renkli bant */
.ps-hero-fs-doodle-stack {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 640px;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  z-index: 3;
  perspective: 900px;
  transform-style: preserve-3d;
}

/* ── Polaroid kartları: dış = sadece yerleşim + hover scale; çerçeve bob ile birlikte döner ── */
.ps-hero-doodle-card {
  position: absolute;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.53, 1);
  transform-style: preserve-3d;
}

.ps-hero-doodle-card:hover {
  transform: scale(1.035);
}

/* Beyaz polaroid çerçevesi + gölge burada — sallanma ile bütün olarak hareket eder */
.ps-hero-doodle-card-bob {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 10px 10px 0;
  border-radius: 6px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transform-origin: 48% 52%;
  opacity: 0;
  will-change: transform;
  transition: box-shadow 0.5s cubic-bezier(0.33, 1, 0.53, 1);
}

.ps-hero-doodle-card:hover .ps-hero-doodle-card-bob {
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.13),
    0 5px 14px rgba(0, 0, 0, 0.07);
}

/* 0: orta — mint (ps-pol-1) */
.ps-hero-doodle-card-0 {
  width: 280px;
  left: 50%;
  top: 42%;
  margin-left: -140px;
  margin-top: -158px;
  z-index: 5;
  --doodle-rot: -3deg;
  --doodle-tape: rgba(168, 230, 207, 0.78);
  --doodle-tape-w: 76px;
  --doodle-tape-h: 24px;
  --doodle-tape-transform: translateX(-50%) rotate(-2deg);
  --doodle-caption-color: var(--ps-mint-dark);
}

/* 1: sol — pembe (ps-pol-2) */
.ps-hero-doodle-card-1 {
  width: 218px;
  left: 0;
  top: 8%;
  z-index: 3;
  --doodle-rot: -11deg;
  --doodle-tape: rgba(255, 183, 197, 0.78);
  --doodle-tape-w: 64px;
  --doodle-tape-h: 22px;
  --doodle-tape-transform: translateX(-50%) rotate(5deg);
  --doodle-caption-color: var(--ps-pink-dark);
}

/* 2: sağ alt — bebek mavisi (ps-pol-3) */
.ps-hero-doodle-card-2 {
  width: 252px;
  right: 0;
  left: auto;
  bottom: 4%;
  top: auto;
  z-index: 4;
  --doodle-rot: 8deg;
  --doodle-tape: rgba(181, 213, 255, 0.78);
  --doodle-tape-w: 68px;
  --doodle-tape-h: 22px;
  --doodle-tape-transform: translateX(-50%) rotate(-3deg);
  --doodle-caption-color: var(--ps-baby-blue-dark);
}

/* 3: sağ üst — sarı (ps-pol-4) */
.ps-hero-doodle-card-3 {
  width: 188px;
  right: 0;
  left: auto;
  top: 0;
  z-index: 2;
  --doodle-rot: 14deg;
  --doodle-tape: rgba(245, 216, 74, 0.72);
  --doodle-tape-w: 58px;
  --doodle-tape-h: 20px;
  --doodle-tape-transform: translateX(-50%) rotate(4deg);
  --doodle-caption-color: var(--ps-soft-yellow-dark);
}

/* 4: sol alt — lavanta (beşinci kart) */
.ps-hero-doodle-card-4 {
  width: 208px;
  left: 2%;
  bottom: 12%;
  top: auto;
  z-index: 3;
  --doodle-rot: -8deg;
  --doodle-tape: rgba(196, 181, 253, 0.72);
  --doodle-tape-w: 60px;
  --doodle-tape-h: 21px;
  --doodle-tape-transform: translateX(-50%) rotate(-4deg);
  --doodle-caption-color: #7c6bb0;
}

.ps-hero-doodle-tape {
  position: absolute;
  top: -10px;
  left: 50%;
  width: var(--doodle-tape-w, 60px);
  height: var(--doodle-tape-h, 22px);
  transform: var(--doodle-tape-transform, translateX(-50%) rotate(-2deg));
  border-radius: 2px;
  opacity: 0.82;
  background: var(--doodle-tape, rgba(245, 216, 74, 0.65));
  z-index: 5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
  pointer-events: none;
}

.ps-hero-doodle-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  line-height: 0;
  background: #f1f5f9;
}

.ps-hero-doodle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Polaroid alt şerit: metin yokken de alan ayrılmış (min-height) */
.ps-hero-doodle-caption {
  min-height: 2.65rem;
  padding: 10px 6px 12px;
  margin: 0;
  text-align: center;
  font-family: "Baloo 2", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--doodle-caption-color, var(--ps-text-light));
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.ps-hero-doodle-caption:empty {
  /* Boşken sadece beyaz polaroid alt bandı */
  color: transparent;
}

/* Hafif sallantı (--doodle-rot karttan kalıtılır) */
@keyframes doodleSway {
  0%,
  100% {
    transform: rotate(calc(var(--doodle-rot, 0deg) - 0.45deg));
  }
  50% {
    transform: rotate(calc(var(--doodle-rot, 0deg) + 0.75deg));
  }
}

.ps-hero-fs-slide.is-active .ps-hero-doodle-card-bob {
  opacity: 1;
  transition: opacity 0.55s cubic-bezier(0.33, 1.1, 0.53, 1);
  transition-delay: var(--doodle-delay, 0s);
  animation: doodleSway 5.8s ease-in-out infinite;
  animation-delay: calc(var(--doodle-delay, 0s) + 0.4s);
  /* Gecikme süresince 0% keyframe (eğim) uygulanır — önce dik sonra sert eğilme yok */
  animation-fill-mode: backwards;
}

.ps-hero-fs-slide:not(.is-active) .ps-hero-doodle-card-bob {
  opacity: 0;
  animation: none;
}

/* Hover: sallanmayı durdur; kart zaten scale ile yumuşak tepki veriyor */
.ps-hero-doodle-card:hover .ps-hero-doodle-card-bob {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .ps-hero-doodle-card-bob {
    animation: none !important;
    opacity: 1;
    transform: rotate(var(--doodle-rot, 0deg)) !important;
  }

  .ps-hero-doodle-card:hover {
    transform: none;
  }
}

/* ── Doodle deck responsive ── */
@media (max-width: 991px) {
  .ps-hero-fs-doodle-stack {
    height: 380px;
    max-width: 460px;
  }

  .ps-hero-doodle-card-0 {
    width: 178px;
    margin-left: -89px;
    margin-top: -100px;
    top: 40%;
  }

  .ps-hero-doodle-card-1 {
    width: 142px;
    left: 0;
    top: 6%;
  }

  .ps-hero-doodle-card-2 {
    width: 164px;
    right: 0;
    bottom: 3%;
  }

  .ps-hero-doodle-card-3 {
    width: 124px;
    right: 0;
    top: 0;
  }

  .ps-hero-doodle-card-4 {
    width: 138px;
    left: 1%;
    bottom: 8%;
  }

  .ps-hero-fs-slide--doodle .ps-hero-fs-content {
    flex-direction: column;
    text-align: center;
    padding-top: calc(var(--ps-nav-height, 88px) + 1rem);
  }

  .ps-hero-fs-caption-col {
    flex: none;
    padding-right: 0;
    margin-bottom: 1.5rem;
  }

  .ps-hero-fs-caption-col .ps-hero-fs-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .ps-hero-fs-caption-col .ps-hero-fs-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ps-hero-fs-doodle-stack {
    height: 300px;
    max-width: 360px;
  }

  .ps-hero-doodle-card-0 {
    width: 118px;
    margin-left: -59px;
    margin-top: -68px;
  }

  .ps-hero-doodle-card-1 {
    width: 96px;
  }

  .ps-hero-doodle-card-2 {
    width: 108px;
  }

  .ps-hero-doodle-card-3 {
    width: 82px;
  }

  .ps-hero-doodle-card-4 {
    width: 92px;
  }

  .ps-hero-doodle-caption {
    min-height: 2rem;
    padding: 6px 4px 8px;
    font-size: 0.68rem;
  }

  .ps-hero-doodle-tape {
    top: -7px;
    width: min(var(--doodle-tape-w, 60px), 40px);
    height: min(var(--doodle-tape-h, 22px), 12px);
  }
}

/* ── Landing anasayfa: tam ekran slider, scroll yok ── */
html:has(body.ps-landing),
html:has(body.ps-landing) body.ps-landing {
  height: 100%;
  overflow: hidden;
}

body.ps-landing {
  margin: 0;
}

body.ps-landing main,
body.ps-landing .ps-landing-main {
  margin: 0;
  padding: 0;
  height: 100vh;
  height: 100dvh;
  height: var(--ps-hero-viewport-h, 100dvh);
  overflow: hidden;
}

body.ps-landing .ps-hero-fullscreen--landing {
  height: 100%;
  min-height: 100%;
  margin-top: 0;
}

body.ps-landing main > .ps-hero-fullscreen:first-child {
  margin-top: 0;
}

/* Mobil menü: overflow:hidden body'de collapse overlay */
@media (max-width: 991.98px) {
  body.ps-landing #navbarNav.show,
  body.ps-landing #navbarNav.collapsing {
    position: fixed;
    top: var(--ps-nav-height, 88px);
    left: 0;
    right: 0;
    z-index: 1050;
    max-height: calc(100dvh - var(--ps-nav-height, 88px));
    overflow-y: auto;
    background: rgba(15, 23, 42, 0.97);
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  }
}

/* Landing hero caption: tam section yüksekliğini kapla (inset:0).
   Eski max-height kuralı caption'ı kısaltıp alt bölgede ölü alan bırakıyor,
   dikey hizalama / "butonlar en altta" ekran dibine ulaşamıyordu. Taşma
   durumunda içerik caption içinde kaydırılır. */
.ps-hero-fullscreen--landing .ps-hero-fs-caption {
  max-height: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ps-hero-fullscreen--landing .ps-hero-fs-title {
  font-size: clamp(1.35rem, 4.5vw, 2.75rem);
  line-height: 1.15;
}

.ps-hero-fullscreen--landing .ps-hero-fs-description,
.ps-hero-fullscreen--landing .ps-hero-fs-sub {
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
}

/* Çerez banner */
.ps-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1060;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.92);
  color: #f8fafc;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.ps-cookie-banner[hidden] {
  display: none !important;
}

.ps-cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  max-width: 1140px;
  margin: 0 auto;
}

.ps-cookie-banner__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  flex: 1 1 200px;
}

.ps-cookie-banner__link {
  color: #7dd3fc;
  text-decoration: underline;
}

.ps-cookie-banner__btn {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: var(--ps-main, #f56e28);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
}

.ps-cookie-banner__btn:hover {
  filter: brightness(1.08);
}

/* ── Landing sayfası: şeffaf navbar — beyaz metin garantisi ──
   ps-navbar--on-dark sınıfı PHP tarafından eklenmektedir; bu kural
   herhangi bir nedenle sınıf eklenemediğinde de doğru görünümü sağlar.
   Özgüllük: body(0,0,1) + 5 class + :not = (0,6,1) > (0,6,0) */
body.ps-landing .ps-navbar:not(.scrolled) .ps-nav-links > .nav-item > .nav-link {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

body.ps-landing .ps-navbar:not(.scrolled) .ps-nav-links > .nav-item > .nav-link:hover,
body.ps-landing .ps-navbar:not(.scrolled) .ps-nav-links > .nav-item > .nav-link:focus-visible,
body.ps-landing .ps-navbar:not(.scrolled) .ps-nav-links > .nav-item > .nav-link:focus {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.16) !important;
}

body.ps-landing .ps-navbar:not(.scrolled) .navbar-brand,
body.ps-landing .ps-navbar:not(.scrolled) .ps-brand-text {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

body.ps-landing .ps-navbar:not(.scrolled) .ps-hamburger span {
  background: #fff !important;
}

body.ps-landing .ps-navbar:not(.scrolled) .ps-nav-phone-sm {
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.38) !important;
  background: rgba(255, 255, 255, 0.16) !important;
}
