/* =============================================================
   Defcin — page-inner.css  |  Tüm İç Sayfalar Ortak Stil
   ============================================================= */

/* --- Sayfa Banner --- */
.page-banner {
  background: var(--color-navy);
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-banner__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--color-silver);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.page-banner__breadcrumb a { color: var(--color-silver); transition: color var(--transition-fast); }
.page-banner__breadcrumb a:hover { color: var(--color-gold); }
.page-banner__breadcrumb-sep { color: rgba(255,255,255,0.25); }
.page-banner__breadcrumb-current { color: var(--color-gold); }
.page-banner__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.page-banner__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-5);
  max-width: 720px;
}
.page-banner__desc {
  font-size: var(--fs-md);
  color: var(--color-silver-light);
  line-height: var(--lh-loose);
  max-width: 600px;
}

/* --- Split Layout --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }
.split--reverse > *:last-child  { order: 1; }
.split__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.split__img-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201,168,76,0.2);
  z-index: 1;
  pointer-events: none;
}
.split__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

/* --- Özellik Listesi --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-block: var(--space-6);
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-gold);
  transition: box-shadow var(--transition-normal);
}
.feature-item:hover { box-shadow: var(--shadow-md); }
.feature-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.10);
  border-radius: var(--radius-md);
}
.feature-item__icon svg {
  width: 20px;
  height: 20px;
  fill: none !important;
  stroke: var(--color-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.feature-item__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  margin-bottom: 2px;
}
.feature-item__text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
}

/* --- Marka Referans Kutusu --- */
.brand-ref-box {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  margin-top: var(--space-8);
}
.brand-ref-box__logo { height: 36px; width: auto; flex-shrink: 0; }
.brand-ref-box__divider { width: 1px; height: 36px; background: var(--color-border); flex-shrink: 0; }
.brand-ref-box__text { font-size: var(--fs-sm); color: var(--color-text-muted); line-height: var(--lh-normal); }
.brand-ref-box__text strong { display: block; font-weight: var(--fw-semibold); color: var(--color-navy); margin-bottom: 2px; }

/* --- CTA Bandı (iç sayfalarda tekrar) --- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, #1A2E45 0%, var(--color-navy) 50%, #0A1520 100%);
  padding-block: var(--space-20);
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.cta-band__inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin-inline: auto; }
.cta-band__title { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: var(--fw-bold); color: var(--color-white); line-height: var(--lh-snug); margin-bottom: var(--space-5); }
.cta-band__desc { font-size: var(--fs-md); color: var(--color-silver); line-height: var(--lh-loose); margin-bottom: var(--space-10); }
.cta-band__actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--space-4); }

/* --- Scroll Reveal --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  /* JS geç çalışırsa 0.6 sn sonra otomatik görünür */
  animation: revealFallback 0.4s ease 0.6s forwards;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.18s; }
[data-reveal][data-delay="3"] { transition-delay: 0.28s; }

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: var(--space-10); }
  .split--reverse > *:first-child { order: 0; }
  .split--reverse > *:last-child  { order: 0; }
}
@media (max-width: 768px) {
  .page-banner__title { font-size: clamp(1.5rem, 5vw, 2.25rem); }
  .brand-ref-box { flex-direction: column; gap: var(--space-3); text-align: center; }
  .brand-ref-box__divider { width: 50px; height: 1px; }
}
