/* --- FORMS --- */
form .age-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  z-index: -1;
}
form .form-error {
  background: red;
  color: white;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 14px;
  margin: 5px 0;
}
form .form-error:empty {
  padding: 0;
  margin: 0;
}

/* --- EDITOR CONTENT BASE STYLES --- */
.editor-content-wrapper img {
  max-width: 100%;
}

.editor-content-wrapper a {
  color: blue;
}

.editor-content-wrapper table tr td {
  border: 1px solid #ccc;
  padding: 5px;
}

.editor-content-wrapper br {
  display: block !important;
}

.editor-content-wrapper p {
  margin-bottom: 10px !important;
}

.editor-content-wrapper p:empty {
  height: 1px !important;
}

.editor-content-wrapper ol,
.editor-content-wrapper ul {
  padding-left: 40px;
  margin: 0px;
}

.editor-content-wrapper ol {
  list-style-type: decimal;
}

.editor-content-wrapper ul {
  list-style-type: disc;
}

/* --- RESPONSIVE GRID SYSTEM (RB-GRID) --- */
.rb-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

.rb-col {
  box-sizing: border-box;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  min-height: 2em;
}

@media (min-width: 768px) {
  .rb-md-50 {
    width: 50%;
  }
  .rb-md-100 {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .rb-lg-33 {
    width: 33.333%;
  }
  .rb-lg-40 {
    width: 40%;
  }
  .rb-lg-50 {
    width: 50%;
  }
  .rb-lg-60 {
    width: 60%;
  }
  .rb-lg-66 {
    width: 66.666%;
  }
  .rb-lg-100 {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .rb-xl-25 {
    width: 25%;
  }
  .rb-xl-33 {
    width: 33.333%;
  }
  .rb-xl-40 {
    width: 40%;
  }
  .rb-xl-50 {
    width: 50%;
  }
  .rb-xl-60 {
    width: 60%;
  }
  .rb-xl-66 {
    width: 66.666%;
  }
  .rb-xl-75 {
    width: 75%;
  }
  .rb-xl-100 {
    width: 100%;
  }
}

/* --- GALLERY & LIGHTBOX --- */
.entity-gallery-items a img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  display: block;
}

#lbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
}

#lbox-overlay.lbox-active {
  display: flex;
}

#lbox-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lbox-content img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 3px;
}

#lbox-content iframe {
  display: block;
  width: 85vw;
  height: calc(85vw * 9 / 16);
  max-height: 85vh;
  border: none;
  border-radius: 3px;
}

@media (max-width: 640px) {
  #lbox-content iframe {
    width: 100vw;
    height: calc(100vw * 9 / 16);
  }
}

.lbox-btn {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.lbox-btn:hover {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
}

#lbox-close {
  top: 16px;
  right: 16px;
}

#lbox-prev,
#lbox-next {
  top: 50%;
  transform: translateY(-50%);
}

#lbox-prev {
  left: 16px;
}
#lbox-next {
  right: 16px;
}

#lbox-prev[hidden],
#lbox-next[hidden] {
  display: none;
}

/* PAGE BUILDER COMMON */

/* ── CSS değişkenleri ────────────────────────────────────────────────────── */

:root {
  --pb-accent: #6d28d9;
  --pb-accent-light: #ede9fe;
  --pb-fg: #1f2937;
  --pb-muted: #9ca3af;
  --pb-border: #e5e7eb;
  --pb-surface: #ffffff;
  --pb-hover: #f3f4f6;
  --pb-danger: #dc2626;
}

/* ── Grid sistemi ────────────────────────────────────────────────────────── */

.pb-grid {
  display: grid;
  gap: 50px;
}

.pb-grid--cols-1 {
  grid-template-columns: 1fr;
}
.pb-grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.pb-grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.pb-grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.pb-grid--cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.pb-grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1023px) {
  .pb-grid--cols-4,
  .pb-grid--cols-5,
  .pb-grid--cols-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .pb-grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .pb-grid--cols-2,
  .pb-grid--cols-3,
  .pb-grid--cols-4,
  .pb-grid--cols-5,
  .pb-grid--cols-6 {
    grid-template-columns: 1fr;
  }
}

/* ── 12-kolon grid sistemi (flexibel kombinasyonlar) ──────────────────────── */

.pb-grid--12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.pb-col-1 {
  grid-column: span 1;
}
.pb-col-2 {
  grid-column: span 2;
}
.pb-col-3 {
  grid-column: span 3;
}
.pb-col-4 {
  grid-column: span 4;
}
.pb-col-5 {
  grid-column: span 5;
}
.pb-col-6 {
  grid-column: span 6;
}
.pb-col-7 {
  grid-column: span 7;
}
.pb-col-8 {
  grid-column: span 8;
}
.pb-col-9 {
  grid-column: span 9;
}
.pb-col-10 {
  grid-column: span 10;
}
.pb-col-11 {
  grid-column: span 11;
}
.pb-col-12 {
  grid-column: span 12;
}

/* Tablet: 6-kolon grid'e dönüş */
@media (max-width: 1023px) {
  .pb-grid--12 {
    grid-template-columns: repeat(6, 1fr);
  }

  .pb-col-1,
  .pb-col-2 {
    grid-column: span 1;
  }
  .pb-col-3 {
    grid-column: span 2;
  }
  .pb-col-4 {
    grid-column: span 2;
  }
  .pb-col-5 {
    grid-column: span 3;
  }
  .pb-col-6 {
    grid-column: span 3;
  }
  .pb-col-7 {
    grid-column: span 4;
  }
  .pb-col-8 {
    grid-column: span 4;
  }
  .pb-col-9 {
    grid-column: span 5;
  }
  .pb-col-10 {
    grid-column: span 5;
  }
  .pb-col-11 {
    grid-column: span 6;
  }
  .pb-col-12 {
    grid-column: span 6;
  }
}

/* Mobil: tam genişlik */
@media (max-width: 639px) {
  .pb-grid--12 {
    grid-template-columns: 1fr;
  }

  .pb-col-1,
  .pb-col-2,
  .pb-col-3,
  .pb-col-4,
  .pb-col-5,
  .pb-col-6,
  .pb-col-7,
  .pb-col-8,
  .pb-col-9,
  .pb-col-10,
  .pb-col-11,
  .pb-col-12 {
    grid-column: span 1;
  }
}

/* ── Kart widget ─────────────────────────────────────────────────────────── */

.pb-card:not(.pb-gallery-item):not(.free-zone) {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.pb-card__media {
}

.pb-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

.pb-card__body {
  padding: 14px;
}

.pb-card__title {
  margin-bottom: 6px;
}

/* ── Liste widget ────────────────────────────────────────────────────────── */

.pb-list-widget {
  display: flex;
  flex-direction: column;
}

.pb-list-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 6px;
  background: #fff;
}

.pb-list-item__icon {
  flex-shrink: 0;
}

.pb-list-item__text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

/* ── Galeri widget ───────────────────────────────────────────────────────── */

.pb-gallery-item {
  position: relative;
}

.pb-gallery-item__img {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  background: var(--pb-hover);
}

.pb-gallery-item__img img {
  width: 100%;
  height: auto;
}

.pb-gallery-item__img a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}

/* ── Dosya indirme widget ────────────────────────────────────────────────── */

.pb-download {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--pb-border);
}

.pb-download-content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.pb-download__icon {
  color: #3b82f6;
  flex-shrink: 0;
  line-height: 0;
}

.pb-download__body {
  flex: 1;
  min-width: 0;
}

.pb-download__name {
  font-weight: 600;
  margin-bottom: 4px;
  color: #333 !important;
  word-break: break-word;
}

.pb-download__desc {
  font-size: 13px;
  color: #333 !important;
  line-height: 1.5;
  word-break: break-word;
}

.pb-download__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #333;
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.pb-download__btn:hover {
  filter: brightness(1.08);
}

.pb-svg-icon {
  display: block;
  flex-shrink: 0;
}
.pb-widget,
.pb-free-zone {
  margin: 65px 0;
}
.pb-grid-inner .pb-widget,
.pb-grid-inner .pb-widget .pb-cards-inner,
.pb-grid-inner .pb-widget .pb-cards-inner .pb-card {
  height: 100%;
}

/* ── Site Notice Bar ─────────────────────────────────────────────────── */
#siteNoticeBar {
  display: none;
  position: fixed;
  z-index: 9999;
  max-width: calc(100% - 40px);
  width: 600px;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  line-height: 1.4;
  font-size: 14px;
}
#siteNoticeBar .editor-content-wrapper,
#siteNoticeBar .editor-content-wrapper p {
  font-size: 14px;
  line-height: 20px;
}
#siteNoticeBar a:hover {
  color: inherit !important;
}

#siteNoticeBar a {
  color: inherit !important;
  display: inline;
  padding-bottom: 1px;
  border-bottom: 1px solid;
}

#siteNoticeBar .notice-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
#siteNoticeBar #siteNoticeNecessary {
  padding: 8px 16px;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  opacity: 0.75;
}

#siteNoticeBar #siteNoticeConfirm {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.pb-button {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  outline: none;
  padding: 10px 16px;
  font-size: 14px;
  transition: all 0.2s;
  position: relative;
  box-shadow: 0 2px 4px #0000001a;
  display: inline-block;
}

/* --------------------HAZIR ŞABLONLAR ---------------------- */

/* ================================================================
   PB Custom Widgets — Hero · CTA · Hakkımızda
   ================================================================ */

/* ── Responsive: widget bağlamlarında kolon yığılması ─────────── */
@media (max-width: 768px) {
  .pb-hero .pb-grid-inner > [class*='pb-col-'],
  .pb-cta-widget .pb-grid-inner > [class*='pb-col-'],
  .pb-about .pb-grid-inner > [class*='pb-col-'],
  .pb-about-3col .pb-grid-inner > [class*='pb-col-'] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* ================================================================
   ORTAK BUTONLAR
   ================================================================ */
.pb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
  border: 2px solid transparent;
}

.pb-btn--primary {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.pb-btn--primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

.pb-btn--outline {
  background: transparent;
  color: #0f172a;
  border-color: #cbd5e1;
}

.pb-btn--outline:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}

.pb-btn--white {
  background: #fff;
  color: #2563eb;
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.pb-btn--white:hover {
  background: #eff6ff;
  transform: translateY(-1px);
}

.pb-btn--white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.pb-btn--white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .pb-hero .pb-btn,
  .pb-cta-widget .pb-btn {
    width: 100%;
    text-align: center;
  }
}

/* ================================================================
   HERO
   ================================================================ */

.pb-hero {
  position: relative;
  overflow: hidden;
}

/* ── Ortalı hero içerik alanı ──────────────────────────────────── */
.pb-hero__content {
  padding: 96px 56px;
}

.pb-hero__content--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Badge / Eyebrow ───────────────────────────────────────────── */
.pb-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(37, 99, 235, 0.3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.06);
  margin-bottom: 24px;
}

.pb-hero__badge--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

/* ── Başlık ────────────────────────────────────────────────────── */
.pb-hero__title {
  max-width: 760px;
  margin-bottom: 20px;
}

.pb-hero__title h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.03em;
}

.pb-hero__title--light h1 {
  color: #fff;
}

/* ── Alt Başlık ────────────────────────────────────────────────── */
.pb-hero__subtitle {
  max-width: 560px;
  margin-bottom: 40px;
}

.pb-hero__subtitle p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #475569;
  margin: 0;
}

.pb-hero__subtitle--light p {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Buton grubu ───────────────────────────────────────────────── */
.pb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pb-hero__content--center .pb-hero__actions {
  justify-content: center;
}

/* ── Görsel kolon (split) ──────────────────────────────────────── */
.pb-hero__img-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px 48px 24px;
}

.pb-hero__img-wrap {
  position: relative;
  width: 100%;
  z-index: 1;
}

.pb-hero__img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
}

.pb-hero__img-deco {
  position: absolute;
  inset: -14px -14px 14px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #bfdbfe, #ddd6fe);
  z-index: 0;
}

/* ── Metin kolon (split) ───────────────────────────────────────── */
.pb-hero__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 40px 72px 56px;
}

/* ── Arkaplan Görsel Hero ──────────────────────────────────────── */
.pb-hero--bg {
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.pb-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pb-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.42) 100%);
  z-index: 1;
}

.pb-hero--bg .pb-hero__content {
  position: relative;
  z-index: 2;
}

/* ── Dekoratif nokta deseni ────────────────────────────────────── */
.pb-hero__dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background-image: radial-gradient(circle, #cbd5e1 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .pb-hero__content {
    padding: 56px 24px;
  }

  .pb-hero__text-col {
    padding: 48px 24px 24px;
  }

  .pb-hero__img-col {
    padding: 16px 24px 40px;
  }

  .pb-hero__actions {
    flex-direction: column;
    width: 100%;
  }
}

/* ================================================================
   CTA WIDGET
   ================================================================ */

.pb-cta-widget {
  position: relative;
  overflow: hidden;
}

/* ── CTA Banner (Gradyan arka plan) ────────────────────────────── */
.pb-cta-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #3b82f6 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.pb-cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.pb-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 38%;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.pb-cta__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 32px 56px 52px;
}

.pb-cta__action-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 52px 40px 24px;
}

.pb-cta__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.pb-cta__eyebrow--dark {
  color: #2563eb;
}

.pb-cta__title {
  margin-bottom: 14px;
}

.pb-cta__title h2 {
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
}

.pb-cta__title--dark h2 {
  color: #0f172a;
}

.pb-cta__desc {
  margin-bottom: 28px;
}

.pb-cta__desc p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.pb-cta__desc--dark p {
  color: #64748b;
}

.pb-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── CTA Ortalı ────────────────────────────────────────────────── */
.pb-cta-centered {
  padding: 80px 48px;
  text-align: center;
  background: #f8fafc;
  border-radius: 24px;
}

.pb-cta-centered .pb-cta__title h2 {
  max-width: 600px;
  margin: 0 auto;
  color: #0f172a;
}

.pb-cta-centered .pb-cta__desc {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.pb-cta-centered .pb-cta__buttons {
  justify-content: center;
}

/* ── CTA Kart ──────────────────────────────────────────────────── */
.pb-cta-card-wrapper {
  padding: 64px 40px;
}

.pb-cta-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pb-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #7c3aed, #f59e0b);
}

.pb-cta-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}

.pb-cta-card__title {
  margin-bottom: 14px;
}

.pb-cta-card__title h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.pb-cta-card__desc {
  margin-bottom: 32px;
}

.pb-cta-card__desc p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.pb-cta-card__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 768px) {
  .pb-cta__text-col {
    padding: 40px 24px 20px;
  }

  .pb-cta__action-col {
    padding: 0 24px 40px;
    justify-content: flex-start;
  }

  .pb-cta-centered {
    padding: 48px 24px;
  }

  .pb-cta-card {
    padding: 40px 24px;
  }

  .pb-cta-card-wrapper {
    padding: 40px 16px;
  }

  .pb-cta__buttons {
    flex-direction: column;
    width: 100%;
  }
}

/* ================================================================
   HAKKIMIZDA — ABOUT
   ================================================================ */

.pb-about {
  position: relative;
  overflow: hidden;
}

/* ── Görsel kolonlar ───────────────────────────────────────────── */
.pb-about__img-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 32px 56px 56px;
}

.pb-about__img-col--right {
  padding: 56px 56px 56px 32px;
}

.pb-about__img-wrap {
  position: relative;
  width: 100%;
}

.pb-about__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.pb-about__img-deco {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 62%;
  height: 62%;
  background: linear-gradient(135deg, #bfdbfe, #ddd6fe);
  border-radius: 16px;
  z-index: 0;
}

/* ── Metin kolonlar ────────────────────────────────────────────── */
.pb-about__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 56px 56px 40px;
}

.pb-about__text-col--left {
  padding: 56px 40px 56px 56px;
}

/* ── Eyebrow ───────────────────────────────────────────────────── */
.pb-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 14px;
}

.pb-about__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Başlık ────────────────────────────────────────────────────── */
.pb-about__title {
  margin-bottom: 18px;
}

.pb-about__title h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
}

/* ── Gövde metin ───────────────────────────────────────────────── */
.pb-about__body {
  margin-bottom: 28px;
}

.pb-about__body p {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 14px;
}

.pb-about__body p:last-child {
  margin-bottom: 0;
}

/* ── Daha fazla linki ──────────────────────────────────────────── */
.pb-about__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.pb-about__link:hover {
  gap: 14px;
}

/* ── İki görsel kolon ──────────────────────────────────────────── */
.pb-about__dual-col {
  position: relative;
  padding: 56px 32px 56px 56px;
  min-height: 420px;
}

.pb-about__dual-img-top {
  width: 78%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.pb-about__dual-img-bottom {
  width: 52%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  position: absolute;
  bottom: 32px;
  right: 16px;
  border: 5px solid #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

/* ── İstatistikler ─────────────────────────────────────────────── */
.pb-about__stats {
  display: flex;
  gap: 0;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #e2e8f0;
}

.pb-about__stat {
  flex: 1;
  padding-right: 24px;
}

.pb-about__stat + .pb-about__stat {
  padding-left: 24px;
  padding-right: 24px;
  border-left: 1px solid #e2e8f0;
}

.pb-about__stat-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}

.pb-about__stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── Üç Kolon About ────────────────────────────────────────────── */
.pb-about-3col {
  padding: 80px 40px 64px;
}

.pb-about-3col__header {
  padding: 0 24px 56px;
  text-align: center;
}

.pb-about-3col__header .pb-about__eyebrow {
  justify-content: center;
}

.pb-about-3col__header .pb-about__title h2 {
  max-width: 580px;
  margin: 0 auto 14px;
}

.pb-about-3col__header .pb-about__body {
  max-width: 520px;
  margin: 0 auto;
}

.pb-about-col-item {
  padding: 32px 28px;
}

.pb-about-col-item + .pb-about-col-item {
  border-left: 1px solid #e2e8f0;
}

.pb-about-col-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  margin-bottom: 20px;
}

.pb-about-col-title {
  margin-bottom: 10px;
}

.pb-about-col-title h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}

.pb-about-col-text p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .pb-about__img-col,
  .pb-about__img-col--right {
    padding: 32px 24px 16px;
  }

  .pb-about__text-col,
  .pb-about__text-col--left {
    padding: 16px 24px 48px;
  }

  .pb-about__dual-col {
    padding: 32px 24px;
    min-height: 320px;
  }

  .pb-about__stats {
    flex-wrap: wrap;
  }

  .pb-about__stat {
    flex: 0 0 50%;
    padding: 12px 16px 12px 0;
  }

  .pb-about__stat + .pb-about__stat {
    border-left: none;
  }

  .pb-about__stat:nth-child(2) {
    padding-left: 16px;
    border-left: 1px solid #e2e8f0;
  }

  .pb-about-3col {
    padding: 48px 16px;
  }

  .pb-about-col-item + .pb-about-col-item {
    border-left: none;
    border-top: 1px solid #e2e8f0;
  }
}
