/* ============================================================
   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;
}

/* ── 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;
}

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 {
  border-radius: 12px;
  max-height: 95px !important; /* Logo maksimum yüksekliği */
  width: auto;
  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;
  font-size: 14.5px !important;
  padding: 8px 16px !important;
  border-radius: var(--ps-radius-pill) !important;
  transition: all 0.28s ease !important;
  position: relative;
  white-space: nowrap;
}

.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) ── */
.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-left: 6px !important;
  vertical-align: 2px !important;
  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.10), 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-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-collapse {
    background: var(--ps-white);
    border-radius: 0 0 24px 24px;
    padding: 1rem 0.5rem;
    margin: 0.5rem -12px 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }

  .ps-nav-links .nav-link {
    padding: 12px 18px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
  }

  .ps-navbar .dropdown-menu {
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 0 1rem !important;
    background: transparent !important;
    animation: none !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-left: 8px !important;
    transition: transform 0.25s ease !important;
  }

  .ps-navbar .dropdown-menu .dropdown.show>.dropdown-toggle::after {
    transform: rotate(-135deg) !important;
  }

  .ps-navbar .dropdown-menu .dropdown>.dropdown-menu {
    position: static !important;
    float: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding-left: 1rem !important;
  }

  /* Mobile CTA */
  .ps-navbar .navbar-collapse .ps-nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
  }
}

/* ── Hamburger ── */
.ps-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--ps-mint-light) !important;
  border: none !important;
  border-radius: 12px;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ps-hamburger:hover {
  background: var(--ps-mint) !important;
}

.ps-hamburger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--ps-text);
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

.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);
}

/* ── Phone Badge ── */
.ps-nav-phone {
  display: inline-flex;
  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;
}

.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: 40px;
  height: 40px;
  background: var(--ps-pink-light) !important;
  color: var(--ps-pink-dark) !important;
  border-radius: 12px;
  text-decoration: none !important;
  font-size: 15px;
  transition: all 0.3s ease;
}

.ps-nav-phone-sm:hover {
  background: var(--ps-pink) !important;
  transform: scale(1.08);
}

/* ── 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(.4, 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;
}

/* ── 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.10),
    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.10);
  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.10;
  }

  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.20;
  }

  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.10;
  }

  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.30);
}

.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.30);
}

.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.30);
}

.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
   ============================================================ */

/* ── CTA Strip ── */
.ps-footer-cta-strip {
  background: linear-gradient(135deg, #F7EFE7 0%, #FAF4ED 100%);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.ps-fcs-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ps-fcs-left {
  position: relative;
  z-index: 1;
}

.ps-fcs-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.06);
  color: var(--ps-text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.ps-fcs-left h3 {
  color: var(--ps-text) !important;
  font-size: 1.5rem !important;
  font-family: 'Baloo 2', sans-serif !important;
  font-weight: 800 !important;
  margin-bottom: 0.3rem;
}

.ps-fcs-left p {
  color: var(--ps-text-light) !important;
  font-size: 0.9rem;
  margin: 0;
}

.ps-fcs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ps-text);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: background 0.2s ease, opacity 0.2s ease;
  box-shadow: none;
  position: relative;
  z-index: 1;
  margin: 4px;
}

.ps-fcs-btn:hover {
  opacity: 0.85;
}

.ps-fcs-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ps-text) !important;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  border: 2px solid var(--ps-text-muted);
  transition: background 0.2s ease, border-color 0.2s ease;
  position: relative;
  z-index: 1;
  margin: 4px;
}

.ps-fcs-btn-outline:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--ps-text);
}

/* ── 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.10) 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.10);
  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-cta-strip {
    padding: 2rem 0;
    text-align: center;
  }

  .ps-fcs-btn,
  .ps-fcs-btn-outline {
    display: block;
    text-align: center;
    margin: 6px auto;
    max-width: 220px;
  }

  .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;
  }
}

.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;
}

.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;
}

.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 */
.ps-bf-wt-l {
  animation: bfFlapTL 0.2s ease-in-out infinite alternate;
}

.ps-bf-wt-r {
  animation: bfFlapTR 0.2s ease-in-out infinite alternate;
}

.ps-bf-wb-l {
  animation: bfFlapBL 0.2s ease-in-out infinite alternate;
}

.ps-bf-wb-r {
  animation: bfFlapBR 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);
  }
}

/* Landed — slow gentle flap */
.ps-bf-landed .ps-bf-wt-l {
  animation: bfLandTL 2s ease-in-out infinite alternate;
}

.ps-bf-landed .ps-bf-wt-r {
  animation: bfLandTR 2s ease-in-out infinite alternate;
}

.ps-bf-landed .ps-bf-wb-l {
  animation: bfLandBL 2s ease-in-out infinite alternate;
}

.ps-bf-landed .ps-bf-wb-r {
  animation: bfLandBR 2s ease-in-out infinite alternate;
}

@keyframes bfLandTL {
  0% {
    transform: perspective(120px) rotateY(15deg);
  }

  100% {
    transform: perspective(120px) rotateY(5deg);
  }
}

@keyframes bfLandTR {
  0% {
    transform: perspective(120px) rotateY(-15deg);
  }

  100% {
    transform: perspective(120px) rotateY(-5deg);
  }
}

@keyframes bfLandBL {
  0% {
    transform: perspective(120px) rotateY(10deg);
  }

  100% {
    transform: perspective(120px) rotateY(2deg);
  }
}

@keyframes bfLandBR {
  0% {
    transform: perspective(120px) rotateY(-10deg);
  }

  100% {
    transform: perspective(120px) rotateY(-2deg);
  }
}

/* Body & details */
.ps-bf-body,
.ps-bf-head {
  transition: fill 0.8s ease;
}

.ps-bf-spot {
  opacity: 0.6;
  transition: fill 0.8s 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 — navbar absolute olduğu için (galeri vb.)
   Hakkımızda / İletişim ~140px hero padding ile uyumlu
   ============================================================ */
.ps-page-below-nav {
  padding-top: 7.5rem;
}

@media (min-width: 992px) {
  .ps-page-below-nav {
    padding-top: 8.75rem;
  }
}

/* ============================================================
   Akademik kadro — başlık bandı + kartlar
   ============================================================ */
.ps-team-page {
  background: var(--ps-bg);
  position: relative;
  overflow: hidden;
}

.ps-inner-page-head {
  padding: 7.5rem 0 2.25rem;
  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: 8.75rem 0 2.75rem;
  }
}

.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
   ============================================================ */
.ps-navbar {
  position: fixed; /* Fixed by default to avoid jumpy transitions */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  background: transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled state */
.ps-navbar.scrolled {
  background: #ffffff;
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ps-navbar.ps-navbar--on-dark .nav-link,
.ps-navbar.ps-navbar--on-dark .navbar-brand,
.ps-navbar.ps-navbar--on-dark .ps-brand-text,
.ps-navbar.ps-navbar--on-dark .dropdown-toggle {
  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;
}

.ps-navbar.ps-navbar--on-dark .ps-nav-phone-sm {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.2);
  height: 42px;
  width: 42px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: color 0.4s ease-in-out, background 0.4s ease-in-out !important;
  text-decoration: none !important;
}

.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;
}

.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 .nav-link,
.ps-navbar.ps-navbar--on-dark.scrolled .navbar-brand,
.ps-navbar.ps-navbar--on-dark.scrolled .ps-brand-text,
.ps-navbar.ps-navbar--on-dark.scrolled .dropdown-toggle {
  color: var(--ps-text) !important;
  text-shadow: none !important;
}

.ps-navbar.ps-navbar--on-dark.scrolled .ps-nav-phone-sm {
  color: #fff !important;
  background: var(--ps-accent, var(--ps-pink-dark)) !important;
}

/* Hamburger renk geçişi (on-dark) */
.ps-navbar.ps-navbar--on-dark .ps-hamburger span {
  background-color: #fff;
  transition: background-color 0.4s ease-in-out !important;
}

.ps-navbar.ps-navbar--on-dark.scrolled .ps-hamburger span {
  background: #1e293b;
}

/* ── 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;
  border-color: rgba(30, 41, 59, 0.2);
}

.ps-navbar.ps-navbar--on-light:not(.scrolled) .ps-nav-phone {
  color: #1e293b;
}

.ps-navbar.ps-navbar--on-light:not(.scrolled) .ps-hamburger span {
  background: #1e293b;
}

/*
 * 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) .nav-link,
.ps-navbar.ps-navbar--on-dark.ps-navbar--on-light:not(.scrolled) .ps-nav-links .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,
.ps-navbar.ps-navbar--on-dark.ps-navbar--on-light:not(.scrolled) .dropdown-toggle {
  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;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(30, 41, 59, 0.12) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ps-navbar.ps-navbar--on-dark.ps-navbar--on-light:not(.scrolled) .ps-hamburger span {
  background-color: #1e293b !important;
}

.ps-hero-fullscreen {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #0f172a;
  outline: none;
}

.ps-hero-fs-track {
  position: absolute;
  inset: 0;
}

.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, 72px) + 1rem) 1rem 3rem;
  text-align: center;
}

.ps-hero-fs-title {
  font-family: 'Baloo 2', sans-serif !important;
  font-size: clamp(1.75rem, 4vw, 3.5rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important; /* Rengine zorlandı */
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6) !important;
  line-height: 1.15;
}

.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, #c8102e);
  border-color: var(--ps-main, #c8102e);
  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;
}

/* 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%
  );
}

/* ── 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;
}

/* ── 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;
}

.ps-hero-fs-buttons .ps-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.ps-hero-fs-buttons .ps-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #fff;
}

/* 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, 72px) + 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, 72px) + 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);
  }
}