/* ============================================================
   AJANS KİVİ — HOME PAGE SPECIFIC STYLES
   ============================================================ */

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out, transform 8s ease-out;
}

/* Slide 1 - zoom out effect */
.hero-slide:nth-child(1) {
  transform: scale(1.08);
}
.hero-slide:nth-child(1).active {
  opacity: 1;
  transform: scale(1);
}

/* Slide 2 - zoom in effect */
.hero-slide:nth-child(2) {
  transform: scale(1);
}
.hero-slide:nth-child(2).active {
  opacity: 1;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.75) 0%,      /* blends bottom edge with page body */
    rgba(10, 10, 10, 0.15) 60%,
    rgba(10, 10, 10, 0.25) 100%
  ),
  linear-gradient(
    to right,
    rgba(10, 10, 10, 0.45) 0%,     /* light contrast shadow behind text */
    rgba(10, 10, 10, 0.1) 40%,
    transparent 100%
  );
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-text { max-width: 680px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,142,35,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(107,142,35,0); }
}

.hero-h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

/* Hero inline stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 32px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  width: fit-content;
}
.hero-stat { text-align: center; padding: 0 28px; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  display: block;
}
.hero-stat-div {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1.5s ease forwards;
  animation-delay: 1.5s;
  opacity: 0;
}
@keyframes fadeInUp {
  to { opacity: 1; }
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLineAnim 2s ease-in-out infinite;
}
@keyframes scrollLineAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── Service Card BG Elements ───────────────────────────── */
.srv-bg-element {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}
.srv-bg-ghost {
  background:
    radial-gradient(ellipse 80px 140px at 50% 50%, rgba(255,255,255,0.5) 0%, transparent 70%) center 40% no-repeat;
}
.srv-bg-play {
  background:
    radial-gradient(circle 50px at 50% 50%, rgba(255,255,255,0.4) 0%, transparent 60%) center center no-repeat;
}
.srv-bg-arch {
  background:
    linear-gradient(rgba(255,255,255,0) 60%, rgba(255,255,255,0.05) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 40px
    );
}

/* ── Studio Section ─────────────────────────────────────── */
.studio-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.studio-features {
  margin: 24px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.studio-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}
.sf-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

/* Studio Visual */
.studio-visual { position: relative; }
.studio-visual-main {
  position: relative;
  height: 440px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-dark);
}
.studio-vis-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255,240,200,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(107,142,35,0.1) 0%, transparent 50%),
    linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}
.studio-vis-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 60px
    );
}
/* Cyclorama curve illusion */
.studio-vis-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.07) 0%, transparent 60%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.studio-spec-badge {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spec-top { top: 24px; right: 24px; }
.spec-side { bottom: 24px; left: 24px; }
.spec-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}
.spec-unit { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; }

.studio-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.studio-mini {
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
}

/* ── Mobile Nav Menu ────────────────────────────────────── */


/* ── Light Service Card (E-Commerce Banner) ─────────────── */
/* ── Abstract Editorial Service Banner Concept ───────────── */
.srv-card-banner {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  border-left: 1px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: all 0.5s var(--ease);
}

.srv-card-banner .srv-overlay {
  background: transparent !important;
  border-radius: 0 !important;
}

.srv-card-banner:hover .srv-overlay {
  background: transparent !important;
}

/* Abstract visual composition container */
.banner-composition {
  position: absolute;
  right: 5%;
  top: 10%;
  width: 45%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

/* Soft glowing sphere in background */
.banner-sphere {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--sphere-color, rgba(107,142,35,0.12));
  filter: blur(30px);
  z-index: 1;
  transition: all 0.6s var(--ease);
}

/* Minimal architectural outline frame */
.banner-outline-frame {
  position: absolute;
  width: 80%;
  height: 90%;
  border: 1px solid rgba(26, 26, 26, 0.05);
  z-index: 2;
  transition: all 0.6s var(--ease);
}

/* The actual product image container */
.banner-product-img {
  width: 75%;
  height: 85%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.04));
  transition: transform 0.6s var(--ease);
}

/* Hover Actions */
.srv-card-banner:hover {
  border-bottom-color: var(--accent) !important;
  border-left-color: var(--accent) !important;
  box-shadow: none !important;
}

.srv-card-banner:hover .banner-sphere {
  transform: scale(1.25);
  filter: blur(20px);
  background: var(--sphere-color-hover, rgba(107,142,35,0.18));
}

.srv-card-banner:hover .banner-outline-frame {
  transform: rotate(-3deg) scale(1.02);
  border-color: rgba(107, 142, 35, 0.15);
}

.srv-card-banner:hover .banner-product-img {
  transform: translateY(-6px) scale(1.03);
}

/* Content overrides for light banner */
.srv-card-banner .srv-content {
  color: #1a1a1a !important;
  z-index: 4;
}

.srv-card-banner .srv-content h3 {
  color: #1a1a1a !important;
}

.srv-card-banner .srv-link {
  color: #1a1a1a !important;
}

.col-span-12 { grid-column: span 12; }

/* Video card background styling */
.srv-card-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.srv-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.srv-card:hover .srv-card-video {
  transform: scale(1.04);
}

/* ── Section Header ─────────────────────────────────────── */
.section-header { margin-bottom: 56px; }

/* ── Responsive Hero ────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content { padding-bottom: 56px; }
  .hero-stats {
    flex-direction: row;
    padding: 16px 20px;
    gap: 0;
    width: 100%;
  }
  .hero-stat { padding: 0 16px; }
  .hero-stat-num { font-size: 24px; }
  .studio-inner { grid-template-columns: 1fr; }
  .studio-visual { display: none; }
  .studio-features { grid-template-columns: 1fr; }
}
