/* ============================================================
   AJANS KİVİ — STÜDYO KİRALAMA SAYFA CSS
   ============================================================ */

/* ── Studio Hero ─────────────────────────────────────────── */
.studio-page-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  padding-bottom: 80px;
}
.studio-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(255,240,200,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(107,142,35,0.12) 0%, transparent 45%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}
/* Floor plan lines */
.studio-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 50px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 50px);
}
.studio-page-hero .container { position: relative; z-index: 2; }
.studio-page-hero .display-2 { color: var(--white); }
.studio-page-hero .body-lg { color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 540px; }
.studio-page-hero .hero-ctas { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

/* ── Floor Plan Section ──────────────────────────────────── */
.floorplan-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-soft);
}
.floorplan-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}
.floorplan-visual {
  position: sticky;
  top: 100px;
}
.floorplan-diagram {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  min-height: 420px;
}
/* SVG Floor plan diagram */
.fp-room {
  stroke: var(--border);
  stroke-width: 2;
  fill: none;
}
.fp-main { stroke: var(--accent); stroke-width: 2.5; fill: rgba(107,142,35,0.04); }
.fp-text { font-family: var(--font-body); fill: var(--text-mid); }
.fp-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: var(--accent);
}
.fp-dim { font-size: 11px; fill: var(--text-light); font-style: italic; }
.fp-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(107,142,35,0.3);
}

/* ── Tech Specs Grid ─────────────────────────────────────── */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.spec-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}
.spec-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.spec-card-icon {
  width: 44px; height: 44px;
  background: rgba(107,142,35,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.spec-card-body { flex: 1; }
.spec-card-body h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.spec-card-body p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* ── Rental Packages ─────────────────────────────────────── */
.packages-section {
  padding: var(--space-2xl) 0;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: 56px;
}
.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.35s var(--ease);
}
.pkg-card:hover { box-shadow: 0 16px 60px rgba(0,0,0,0.1); transform: translateY(-6px); }
.pkg-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(107,142,35,0.15);
}
.pkg-featured-label {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pkg-top {
  padding: 36px 32px 28px;
  border-bottom: 1px solid var(--border);
}
.pkg-card.featured .pkg-top { border-bottom-color: rgba(107,142,35,0.2); }
.pkg-duration {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pkg-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.pkg-subtitle { font-size: 14px; color: var(--text-mid); }
.pkg-body { padding: 28px 32px; }
.pkg-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pkg-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}
.pkg-check {
  width: 20px; height: 20px;
  background: rgba(107,142,35,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}
.pkg-card .btn { width: 100%; justify-content: center; }

/* ── Important Notes ─────────────────────────────────────── */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: 48px;
  padding: 0 var(--space-md);
}
.note-item {
  display: flex;
  gap: 14px;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.note-icon { font-size: 22px; flex-shrink: 0; }
.note-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.note-item p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

@media (max-width: 1024px) {
  .floorplan-inner { grid-template-columns: 1fr; }
  .floorplan-visual { position: static; }
  .packages-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .specs-grid { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; padding: 0; }
}
