/* Sinematik Hero — İzometrik bina + hotspot + marka kartları */

.hero-cine {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0A1424;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

/* Katmanlı arka plan */
.hero-cine::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 1200px 800px at 30% 50%, rgba(46,69,107,.6) 0%, transparent 60%),
    radial-gradient(ellipse 800px 600px at 75% 75%, rgba(201,169,97,.12) 0%, transparent 50%),
    linear-gradient(135deg, #0A1424 0%, #1A2B4A 50%, #0F1A2E 100%);
}

.hero-cine::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(201,169,97,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 700px 500px at 35% 55%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 700px 500px at 35% 55%, black 0%, transparent 70%);
}

/* Hareketli ışık huzmeleri */
.hero-beams { position: absolute; inset: 0; z-index: 3; overflow: hidden; pointer-events: none; }
.hero-beams .beam {
  position: absolute;
  width: 2px; height: 140%;
  background: linear-gradient(180deg, transparent 0%, rgba(201,169,97,.5) 50%, transparent 100%);
  filter: blur(2px);
  transform-origin: top;
  animation: beamSweep 8s ease-in-out infinite;
}
.hero-beams .beam:nth-child(1) { left: 20%; transform: rotate(15deg); animation-delay: 0s; }
.hero-beams .beam:nth-child(2) { left: 50%; transform: rotate(-10deg); animation-delay: 2s; opacity: .5; }
.hero-beams .beam:nth-child(3) { left: 80%; transform: rotate(20deg); animation-delay: 4s; opacity: .7; }
@keyframes beamSweep {
  0%, 100% { opacity: 0; transform: translateY(-30%) rotate(15deg); }
  50% { opacity: 1; transform: translateY(0) rotate(15deg); }
}

/* Parçacıklar */
.hero-particles { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero-particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold), 0 0 4px var(--gold);
  animation: floatUp linear infinite;
  opacity: 0;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}

/* Container */
.hero-cine .container {
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 1100px) {
  .hero-cine .container { grid-template-columns: 1fr; gap: 40px; }
}

/* Sol — Metin */
.hero-cine-left { color: var(--white); animation: slideInLeft 1s var(--ease) both; }
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-cine-left h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero-cine-left h1 em {
  font-style: italic;
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero-cine-left h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(201,169,97,.4), transparent);
  filter: blur(8px);
}
.hero-cine-left p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cine-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Eyebrow line */
.hero-cine-left .eyebrow { color: var(--gold); margin-bottom: 20px; }

/* Sağ — İzometrik bina + servis kartları */
.hero-cine-right {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: center;
  animation: slideInRight 1s var(--ease) .2s both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 1100px) {
  .hero-cine-right { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 700px) {
  .hero-cine-right { grid-template-columns: 1fr; }
}

/* İzometrik sahne */
.iso-stage {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.iso-stage svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 30px 60px rgba(201,169,97,.2));
}

/* Wireframe katlar — yükselme animasyonu */
.iso-floor {
  fill: rgba(201,169,97,.04);
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(201,169,97,.5));
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: floorRise 1s var(--ease) both;
}
.iso-floor:nth-child(1) { animation-delay: .8s; }
.iso-floor:nth-child(2) { animation-delay: 1.0s; }
.iso-floor:nth-child(3) { animation-delay: 1.2s; }
.iso-floor:nth-child(4) { animation-delay: 1.4s; }
.iso-floor:nth-child(5) { animation-delay: 1.6s; }

@keyframes floorRise {
  from { opacity: 0; transform: translateY(80px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.iso-edge {
  stroke: var(--gold);
  stroke-width: 1;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  opacity: .55;
  animation: edgeDraw 1.5s var(--ease) 1.8s forwards;
}
@keyframes edgeDraw { to { stroke-dashoffset: 0; } }

.iso-glow {
  fill: url(#isoGlow);
  opacity: 0;
  animation: glowFade 2s ease-out 2s forwards;
}
@keyframes glowFade { to { opacity: 1; } }

/* Hotspot pinleri */
.hotspot {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  font-family: var(--font-sans);
  box-shadow: 0 0 0 4px rgba(201,169,97,.25), 0 0 30px rgba(201,169,97,.6);
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  animation: pinPop .5s var(--ease) both;
}
.hotspot::before {
  content: '';
  position: absolute; inset: -8px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: pinPulse 2.5s ease-out infinite;
}
@keyframes pinPop {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pinPulse {
  0% { opacity: .8; transform: scale(.8); }
  100% { opacity: 0; transform: scale(2); }
}
.hotspot-label {
  position: absolute;
  white-space: nowrap;
  background: rgba(15,26,46,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,97,.4);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: .72rem;
  letter-spacing: .15em;
  font-weight: 600;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: 14px;
}

.hotspot-1 { top: 78%; left: 30%; animation-delay: 2.4s; }
.hotspot-1 .hotspot-label { right: 100%; left: auto; margin-left: 0; margin-right: 14px; }
.hotspot-2 { top: 50%; left: 65%; animation-delay: 2.6s; }
.hotspot-3 { top: 18%; left: 50%; animation-delay: 2.8s; }
.hotspot-3 .hotspot-label { left: 50%; top: -28px; transform: translateX(-50%); margin: 0; }

/* Connector çizgiler */
.hotspot-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform-origin: left;
  opacity: 0;
  animation: lineDraw .5s ease-out forwards;
}

/* Marka servis kartları */
.brand-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.brand-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,97,.18);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  color: var(--white);
  transition: all .35s var(--ease);
  opacity: 0;
  animation: cardSlide .6s var(--ease) both;
}
.brand-card:nth-child(1) { animation-delay: 1.4s; }
.brand-card:nth-child(2) { animation-delay: 1.55s; }
.brand-card:nth-child(3) { animation-delay: 1.7s; }
.brand-card:nth-child(4) { animation-delay: 1.85s; }
@keyframes cardSlide {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.brand-card:hover {
  background: rgba(201,169,97,.1);
  border-color: var(--gold);
  transform: translateX(-6px);
  box-shadow: -10px 0 40px rgba(201,169,97,.15);
  color: var(--white);
}

.brand-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(201,169,97,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all .3s;
}
.brand-card:hover .brand-card-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(-5deg) scale(1.05);
}
.brand-card-icon svg { width: 22px; height: 22px; }

.brand-card-text { flex: 1; min-width: 0; }
.brand-card-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: .01em;
}
.brand-card-text span {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.brand-card-arrow {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all .3s;
}
.brand-card:hover .brand-card-arrow {
  background: var(--gold);
  color: var(--navy);
  transform: translateX(2px);
}
.brand-card-arrow svg { width: 14px; height: 14px; }

/* Hero scroll indicator */
.hero-cine-scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .25em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-cine-scroll .line {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.2);
  position: relative; overflow: hidden;
}
.hero-cine-scroll .line::after {
  content: '';
  position: absolute; top: -36px; left: 0;
  width: 1px; height: 36px;
  background: var(--gold);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot { 0% { top: -36px; } 100% { top: 36px; } }
