/* Cihan Seven — Kişisel Medya Merkezi */
:root {
  --bg: #060606;
  --soft: #0d0d0f;
  --card: #141416;
  --card-hover: #1a1a1e;
  --red: #e50914;
  --red-glow: rgba(229, 9, 20, 0.35);
  --text: #ffffff;
  --muted: #a8a8a8;
  --border: rgba(255, 255, 255, 0.1);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 76px;
  --transition: 0.25s ease;
  --font: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(6, 6, 6, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { font-size: 1.35rem; font-weight: 900; line-height: 1.1; letter-spacing: 0.02em; }
.brand strong { display: block; }
.brand span { color: var(--red); display: block; font-size: 0.85em; }
.nav-desktop { display: flex; gap: 6px; flex-wrap: wrap; }
.nav-desktop a {
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ccc;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--red); background: rgba(229, 9, 20, 0.1); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: var(--transition);
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #0a0a0c;
  border-left: 1px solid var(--border);
  padding: calc(var(--header-h) + 24px) 28px 28px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  color: #ddd;
}
.mobile-nav a.active { color: var(--red); }

/* Buttons */
.btn {
  min-height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn:hover { transform: translateY(-2px); border-color: var(--red); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); }
.btn-primary { background: var(--red); border-color: var(--red); color: #fff; }
.btn-primary:hover { box-shadow: 0 8px 32px var(--red-glow); }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 0.82rem; }

/* Sections */
.section { padding: 88px 0; }
.section-dark { background: var(--soft); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-head.left { text-align: left; margin-left: 0; margin-right: 0; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}
.section-head h2 span { color: var(--red); }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Hero */
.hero {
  min-height: 100vh;
  padding: calc(var(--header-h) + 48px) 0 64px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 85% 20%, var(--red-glow), transparent 50%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(229, 9, 20, 0.08), transparent 45%),
    linear-gradient(180deg, #0a0a0a 0%, var(--bg) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  padding: 8px 14px;
  margin-bottom: 18px;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid rgba(229, 9, 20, 0.4);
  color: #ffb3b6;
}
.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--red); }
.hero-lead { font-size: 1.1rem; color: #ccc; max-width: 520px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-visual { position: relative; }
.hero-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-card-media { position: relative; }
.hero-card img { width: 100%; height: 320px; object-fit: cover; }
.empty-msg { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 2rem; }
.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}
.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-top: 1px solid var(--border);
}
.hero-card-footer span { color: var(--muted); font-size: 0.9rem; }
.hero-card-footer strong { color: var(--red); }
.hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 0 40px var(--red-glow);
  opacity: 0.95;
  transition: var(--transition);
}
.hero-play:hover { transform: translate(-50%, -50%) scale(1.08); }

/* Social profiles */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.social-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.social-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 9, 20, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.social-card-banner-img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: var(--transition);
}
.social-card:hover .social-card-banner-img { filter: brightness(0.95); transform: scale(1.03); }
.social-card-banner-img--tiktok { object-position: center 30%; }
.social-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.social-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.social-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 900;
}
.social-icon.youtube { background: #ff0000; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.tiktok { background: #000; border: 1px solid #25f4ee; }
.social-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.social-card p { color: var(--muted); font-size: 0.9rem; flex: 1; margin-bottom: 16px; }

/* Videos */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.filter-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.video-card:hover { transform: translateY(-5px); border-color: rgba(229, 9, 20, 0.45); }
.video-card.hidden { display: none; }
.video-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent 50%);
}
.video-platform {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(0,0,0,0.75);
}
.video-platform.youtube { color: #ff4444; }
.video-platform.instagram { color: #e1306c; }
.video-platform.tiktok { color: #25f4ee; }
.video-body { padding: 18px; }
.video-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.3; }
.video-body p { color: var(--muted); font-size: 0.88rem; margin-bottom: 10px; }
.video-meta { font-size: 0.8rem; color: #888; margin-bottom: 12px; }
.video-body a { font-weight: 800; font-size: 0.88rem; color: var(--red); }
.video-body a:hover { text-decoration: underline; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.location-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--red);
}
.location-row {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.location-row:last-child { border-bottom: none; }
.location-row .label { color: var(--muted); min-width: 130px; }
.location-row strong { color: #fff; }
.location-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.35);
  font-weight: 800;
  color: #ffb3b6;
}
.route-visual {
  min-height: 260px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at center, var(--red-glow), transparent 55%),
    var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 2.5rem;
  flex-wrap: wrap;
}
.route-visual .arrow { color: var(--red); font-size: 1.5rem; }

/* Countries — map-ready wrapper */
.countries-map-wrap { /* future SVG map container */ }
.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (min-width: 1200px) {
  .country-grid { grid-template-columns: repeat(5, 1fr); }
}
.country-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.country-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  background: var(--card-hover);
}
.country-card .flag { font-size: 2rem; display: block; margin-bottom: 8px; }
.country-card h3 { font-size: 1rem; margin-bottom: 6px; }
.country-card .stats { font-size: 0.75rem; color: var(--muted); margin-bottom: 6px; }
.country-card .note { font-size: 0.78rem; color: #888; line-height: 1.4; }

/* Truck */
.truck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.truck-info h2 { font-size: 2.5rem; text-transform: uppercase; }
.truck-info h3 { font-size: 1.75rem; color: var(--red); margin: 8px 0 16px; }
.truck-info > p { color: var(--muted); margin-bottom: 24px; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.spec-card {
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.spec-card:hover { border-color: var(--red); }
.spec-card .icon { font-size: 1.5rem; margin-bottom: 8px; }
.spec-card strong { display: block; font-size: 0.9rem; }
.truck-gallery {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}
.truck-gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.truck-gallery-caption {
  padding: 16px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}
.truck-gallery-caption strong { color: var(--red); }

/* Stats */
.stats-section { padding: 56px 0; background: #090909; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-item .number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1.2;
}
.stat-item .label { font-size: 0.85rem; color: var(--muted); font-weight: 700; text-transform: uppercase; }

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--red), rgba(229, 9, 20, 0.2));
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  border: 3px solid var(--bg);
}
.timeline-item:hover { border-color: rgba(229, 9, 20, 0.4); }
.timeline-date { color: var(--red); font-weight: 800; font-size: 0.85rem; margin-bottom: 6px; }
.timeline-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.timeline-item p { color: var(--muted); font-size: 0.92rem; }
.timeline-item a { display: inline-block; margin-top: 10px; font-weight: 700; color: var(--red); font-size: 0.88rem; }

/* Series */
.series-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.series-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
}
.series-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  background: linear-gradient(180deg, var(--card) 0%, rgba(229, 9, 20, 0.06) 100%);
}
.series-card .icon { font-size: 2.5rem; margin-bottom: 12px; }
.series-card h3 { font-size: 1rem; margin-bottom: 10px; }
.series-card p { color: var(--muted); font-size: 0.82rem; flex: 1; margin-bottom: 16px; }

/* ADR & Blog cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.content-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.content-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.45);
}
.content-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.35; }
.content-card p { color: var(--muted); font-size: 0.9rem; flex: 1; margin-bottom: 16px; }
.blog-card .meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
}
.about-grid img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  object-fit: cover;
}
.about-grid h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 16px; }
.about-grid h2 span { color: var(--red); }
.about-grid .lead { color: #ccc; font-size: 1.05rem; margin-bottom: 20px; }
.about-grid .eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badges span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  min-height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); border-color: var(--red); }
.gallery-item .gallery-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a1515 0%, #0d0d0d 50%, #1a0a0a 100%);
}
.gallery-item .gallery-label {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent 60%);
}
.gallery-item .icon { font-size: 2rem; margin-bottom: 8px; }
.gallery-item strong { font-size: 1rem; }
.gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gallery-item .gallery-label { position: relative; z-index: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(920px, 92vw);
  max-height: 90vh;
  text-align: center;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.lightbox-caption { margin-top: 14px; color: var(--muted); font-weight: 700; }
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
}
.lightbox-close:hover { transform: scale(1.08); }

.btn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Follow */
.follow-section {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, var(--red-glow), transparent),
    var(--soft);
}
.follow-section h2 { font-size: 2rem; margin-bottom: 12px; }
.follow-section p { color: var(--muted); max-width: 560px; margin: 0 auto 28px; }
.follow-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Footer */
.site-footer {
  background: #030303;
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: #666;
  font-size: 0.88rem;
}
.footer-bottom .slogan { color: #999; margin-top: 8px; font-style: italic; }

/* Responsive */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid, .location-grid, .truck-grid, .about-grid { grid-template-columns: 1fr; }
  .social-grid, .video-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
  .country-grid { grid-template-columns: repeat(3, 1fr); }
  .series-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .social-grid, .video-grid, .card-grid, .gallery-grid,
  .country-grid, .series-grid, .stats-grid, .spec-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .filter-bar { justify-content: flex-start; }
}

@media (max-width: 360px) {
  .container { width: 94%; }
  .hero h1 { font-size: 1.85rem; }
}

/* ——— Fare peşinde mini tır ——— */
.truck-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: transform;
  transform: translate3d(-100px, -100px, 0);
}
.truck-cursor--active {
  opacity: 1;
}
.truck-cursor__body {
  position: relative;
  width: 56px;
  height: 28px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 12px rgba(229, 9, 20, 0.45));
  transition: filter 0.2s ease;
}
.truck-cursor__svg {
  width: 100%;
  height: auto;
  display: block;
}
.truck-cursor--moving .truck-cursor__body {
  animation: truckBounce 0.35s ease-in-out infinite alternate;
}
.truck-cursor--fast .truck-cursor__body {
  filter: drop-shadow(0 0 16px rgba(229, 9, 20, 0.7));
}
@keyframes truckBounce {
  from { transform: translate(-50%, -50%) translateY(0); }
  to { transform: translate(-50%, -50%) translateY(-2px); }
}
.truck-cursor__smoke {
  position: absolute;
  left: -8px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  opacity: 0;
  background: radial-gradient(circle, rgba(200, 200, 200, 0.35) 0%, transparent 70%);
  animation: none;
}
.truck-cursor--moving .truck-cursor__smoke {
  opacity: 1;
  animation: truckSmoke 0.6s ease-out infinite;
}
@keyframes truckSmoke {
  0% { transform: translateY(-50%) scale(0.4); opacity: 0.5; }
  100% { transform: translate(-12px, -80%) scale(1.2); opacity: 0; }
}
.truck-cursor__track {
  display: none;
}
.truck-cursor__trail {
  position: fixed;
  width: 14px;
  height: 6px;
  margin: -3px 0 0 -7px;
  border-radius: 2px;
  background: rgba(80, 80, 80, 0.35);
  border: 1px solid rgba(229, 9, 20, 0.2);
  pointer-events: none;
  z-index: 9997;
  transform: rotate(var(--rot, 0deg));
  animation: truckTrail 0.9s ease-out forwards;
}
@keyframes truckTrail {
  0% { opacity: 0.6; transform: rotate(var(--rot, 0deg)) scale(1); }
  100% { opacity: 0; transform: rotate(var(--rot, 0deg)) scale(0.5); }
}

@media (pointer: coarse), (max-width: 768px), (prefers-reduced-motion: reduce) {
  .truck-cursor,
  .truck-cursor__trail {
    display: none !important;
  }
}

/* ——— Kayan sosyal medya ——— */
.social-float {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0 10px 10px;
  transform: translate(120%, -50%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.social-float--visible {
  transform: translate(0, -50%);
  pointer-events: auto;
}
.social-float--hidden {
  transform: translate(120%, -50%) !important;
  pointer-events: none !important;
  opacity: 0;
}
.social-float__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  min-height: 48px;
  padding: 0;
  border-radius: 12px 0 0 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-right: none;
  color: #fff;
  overflow: hidden;
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.45);
  transition: gap 0.3s ease, padding 0.3s ease, border-color 0.25s ease, transform 0.25s ease;
}
.social-float__btn:hover {
  transform: translateX(-4px);
  border-color: rgba(229, 9, 20, 0.55);
  gap: 10px;
  padding-left: 14px;
}
.social-float__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}
.social-float__icon svg {
  width: 22px;
  height: 22px;
}
.social-float__label {
  max-width: 0;
  opacity: 0;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width 0.35s ease, opacity 0.25s ease;
}
.social-float__btn:hover .social-float__label {
  max-width: 100px;
  opacity: 1;
  padding-right: 14px;
}
.social-float__btn--youtube:hover { background: linear-gradient(90deg, #1a1a1a, #cc0000); }
.social-float__btn--instagram:hover { background: linear-gradient(90deg, #1a1a1a, #c13584); }
.social-float__btn--tiktok:hover { background: linear-gradient(90deg, #1a1a1a, #0a6e7a); }
.social-float__btn--discord:hover { background: linear-gradient(90deg, #1a1a1a, #5865f2); }

@media (max-width: 768px) {
  .social-float {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    transform: translateY(110%);
    background: linear-gradient(0deg, rgba(6, 6, 6, 0.97), rgba(6, 6, 6, 0.85));
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }
  .social-float--visible {
    transform: translateY(0);
  }
  .social-float__btn {
    flex: 1;
    max-width: 72px;
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid var(--border);
    justify-content: center;
    transform: none;
  }
  .social-float__btn:hover {
    transform: none;
    padding: 0;
    gap: 0;
  }
  .social-float__label { display: none; }
  .social-float__icon {
    width: 100%;
    height: 52px;
  }
  body { padding-bottom: 76px; }
  .social-float--hidden {
    transform: translateY(110%) !important;
    opacity: 0;
  }
}
