*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary:   #1e1e38;
  --accent:    #ff2d55;
  --accent2:   #1a56db;
  --light:     #f5f5f5;
  --white:     #ffffff;
  --gray:      #888;
  --card-bg:   rgba(255,255,255,0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--primary);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233,69,96,0.3);
  padding: 1rem 0;
  transition: background 0.3s;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: #c73652 !important;
  transform: translateY(-2px);
}

/* ── DROPDOWN ── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  transition: transform 0.2s;
  display: inline-block;
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(13,13,30,0.97);
  border: 1px solid rgba(233,69,96,0.25);
  border-radius: 8px;
  min-width: 240px;
  padding: 0.4rem 0;
  z-index: 1001;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  /* Boşluk bırakmak yerine padding ile kapanmayı önle */
  margin-top: 0;
  padding-top: 0.8rem;
}

/* Menüyü açık tutan görünmez köprü */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.8rem;
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.3rem;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  position: relative;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width 0.2s;
  border-radius: 0 2px 2px 0;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  color: var(--white);
  background: rgba(233,69,96,0.1);
  padding-left: 1.8rem;
}

.dropdown-menu a:hover::before {
  width: 3px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
  animation: dropFadeIn 0.18s ease forwards;
}

@keyframes dropFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── BTN SECONDARY ── */
.btn-secondary {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.5rem 1.3rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}

/* ── HERO ── */
@keyframes heroBgDrift {
  0%   { background-position: center 30%; }
  50%  { background-position: center 55%; }
  100% { background-position: center 30%; }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('images/index-hero.jpg');
  background-size: 120% auto;
  background-position: center 30%;
  background-color: #12122a;
  animation: heroBgDrift 45s ease-in-out infinite;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 18, 42, 0.72) 0%,
    rgba(13, 45, 107, 0.55) 55%,
    rgba(26, 10, 46, 0.70) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* Parlayan arka plan ışığı */
.hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,85,0.18) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1);   opacity: 0.8; }
  50%       { transform: scale(1.15); opacity: 1; }
}

/* Yüzen dekoratif noktalar */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
  animation: floatDot 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes floatDot {
  0%, 100% { transform: translateY(0) scale(1);   opacity: 0.55; }
  50%       { transform: translateY(-18px) scale(1.3); opacity: 0.9; }
}

/* Sol alt mavi parlama ışığı */
.hero-glow-blue {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,0.22) 0%, transparent 70%);
  bottom: -120px;
  left: -80px;
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite reverse;
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--accent);
  display: block;
}

.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, #ff2d55, #c9133a);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 6px 22px rgba(255,45,85,0.45);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff5577, #e94560);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,45,85,0.65);
}

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(233,69,96,0.1);
  transform: translateY(-3px);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-shape {
  width: 420px;
  height: 420px;
  position: relative;
}

.shape-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(233,69,96,0.4);
  animation: spin 18s linear infinite;
}

.shape-ring:nth-child(1) { width: 100%; height: 100%; top: 0; left: 0; }
.shape-ring:nth-child(2) { width: 76%; height: 76%; top: 12%; left: 12%; animation-duration: 12s; animation-direction: reverse; border-color: rgba(26,86,219,0.8); }
.shape-ring:nth-child(3) { width: 52%; height: 52%; top: 24%; left: 24%; animation-duration: 8s; border-color: rgba(255,45,85,0.8); }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.shape-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(255,45,85,0.55), 0 0 80px rgba(26,86,219,0.3);
  animation: floatCenter 4s ease-in-out infinite;
}

@keyframes floatCenter {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%       { transform: translate(-50%, -50%) translateY(-12px); }
}

.shape-center svg {
  width: 80px;
  height: 80px;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
}

/* ── STATS ── */
.stats-bar {
  background: var(--accent2);
  padding: 2.5rem 0;
}

.stats-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
}

.stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
}

/* ── SECTION BASE ── */
section {
  padding: 6rem 0;
}

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  margin-top: 0.5rem;
  transition: width 0.4s ease;
}

.section-wrap:hover .section-title::after,
.section-left:hover .section-title::after {
  width: 100%;
}

.section-title span {
  color: var(--accent);
}

.section-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 3rem;
}

/* ── REVEAL ANİMASYONU (yukarıdan gelme) ── */
.reveal {
  opacity: 0;
  transform: translateY(-38px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HİZMETLER ── */
.services-bg {
  background: linear-gradient(180deg, #111128 0%, #0d1f4e 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.2rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(255,45,85,0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233,69,96,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.service-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 1.1rem 0 1.3rem;
}

/* ── PROJELERİMİZ / ALBÜMLER ── */
.album-stack {
  display: grid;
  gap: 2rem;
}

.album-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  overflow: hidden;
}

.album-header {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1rem;
}

.album-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.album-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.album-header p {
  max-width: 620px;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,45,85,0.18);
  border-color: rgba(255,45,85,0.5);
}

.album-carousel {
  overflow: hidden;
}

.album-stage {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 1rem;
  align-items: center;
}

.carousel-btn-side {
  align-self: center;
}

.album-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
}

.album-track::-webkit-scrollbar {
  display: none;
}

.album-frame {
  scroll-snap-align: start;
  background: rgba(8,10,25,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  min-width: 0;
}

.album-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ── SÜREÇ ── */
.process-bg {
  background: #16213e;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(233,69,96,0.2));
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(233,69,96,0.4);
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── İLETİŞİM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  min-width: 42px;
}

.contact-item h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.contact-item p,
.contact-item a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: rgba(233,69,96,0.07);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

/* ── PAGE HERO (Alt sayfalar için) ── */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 60%, #16213e 100%);
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233,69,96,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233,69,96,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Arka plan görseli olan hero'larda grid deseni gizle */
.page-hero-hizmetler::before,
.page-hero-bg-fixed::before {
  background-image: none;
}

.page-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-content .hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(0,0,0,0.85);
}

.page-hero-content .hero-title span {
  display: inline;
}

.page-hero-content .hero-desc {
  max-width: 600px;
  margin-bottom: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.page-hero-bg-fixed {
  background-image: url('images/hakkimizda-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero-bg-fixed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 0;
}

.page-hero-hizmetler {
  background-image: url('images/hizmetlerimiz-hero-bg.jpg');
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
  background-color: transparent;
}

.page-hero-hizmetler::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 25, 0.45) 0%,
    rgba(10, 20, 55, 0.35) 60%,
    rgba(10, 8, 25, 0.55) 100%
  );
  z-index: 0;
}

.page-hero-iletisim {
  background-image: url('images/iletisim-hero.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  background-color: transparent;
}

.page-hero-iletisim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 25, 0.55) 0%,
    rgba(10, 20, 55, 0.4) 60%,
    rgba(10, 8, 25, 0.65) 100%
  );
  z-index: 0;
}

.page-hero-projelerimiz {
  background-image: url('images/projelerimiz-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-color: transparent;
}

.page-hero-projelerimiz::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 14, 0.62) 0%,
    rgba(12, 22, 40, 0.48) 45%,
    rgba(8, 8, 14, 0.68) 100%
  );
  z-index: 0;
}

.page-hero-web-tasarim {
  background-image: url('images/web-tasarim-hero.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  background-color: transparent;
}

.page-hero-web-tasarim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 25, 0.55) 0%,
    rgba(10, 20, 55, 0.4) 60%,
    rgba(10, 8, 25, 0.65) 100%
  );
  z-index: 0;
}

/* ── IMG PLACEHOLDER ── */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.25);
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.img-placeholder::before {
  content: '📷';
  font-size: 2.2rem;
  line-height: 1;
}

/* ── HİZMET DETAY BLOK ── */
.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.service-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-list li {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.service-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

/* ── FOOTER ── */
footer {
  background: #0d0d1e;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(233,69,96,0.2);
}

.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--white);
}

.footer-logo span { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.social-links a img {
  width: 20px;
  height: 20px;
  display: block;
}

.social-links a:hover {
  border-color: var(--accent);
  background: rgba(233,69,96,0.15);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content     { grid-template-columns: 1fr; text-align: center; }
  .hero-title       { font-size: 2.8rem; }
  .hero-desc        { max-width: 100%; }
  .hero-btns        { justify-content: center; }
  .hero-visual      { display: none; }
  .stats-wrap       { grid-template-columns: repeat(2, 1fr); }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .process-steps    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .contact-grid     { grid-template-columns: 1fr; }
  .album-header     { flex-direction: column; align-items: flex-start; }
  .album-track      { grid-auto-columns: minmax(260px, 70%); }
  .album-stage      { grid-template-columns: 42px minmax(0, 1fr) 42px; gap: 0.7rem; }
}

@media (max-width: 600px) {
  .hero-title    { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .stats-wrap    { grid-template-columns: 1fr 1fr; }
  nav            { display: none; }
  .service-detail-block { grid-template-columns: 1fr; gap: 2rem; }
  .album-card     { padding: 1.1rem; border-radius: 18px; }
  .album-track    { grid-auto-columns: 88%; }
  .carousel-btn   { width: 42px; height: 42px; }
  .album-stage    { grid-template-columns: 38px minmax(0, 1fr) 38px; gap: 0.45rem; }
}

@media (max-width: 900px) {
  .service-detail-block { grid-template-columns: 1fr; gap: 2.5rem; }
}
