/* ===== DESIGN 3 — Premium & Elegant ===== */
/* Extracted from design-3.html with adaptations for live site */

/* ===== BASE ===== */
:root {
  --bs-body-font-family: 'Figtree', sans-serif;
  --bs-font-sans-serif: 'Figtree', sans-serif;
}
body {
  font-family: 'Figtree', sans-serif !important;
  font-size: 17px;
  line-height: 1.7;
  color: #2a2a3d;
  -webkit-font-smoothing: antialiased;
}

/* ===== UTILITY ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: 60px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 1.5px;
}
h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}
.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6953A8;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, #F4C106, #6953A8);
}

/* ===== HEADER ===== */
/* Support both .header class (design) and header tag (live site) */
.header,
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .logo-white,
header .logo-white { display: block; transition: opacity 0.4s ease; }
.header .logo-color,
header .logo-color { display: none; transition: opacity 0.4s ease; }
.header .nav-link,
header .nav-link { color: #4e3e80; font-weight: 600; font-size: 20px; }
.header .nav-link:hover,
header .nav-link:hover { color: #4a3a8a; }
.header .nav-link::after,
header .nav-link::after { background: linear-gradient(90deg, #6953A8, #59c4db); }
.header .header-phone,
header .header-phone { color: #6953A8; }
.header .header-phone svg,
header .header-phone svg { width: 22px; height: 22px; flex-shrink: 0; }
.header .menu-toggle span,
header .menu-toggle span { background: #6953A8; }

/* Scrolled state: support both .header.scrolled and header.sticky */
.header.scrolled,
header.sticky {
  padding: 12px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(105,83,168,0.08);
  box-shadow: 0 4px 30px rgba(105,83,168,0.06);
}
.header.scrolled .logo-white,
header.sticky .logo-white { display: none; }
.header.scrolled .logo-color,
header.sticky .logo-color { display: block; }
.header.scrolled .nav-link,
header.sticky .nav-link { color: #2a2a3d; font-weight: 600; text-shadow: none; }
.header.scrolled .nav-link:hover,
header.sticky .nav-link:hover { color: #6953A8; }
.header.scrolled .nav-link::after,
header.sticky .nav-link::after { background: linear-gradient(90deg, #6953A8, #59c4db); }
.header.scrolled .header-phone,
header.sticky .header-phone { color: #6953A8; }
.header.scrolled .header-phone img,
header.sticky .header-phone img { filter: none; }
.header.scrolled .menu-toggle span,
header.sticky .menu-toggle span { background: #6953A8; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  color: #6953A8;
  letter-spacing: 0.3px;
}
.logo img { flex-shrink: 0; height: 44px; width: auto; }
.logo span { color: #2a2a3d; font-weight: 400; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #2a2a3d;
  padding: 4px 0;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link img { width: 18px; height: 18px; filter: none; transition: filter 0.4s ease; }
.header.scrolled .nav-link img,
header.sticky .nav-link img { filter: none; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6953A8, #59c4db);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover { color: #6953A8; }
.nav-link:hover::after { width: 100%; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #6953A8;
  transition: color 0.3s;
  text-decoration: none;
}
.header-phone:hover { color: #4a3a8a; }
.header-phone img { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1002;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.menu-toggle span:nth-child(1) { width: 22px; }
.menu-toggle span:nth-child(2) { width: 16px; }
.menu-toggle span:nth-child(3) { width: 22px; }
.header.scrolled .menu-toggle span,
header.sticky .menu-toggle span { background: #6953A8; }
/* Active state - X animation */
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); background: #6953A8; }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); background: #6953A8; }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav.open {
  visibility: visible;
  opacity: 1;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 42, 61, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 40px rgba(105,83,168,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}
/* Panel header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(105,83,168,0.08);
}
.mobile-nav-header img { height: 36px; }
.mobile-nav-close {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(105,83,168,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.mobile-nav-close:hover { background: rgba(105,83,168,0.12); }
.mobile-nav-close svg { width: 18px; height: 18px; stroke: #6953A8; }
/* Panel links */
.mobile-nav-links {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #2a2a3d;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
}
.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #6953A8, #59c4db);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(105,83,168,0.04);
  color: #6953A8;
}
.mobile-nav-link:hover::before,
.mobile-nav-link:active::before { transform: scaleY(1); }
.mobile-nav-link img { width: 20px; height: 20px; opacity: 0.6; }
.mobile-nav-link:hover img { opacity: 1; }
/* Panel divider */
.mobile-nav-divider {
  height: 1px;
  margin: 8px 24px;
  background: linear-gradient(90deg, transparent, rgba(105,83,168,0.1), transparent);
}
/* Panel footer */
.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(105,83,168,0.08);
}
.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #6953A8, #8b6fcc);
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(105,83,168,0.3);
  transition: all 0.35s;
}
.mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(105,83,168,0.4);
  color: #fff;
}
.mobile-nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #6953A8;
  text-decoration: none;
}
.mobile-nav-phone img { width: 18px; height: 18px; }
.mobile-nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.mobile-nav-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(105,83,168,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.mobile-nav-social a:hover {
  background: rgba(105,83,168,0.06);
  border-color: rgba(105,83,168,0.25);
}
.mobile-nav-social img { width: 16px; height: 16px; }

/* ===== HERO / SLIDER ===== */
/* #slider maps to .hero from design-3.html */
#slider {
  position: relative;
  min-height: 80vh;
  max-height: 800px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #6953A8 0%, #8b6fcc 30%, #a8c8f0 60%, #c3eaff 100%);
  overflow: hidden;
  padding: 140px 0 120px;
}
#slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(105,83,168,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(195,234,255,0.4) 0%, transparent 60%);
}
#slider::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, transparent 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
  background: url('../images/hero-bg-icons.svg') repeat center center;
  background-size: 300px;
}
#slider .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
#slider .hero-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
#slider .hero-label::before {
  content: '';
  width: 50px; height: 1px;
  background: linear-gradient(90deg, #F4C106, rgba(255,255,255,0.5));
}
#slider h1 {
  color: #fff;
  margin-bottom: 28px;
}
#slider h1 strong {
  font-weight: 800;
  background: linear-gradient(135deg, #F4C106, #ff87d5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#slider .hero-desc {
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 540px;
  font-weight: 300;
}
#slider .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6953A8, #8b6fcc);
  border-radius: 60px;
  box-shadow: 0 12px 35px rgba(105,83,168,0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
}
.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(105,83,168,0.45);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 60px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.1);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
/* Hero feature tags */
#slider .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
#slider .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 40px;
  letter-spacing: 0.3px;
}
#slider .hero-tag img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
/* Hero image */
#slider .hero-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}
#slider .hero-image {
  position: absolute;
  right: 3%;
  bottom: 60px;
  z-index: 2;
  max-width: 700px;
}
#slider .hero-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
/* Decorative shapes in hero */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.15;
}
.hero-shape-1 {
  width: 400px; height: 400px;
  top: -80px; right: -100px;
  background: radial-gradient(circle, #F4C106, transparent 70%);
}
.hero-shape-2 {
  width: 300px; height: 300px;
  bottom: 10%; right: 15%;
  background: radial-gradient(circle, #ff87d5, transparent 70%);
}
.hero-shape-3 {
  width: 200px; height: 200px;
  top: 30%; right: 30%;
  background: radial-gradient(circle, #48C88F, transparent 70%);
}
/* Hero fish decoration */
.hero-fish {
  position: absolute;
  bottom: 140px;
  left: 5%;
  z-index: 2;
  width: 80px;
  opacity: 0.5;
  animation: fishFloat 4s ease-in-out infinite;
}
@keyframes fishFloat {
  0%, 100% { transform: translateY(0) scaleX(-1); }
  50% { transform: translateY(-20px) scaleX(-1); }
}

/* ===== EGITIMLERIMIZ ===== */
.egitimlerimiz {
  padding: 40px 0;
  background: #fff;
}
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.kurumsal .section-header {
  max-width: 860px;
}
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-label::after {
  content: none;
}
.section-header p {
  color: #6b6b80;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.7;
}
.edu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.edu-card {
  position: relative;
  padding: 0;
  border-radius: 24px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(105,83,168,0.08);
  box-shadow: 0 8px 40px rgba(105,83,168,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  overflow: hidden;
}
.edu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(105,83,168,0.15);
  border-color: rgba(105,83,168,0.15);
}
.edu-card-body {
  padding: 24px 24px 32px;
}
.edu-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.edu-card:hover .edu-icon { transform: scale(1.08); }
.edu-icon img { width: 40px; height: 40px; }
.edu-icon-1 { background: linear-gradient(135deg, rgba(105,83,168,0.25), rgba(89,196,219,0.25)); }
.edu-icon-2 { background: linear-gradient(135deg, rgba(255,135,213,0.25), rgba(244,193,6,0.25)); }
.edu-icon-3 { background: linear-gradient(135deg, rgba(72,200,143,0.25), rgba(89,196,219,0.25)); }
.edu-icon-4 { background: linear-gradient(135deg, rgba(255,106,48,0.25), rgba(244,193,6,0.25)); }
.edu-icon-5 { background: linear-gradient(135deg, rgba(89,196,219,0.25), rgba(105,83,168,0.25)); }
.edu-card h3 {
  margin-bottom: 10px;
  color: #2a2a3d;
  font-size: 17px;
}
.edu-card p {
  font-size: 13px;
  color: #6b6b80;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Edu card images */
.edu-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.edu-card:hover .edu-card-img { transform: scale(1.06); }
.edu-card-img-wrapper {
  overflow: hidden;
}

/* ===== KURUMSAL ===== */
.kurumsal {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8f6ff 0%, #fff 100%);
}
.kurumsal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.kurumsal-image {
  position: relative;
}
.kurumsal-image-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(105,83,168,0.12);
  z-index: 1;
  margin-bottom: 190px;
}
.kurumsal-image-wrapper::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 100%; height: 100%;
  border-radius: 28px;
  border: 3px dashed rgba(105,83,168,0.25);
  z-index: -1;
}
.kurumsal-accent-img {
  position: absolute;
  bottom: -20px; left: -30px;
  width: 160px; height: 160px;
  border-radius: 20px;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 15px 40px rgba(105,83,168,0.2);
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.kurumsal-accent-img:hover { transform: scale(1.05) rotate(-2deg); }
.kurumsal-image-wrapper img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.kurumsal-stats {
  position: absolute;
  bottom: -30px;
  right: -30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(105,83,168,0.2);
}
.stat-item {
  padding: 24px 28px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
}
.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #6953A8;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b6b80;
}
.kurumsal-content .section-label { margin-bottom: 20px; }
.kurumsal-content h2 { margin-bottom: 24px; }
.kurumsal-text {
  color: #6b6b80;
  margin-bottom: 20px;
  font-size: 17px;
}
.kurumsal-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: #2a2a3d;
}
.feature-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #48C88F, #59c4db);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== GALERİ ===== */
.galeri {
  padding: 40px 0;
  background: #fff;
}
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.galeri-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.galeri-item::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236953A8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}
.galeri-item:hover::before { transform: translate(-50%, -50%) scale(1); }
.galeri-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(105,83,168,0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}
.galeri-item:hover img { transform: scale(1.08); }
.galeri-item:hover::after { opacity: 1; }
.galeri-item.span-2-col { grid-column: span 2; }
.galeri-item.span-2-row { grid-row: span 2; }

/* ===== VELİ GÖRÜŞLERİ ===== */
.testimonials {
  padding: 40px 0;
  background: linear-gradient(180deg, #fff5f5, #ffdada, #fff5f5);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.testimonial-card {
  padding: 40px 36px;
  border-radius: 24px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,218,218,0.5);
  box-shadow: 0 8px 40px rgba(105,83,168,0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(105,83,168,0.1);
}
.quote-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  opacity: 0.15;
}
.testimonial-text {
  font-size: 16px;
  color: #4a4a5e;
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6953A8, #59c4db);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  font-size: 15px;
  font-weight: 700;
  color: #2a2a3d;
}
.author-role {
  font-size: 13px;
  color: #6b6b80;
  margin-top: 2px;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(78%) sepia(60%) saturate(600%) hue-rotate(3deg) brightness(103%) contrast(104%);
}

/* ===== İLETİŞİM ===== */
.iletisim {
  padding: 40px 0 0;
  background: #fff;
}
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.iletisim-info { padding-top: 16px; }
.iletisim-info h2 { margin-bottom: 20px; }
.iletisim-info > p {
  color: #6b6b80;
  margin-bottom: 40px;
}
.info-items { display: flex; flex-direction: column; gap: 28px; }
.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.info-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(105,83,168,0.08), rgba(89,196,219,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #2a2a3d;
  margin-bottom: 4px;
}
.info-item p {
  font-size: 15px;
  color: #6b6b80;
  line-height: 1.5;
}
/* Separator */
.info-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105,83,168,0.12), transparent);
  margin: 8px 0;
}

/* Form */
.form-card {
  padding: 48px;
  border-radius: 28px;
  background: rgba(182,210,241,0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(182,210,241,0.3);
  box-shadow: 0 25px 60px rgba(105,83,168,0.08);
}
.form-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.form-card > p {
  font-size: 14px;
  color: #6b6b80;
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 20px 8px;
  font-size: 15px;
  color: #2a2a3d;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(105,83,168,0.12);
  border-radius: 14px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 56px;
}
.form-group textarea {
  min-height: 110px;
  resize: vertical;
  padding-top: 24px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #6953A8;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 3px rgba(105,83,168,0.08);
}
.form-group label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 15px;
  color: #6b6b80;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group.textarea-group label {
  top: 18px;
  transform: none;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 10px;
  transform: none;
  font-size: 11px;
  font-weight: 600;
  color: #6953A8;
  letter-spacing: 0.5px;
}
.form-group select ~ label {
  top: 10px;
  transform: none;
  font-size: 11px;
  font-weight: 600;
  color: #6953A8;
  letter-spacing: 0.5px;
}
.form-group select {
  padding-top: 22px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236b6b80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #dc001e, #ff4444);
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(220,0,30,0.25);
  margin-top: 4px;
  min-height: 56px;
  letter-spacing: 0.3px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(220,0,30,0.35);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, rgba(2,40,66,0.85), rgba(1,26,46,0.92)), url('../images/footer-bg.png') center center / cover no-repeat;
  color: rgba(255,255,255,0.7);
  position: relative;
}
.footer-clouds {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -2px;
}
.footer-inner {
  position: relative;
  padding: 0 0 40px;
}
/* Emblem */
.footer-emblem {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: #022842;
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  overflow: hidden;
}
.footer-emblem::after {
  content: '';
  position: absolute;
  top: 5px; left: 5px; right: 5px; bottom: 5px;
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: 50%;
}
.footer-emblem img { height: 70px; position: relative; z-index: 1; }
/* Content */
.footer-content {
  text-align: center;
  padding-top: 80px;
  max-width: 600px;
  margin: 0 auto;
}
.footer-content > p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
/* Social */
.footer-social {
  display: flex; gap: 16px; justify-content: center;
  margin-bottom: 32px;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-link img {
  width: 18px; height: 18px;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}
.social-link:hover img { opacity: 1; }
/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  margin: 0 auto;
}
/* Call center */
.footer-call {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 32px 0;
}
.footer-call img {
  width: 40px; height: 40px;
}
.footer-call-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.footer-call-number {
  font-size: 32px;
  font-weight: 700;
  color: #cdefff;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.footer-call-number:hover { color: #fff; }
/* Brand title */
.footer-brand-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 20px;
}
/* Brand logos */
.footer-brands {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 40px;
}
.footer-brands img {
  height: 40px; width: auto;
  transition: opacity 0.3s;
}
.footer-brands img:hover { opacity: 0.8; }
/* Copyright */
.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  padding: 24px 0 8px;
}
/* thefabrika */
.footer-fabrika {
  display: block;
  text-align: center;
  padding: 16px 0;
}
.footer-fabrika img {
  height: 40px;
  margin: 0 auto;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.footer-fabrika:hover img { opacity: 0.8; }

/* ===== FIXED ELEMENTS ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  z-index: 999;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}
.side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.side-tab a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: linear-gradient(180deg, #6953A8, #8b6fcc);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 4px 20px rgba(105,83,168,0.3);
  transition: all 0.3s;
  min-width: 44px;
}
.side-tab a:hover {
  padding-right: 14px;
  box-shadow: -6px 4px 30px rgba(105,83,168,0.4);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6953A8, #8b6fcc);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(105,83,168,0.3);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(105,83,168,0.4);
}
.back-to-top img {
  width: 20px; height: 20px;
  filter: brightness(0) invert(1);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  cursor: zoom-out;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-overlay.active img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  h1 { font-size: 46px; }
  h2 { font-size: 36px; }
  .edu-grid { grid-template-columns: repeat(3, 1fr); }
  .galeri-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .kurumsal-accent-img { width: 120px; height: 120px; bottom: -15px; left: -20px; }
  .kurumsal-grid { gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 500px; justify-self: center; }
  .iletisim-grid { gap: 48px; }
  .footer-call-number { font-size: 28px; }
  #slider .hero-image { max-width: 440px; right: 2%; }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; letter-spacing: 0.5px; }
  h2 { font-size: 30px; }
  h3 { font-size: 20px; }
  #slider { padding: 120px 0 100px; min-height: auto; }
  #slider .hero-desc { font-size: 17px; }
  #slider .hero-image { display: none; }
  .hero-fish { display: none; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-phone { display: none; }
  .egitimlerimiz, .kurumsal, .testimonials, .iletisim, .galeri { padding: 40px 0; }
  .edu-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .galeri-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .galeri-item.span-2-col { grid-column: span 1; }
  .galeri-item.span-2-row { grid-row: span 1; }
  .kurumsal-grid { grid-template-columns: 1fr; gap: 48px; }
  .kurumsal-stats { position: relative; bottom: auto; right: auto; margin-top: 24px; }
  .kurumsal-accent-img { display: none; }
  .kurumsal-image-wrapper::before { display: none; }
  .kurumsal-image-wrapper { margin-bottom: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; max-width: none; }
  .iletisim-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-brands { gap: 16px; }
  .footer-brands img { height: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .side-tab { display: none; }
  #slider .hero-tags { gap: 8px; }
  #slider .hero-tag { font-size: 12px; padding: 6px 14px; }
}

@media (max-width: 375px) {
  h1 { font-size: 30px; }
  #slider .hero-actions { flex-direction: column; }
  #slider .hero-actions a { text-align: center; justify-content: center; }
  .page-header h1 { font-size: 22px; }
}

/* ===== PAGE HEADER (Alt Sayfalar) ===== */
.page-header {
  background: linear-gradient(135deg, #6953A8 0%, #8b6fcc 30%, #a8c8f0 60%, #c3eaff 100%);
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(105,83,168,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(195,234,255,0.4) 0%, transparent 60%);
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, transparent 100%);
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 12px;
}
.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  font-weight: 400;
  margin-top: 8px;
  max-width: 480px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
  background: none;
  padding: 0;
}
.breadcrumb a { color: rgba(255,255,255,0.85); transition: color 0.3s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.5); }
.breadcrumb span:last-child { color: #fff; font-weight: 600; }

/* ===== BLOG META ===== */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
}
.blog-meta svg { flex-shrink: 0; stroke: rgba(255,255,255,0.8); }

/* ===== BLOG SECTION ===== */
.blog-section { padding: 20px 0 30px; background: #fff; }

/* ===== BLOG GRID (List) ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(105,83,168,0.08);
  box-shadow: 0 4px 24px rgba(105,83,168,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(105,83,168,0.14);
  border-color: rgba(105,83,168,0.14);
  color: inherit;
  text-decoration: none;
}
.blog-card-img-wrapper { overflow: hidden; }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 28px; }
.blog-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #6b6b80;
  margin-bottom: 12px;
}
.blog-card-date svg { width: 15px; height: 15px; stroke: #6b6b80; flex-shrink: 0; }
.blog-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #2a2a3d;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.blog-card:hover .blog-card-title { color: #6953A8; }
.blog-card-excerpt {
  font-size: 14px;
  color: #6b6b80;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #6953A8;
  transition: all 0.3s;
}
.blog-card-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.blog-card-link:hover { color: #4a3a8a; }
.blog-card-link:hover svg { transform: translateX(4px); }

/* ===== BLOG LAYOUT (Detail) ===== */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.blog-content { min-width: 0; }
.blog-featured-img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 32px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.blog-content p { font-size: 17px; line-height: 1.8; color: #4a4a5e; margin-bottom: 24px; }
.blog-content h2 { font-size: 28px; font-weight: 700; margin: 40px 0 16px; color: #2a2a3d; line-height: 1.3; letter-spacing: 0; }
.blog-content h3 { font-size: 22px; font-weight: 600; margin: 32px 0 12px; color: #2a2a3d; }
.blog-content img { border-radius: 16px; margin: 0 0 32px 0; }
.blog-content blockquote {
  border-left: 4px solid;
  border-image: linear-gradient(180deg, #6953A8, #59c4db) 1;
  padding-left: 24px;
  font-style: italic;
  color: #6b6b80;
  margin: 32px 0;
  font-size: 18px;
  line-height: 1.8;
}
.blog-content ul { margin: 16px 0 24px 0; padding-left: 0; }
.blog-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a5e;
  list-style: none;
}
.blog-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6953A8, #59c4db);
}

/* ===== SIDEBAR ===== */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-card { border-radius: 20px; background: #f8f6ff; padding: 28px; }
.sidebar-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: #2a2a3d; }
.sidebar-post {
  display: flex;
  gap: 14px;
  border-bottom: 1px solid rgba(105,83,168,0.08);
  padding: 14px 0;
  text-decoration: none;
  transition: all 0.3s;
}
.sidebar-post:first-of-type { padding-top: 0; }
.sidebar-post:last-of-type { border-bottom: none; padding-bottom: 0; }
.sidebar-post-img { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; flex-shrink: 0; transition: transform 0.3s; }
.sidebar-post:hover .sidebar-post-img { transform: scale(1.04); }
.sidebar-post-info { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.sidebar-post-title {
  font-size: 14px; font-weight: 600; color: #2a2a3d; line-height: 1.5; transition: color 0.3s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sidebar-post:hover .sidebar-post-title { color: #6953A8; }
.sidebar-post-date { font-size: 12px; color: #6b6b80; margin-top: 4px; }

/* ===== FAQ / ACCORDION ===== */
.faq-section { margin-top: 48px; }
.faq-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: #2a2a3d; }
.faq-item {
  border-radius: 16px;
  background: rgba(248,246,255,0.5);
  border: 1px solid rgba(105,83,168,0.08);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: rgba(105,83,168,0.15); }
.faq-item.open { border-color: rgba(105,83,168,0.15); box-shadow: 0 4px 20px rgba(105,83,168,0.06); }
.faq-question {
  width: 100%; padding: 20px 24px; font-size: 16px; font-weight: 600; text-align: left;
  background: transparent; color: #2a2a3d; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; cursor: pointer; line-height: 1.5;
  border: none; font-family: inherit;
}
.faq-question::after {
  content: '';
  display: block; width: 20px; height: 20px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236953A8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-question.active::after { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer-inner { padding: 0 24px 20px; color: #6b6b80; font-size: 15px; line-height: 1.7; }

/* ===== BLOG RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-header h1 { font-size: 32px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { gap: 32px; grid-template-columns: 1fr 300px; }
}
@media (max-width: 768px) {
  .page-header { min-height: auto; padding-top: 90px; padding-bottom: 36px; }
  .page-header h1 { font-size: 26px; }
  .blog-section { padding: 20px 0 40px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; gap: 40px; }
  .blog-sidebar { position: static; }
  .blog-content h2 { font-size: 24px; margin: 32px 0 12px; }
  .blog-content h3 { font-size: 19px; margin: 24px 0 10px; }
  .blog-content blockquote { font-size: 16px; }
  .blog-featured-img { border-radius: 16px; }
  .blog-meta { gap: 14px; flex-wrap: wrap; }
  .faq-title { font-size: 22px; }
  .faq-question { font-size: 15px; padding: 16px 20px; }
  .faq-answer-inner { padding: 0 20px 16px; font-size: 14px; }
}

/* ===== BURSLULUK SECTION ===== */
.bursluluk-section {
  position: relative;
  text-align: center;
}
.bursluluk-section .desk-bg {
  width: 100%;
  height: auto;
}
.bursluluk-section .mobil-bg {
  display: none;
  width: 100%;
  height: auto;
}
.bursluluk-section .geri-sayim-button {
  position: absolute;
  left: 280px;
  top: 94px;
}
.bursluluk-section .countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 24px 0 10px 0;
  flex-wrap: wrap;
}
.bursluluk-section .countdown h5,
.bursluluk-section .countdown .h5 {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
  color: #243353 !important;
  font-weight: bold;
  font-size: 26px !important;
  line-height: 1 !important;
  text-align: center;
  border: 4px solid rgba(156, 172, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(112, 129, 213, 0.5), 0 0 8px 6px rgba(36, 51, 83, 0.25);
}
.bursluluk-section .countdown h5 span,
.bursluluk-section .countdown .h5 span {
  font-size: 8px;
  font-weight: bold;
  color: #243353;
  text-transform: uppercase;
  margin-top: 1px;
  letter-spacing: 0.5px;
}
.bursluluk-section .btn {
  background-color: #6953A8;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 32px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.bursluluk-section .btn:hover {
  background-color: #5a44a0;
  transform: translateY(-2px);
}

/* Bursluluk responsive */
@media (max-width: 1024px) {
  .bursluluk-section .countdown h5,
  .bursluluk-section .countdown .h5 {
    width: 50px;
    height: 50px;
    font-size: 20px !important;
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(112, 129, 213, 0.5), 0 0 6px 4px rgba(36, 51, 83, 0.25);
  }
  .bursluluk-section .countdown h5 span,
  .bursluluk-section .countdown .h5 span {
    font-size: 7px;
  }
}
@media (max-width: 768px) {
  .bursluluk-section .desk-bg { display: none; }
  .bursluluk-section .mobil-bg { display: block; }
  .bursluluk-section .geri-sayim-button {
    left: 0;
    right: 0;
    top: 130px;
  }
  .bursluluk-section .countdown { gap: 12px; }
  .bursluluk-section .countdown h5,
  .bursluluk-section .countdown .h5 {
    width: 55px;
    height: 55px;
    font-size: 23px !important;
    border-width: 5px;
    box-shadow: 0 0 0 5px rgba(112, 129, 213, 0.5), 0 0 8px 6px rgba(36, 51, 83, 0.25);
  }
  .bursluluk-section .countdown h5 span,
  .bursluluk-section .countdown .h5 span {
    font-size: 6px;
  }
}
