/* =========================================================
   HIGH5 MEDYA — Design System
   Siyah + Altın, lüks gece etkinliği estetiği
   ========================================================= */

:root {
  --black: #060607;
  --black-soft: #0d0d0f;
  --panel: #141317;
  --panel-2: #1a181d;
  --line: rgba(232, 24, 90, 0.18);
  --line-strong: rgba(232, 24, 90, 0.4);
  --brand: #e8185a;
  --brand-2: #ff4f85;
  --brand-dim: #8f0d3a;
  --white: #f7f4ec;
  --muted: #a79f92;
  --muted-2: #756f66;
  --danger: #e05252;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --container: 1200px;
  --ff-display: "Unbounded", sans-serif;
  --ff-body: "Inter", sans-serif;
  --shadow-brand: 0 10px 40px -10px rgba(232, 24, 90, 0.35);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { list-style: none; padding: 0; }
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3vw + 1rem, 3rem); }
h3 { font-size: clamp(1.3rem, 1.4vw + 1rem, 1.7rem); }

p.lead { font-size: clamp(1.05rem, 1.2vw + 0.6rem, 1.25rem); color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brand);
}

.text-muted { color: var(--muted); }
.text-brand { color: var(--brand); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.container-narrow {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  padding-inline: 24px;
}

section { position: relative; padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.section-head {
  max-width: 680px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }

/* ---------- Decorative backgrounds (no photos needed) ---------- */
.bg-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.glow-orb.brand { background: radial-gradient(circle, rgba(232,24,90,0.5), transparent 70%); }
.glow-orb.faint { background: radial-gradient(circle, rgba(232,24,90,0.25), transparent 70%); }

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232, 24, 90, 0.35) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  border: 0;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand) 60%, var(--brand-dim));
  color: #ffffff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 46px -10px rgba(232,24,90,0.55); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: rgba(232,24,90,0.06); }
.btn-sm { padding: 11px 20px; font-size: 0.72rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(6, 6, 7, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--line);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.logo-text {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 700;
}
.logo-five {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  padding: 2px 7px;
  margin: 0 2px;
  border-radius: 6px;
  line-height: 1.3;
}

.main-nav ul { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a { display: block; padding: 10px 12px; border-radius: 6px; font-size: 0.85rem; }
.dropdown a:hover { background: rgba(232,24,90,0.08); color: var(--brand); }

.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  width: 18px; height: 1.5px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-inner { position: relative; z-index: 2; }
.hero .eyebrow { margin-bottom: 20px; }
.hero h1 { max-width: 900px; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero p.lead { max-width: 560px; margin-top: 24px; }
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 36px; margin-top: 64px; flex-wrap: wrap;
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong { font-family: var(--ff-display); color: var(--brand); font-size: 1rem; }
.hero-meta span { font-size: 0.82rem; color: var(--muted); }

.hero-page {
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.8rem; color: var(--muted-2); margin-bottom: 22px; flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: 0.5; }

/* Marquee strip */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--black-soft);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 40px;
}
.marquee-track span i { color: var(--brand); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.card-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(232,24,90,0.1);
  color: var(--brand);
  margin-bottom: 22px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; font-size: 0.82rem; letter-spacing: 0.04em;
  text-transform: uppercase; font-family: var(--ff-display); color: var(--brand);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

.service-card-number {
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--ff-display);
  font-size: 3rem;
  color: rgba(232,24,90,0.12);
}

/* Feature list */
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: 0.95rem; color: var(--muted);
}
.check-list li:last-child { border-bottom: none; }
.check-list svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.check-list strong { color: var(--white); }

/* Stats / trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between;
  padding: 28px 0;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  color: var(--muted); font-size: 0.9rem;
}
.trust-item svg { width: 26px; height: 26px; color: var(--brand); flex-shrink: 0; }

/* ---------- Visual placeholders (SVG scenes, no photography) ---------- */
.visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: radial-gradient(120% 120% at 20% 15%, rgba(232,24,90,0.22), transparent 55%), var(--panel);
}
.visual-frame.wide { aspect-ratio: 16 / 10; }
.visual-frame.square { aspect-ratio: 1 / 1; }
.visual-frame svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.visual-frame .frame-caption {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  font-family: var(--ff-display); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand);
  display: flex; align-items: center; gap: 8px;
}
.visual-frame .frame-caption::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }

/* ---------- Pricing / Packages ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  background: var(--panel);
  display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, rgba(232,24,90,0.08), var(--panel) 40%);
  box-shadow: var(--shadow-brand);
  transform: scale(1.03);
}
.price-card .badge {
  align-self: flex-start;
  font-family: var(--ff-display); font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #ffffff; background: var(--brand);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.price-card h3 { margin-bottom: 8px; }
.price-card .price-note { color: var(--muted); font-size: 0.88rem; margin-bottom: 22px; }
.price-card .check-list { margin-bottom: 28px; flex-grow: 1; }
.price-card .check-list li { border-bottom: 1px solid rgba(232,24,90,0.08); }

/* ---------- Timeline / Process ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step { position: relative; padding-top: 46px; }
.process-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--ff-display); font-size: 2.2rem; color: transparent;
  -webkit-text-stroke: 1px var(--brand); position: absolute; top: 0; left: 0;
}
.process-step h4 { margin-bottom: 10px; font-size: 1.05rem; }
.process-step p { color: var(--muted); font-size: 0.9rem; }

/* ---------- FAQ / Accordion ---------- */
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; background: none; border: none; color: var(--white);
  text-align: left; font-family: var(--ff-display); font-size: 1.02rem;
}
.accordion-trigger svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; transition: transform 0.25s ease; }
.accordion-item[data-open="true"] .accordion-trigger svg { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.accordion-panel-inner { padding-bottom: 22px; color: var(--muted); font-size: 0.95rem; max-width: 640px; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(232,24,90,0.12), rgba(232,24,90,0.02));
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { max-width: 620px; margin-inline: auto; }
.cta-band p { margin-top: 14px; max-width: 480px; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 30px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4/3;
}
.gallery-item.tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-item svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.gallery-item .g-label {
  position: absolute; inset: auto 0 0 0; padding: 18px;
  background: linear-gradient(0deg, rgba(6,6,7,0.9), transparent);
  font-family: var(--ff-display); font-size: 0.85rem; letter-spacing: 0.02em;
}
.gallery-item .g-tag { display: block; font-size: 0.68rem; letter-spacing: 0.12em; color: var(--brand); text-transform: uppercase; margin-bottom: 4px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--black-soft); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 16px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { color: var(--brand); border-color: var(--brand); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: var(--muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-col address { font-style: normal; color: var(--muted); font-size: 0.92rem; line-height: 1.9; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: var(--muted-2);
}
.footer-bottom a:hover { color: var(--brand); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #34d399, #16a34a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px -8px rgba(22,163,74,0.55);
  animation: pulse-wa 2.6s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 12px 34px -8px rgba(22,163,74,0.55); }
  50% { box-shadow: 0 12px 34px -4px rgba(22,163,74,0.85); }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.info-block { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-block svg { width: 24px; height: 24px; color: var(--brand); flex-shrink: 0; }
.info-block h4 { font-size: 0.95rem; margin-bottom: 4px; }
.info-block p, .info-block a { color: var(--muted); font-size: 0.92rem; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 26px; filter: grayscale(1) invert(0.92) contrast(0.85); }
.map-frame iframe { display: block; width: 100%; height: 280px; border: 0; }

/* ---------- Utilities ---------- */
.mt-0{margin-top:0} .mb-0{margin-bottom:0}
.flex{display:flex} .items-center{align-items:center} .gap-10{gap:10px}
.text-center{text-align:center}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .main-nav { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: rgba(6,6,7,0.98); backdrop-filter: blur(10px);
    padding: 30px 24px; transform: translateX(100%); transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .main-nav ul > li { width: 100%; border-bottom: 1px solid var(--line); }
  .main-nav a { display: block; padding: 16px 4px; font-size: 1rem; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; display: none;
    border: none; background: rgba(255,255,255,0.02); margin-bottom: 8px; }
  .has-dropdown.is-open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .header-cta.desktop-only { display: none; }
  .grid-3, .grid-2:not(.contact-grid) { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-meta { gap: 22px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}
