/* ============================================================
   Anaç Otomotiv — Ana Stil Dosyası (style.css)
   Tasarım tokenleri, layout, bileşen stilleri, responsive
   ============================================================ */

/* ===== CSS Custom Properties (Design Tokens) ===== */
:root {
  /* Renkler */
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #2a2a2a;
  --accent: #e85d04;
  --accent-hover: #f48c06;
  --accent-alt: #dc2f02;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  --border: #333333;
  --success: #06d6a0;
  --error: #ef476f;
  --overlay: rgba(0, 0, 0, 0.7);

  /* Tipografi */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --fs-hero: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h1: clamp(2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.75rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px);
  --container-max: 1200px;
  --card-gap: 2rem;

  /* Animasyon */
  --duration-fast: 0.3s;
  --duration-normal: 0.6s;
  --duration-slow: 1s;
  --stagger-delay: 0.15s;

  /* Breakpoints (referans) */
  --bp-mobile: 320px;
  --bp-tablet: 768px;
  --bp-desktop: 1024px;
  --bp-wide: 1440px;
}

/* ===== Genel Yardımcı Sınıflar ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Erişilebilirlik: Genel focus göstergesi */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Erişilebilirlik: Ana içeriğe geç bağlantısı */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10001;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--text-primary);
  font-family: var(--font-secondary);
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top var(--duration-fast) ease;
}

.skip-link:focus {
  top: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ===== Section Başlıkları ===== */
.section-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 0.75rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Butonlar ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color var(--duration-fast) ease,
              color var(--duration-fast) ease,
              border-color var(--duration-fast) ease,
              transform var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--text-primary);
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 93, 4, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn-secondary:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--text-primary);
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
  color: var(--text-primary);
}

/* ===== Navigasyon ===== */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-family: var(--font-secondary);
  font-size: var(--fs-small);
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: color var(--duration-fast) ease, background-color var(--duration-fast) ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link.active {
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 9100;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--duration-fast) ease, opacity var(--duration-fast) ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* Mobil menü iletişim bilgileri — masaüstünde gizli */
.nav-mobile-info {
  display: none;
}

/* ===== Hero Bölümü ===== */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* MCP tasarımı: soldan sağa gradient overlay */
.hero-slider .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    transparent 100%
  );
  z-index: 1;
}

/* Hero inner — tam ekran flex container */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/* İçerik alanı — sola dayalı */
.hero-content-area {
  padding: 0 2rem 0 clamp(2rem, 5vw, 6rem);
  max-width: 800px;
}

/* Slide text animasyonu */
.hero-slide-text {
  display: none;
  flex-direction: column;
}

.hero-slide-text.active {
  display: flex;
  animation: heroSlideIn 0.8s ease forwards;
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.4);
  border-radius: 30px;
  font-family: var(--font-secondary);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Hero başlık */
.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

/* Hero açıklama */
.hero-desc {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* CTA butonları */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* WhatsApp Hero Button */
.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  font-weight: 600;
  color: #ffffff;
  background-color: #25d366;
  border: 2px solid #25d366;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease, background-color var(--duration-fast) ease;
}

.btn-whatsapp-hero:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

/* Mini Özellikler */
.hero-features {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232, 93, 4, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feature-icon i {
  font-size: 1.2rem;
  color: var(--accent);
}

.hero-feature-title {
  display: block;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-feature-desc {
  display: block;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Slider Alt Kontroller */
.hero-slider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(2rem, 5vw, 6rem);
}

.hero-slider-arrows {
  display: flex;
  gap: 0.75rem;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) ease;
}

.hero-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-dot {
  height: 4px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: width var(--duration-fast) ease, background-color var(--duration-fast) ease;
  width: 32px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-dot.active {
  width: 48px;
  background: var(--accent);
}

.hero-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

.hero-slider-counter {
  font-family: var(--font-secondary);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.hero-slider-counter #hero-current {
  color: var(--text-primary);
  font-weight: 700;
}

/* ===== Öne Çıkan Özellikler ===== */
#features {
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232, 93, 4, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.features-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.25rem 2rem 2rem;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 93, 4, 0.15);
  border-color: rgba(232, 93, 4, 0.2);
}

/* Numara */
.feature-card-number {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}

.feature-card:hover .feature-card-number {
  color: rgba(232, 93, 4, 0.08);
}

/* İkon */
.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card-icon i {
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card-icon {
  background: rgba(232, 93, 4, 0.18);
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(232, 93, 4, 0.15);
}

.feature-card:hover .feature-card-icon i {
  transform: scale(1.1);
}

/* İçerik */
.feature-card-content h3 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-card-content h3 {
  color: var(--accent);
}

.feature-card-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Alt accent çizgi */
.feature-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card-accent {
  transform: scaleX(1);
}

/* ===== Hizmetler Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--card-gap);
}

/* ===== Hizmet Kartları (Service Cards) ===== */
.service-card {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  perspective: 1000px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: transform var(--duration-fast) ease;
}

/* Arka plan görseli */
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-bg {
  transform: scale(1.1);
}

/* Koyu gradient overlay */
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

/* Kart içeriği */
.service-card-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  z-index: 2;
}

/* İkon */
.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.4);
  transition: transform var(--duration-fast) ease;
  flex-shrink: 0;
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
}

.service-card-icon i {
  font-size: 1.75rem;
  color: var(--text-primary);
}

/* Başlık */
.service-card-title {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  transition: transform var(--duration-fast) ease;
}

.service-card:hover .service-card-title {
  transform: translateY(-5px);
}

/* Hover overlay bilgi paneli */
.service-card-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 3;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    transparent 100%
  );
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-fast) ease, transform var(--duration-fast) ease;
  pointer-events: none;
}

.service-card:hover .service-card-info {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.service-card-info-title {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}

.service-card-desc {
  color: #e0e0e0;
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.service-card-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--accent);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
  align-self: flex-start;
}

.service-card-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(232, 93, 4, 0.5);
}

.service-card-btn:active {
  transform: scale(0.95);
}

/* Vurgu kenarlık (hover) */
.service-card-border {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid var(--accent);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-fast) ease;
  z-index: 4;
}

.service-card:hover .service-card-border {
  opacity: 0.6;
}

/* ===== Hakkımızda ===== */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Animasyonlu Sayaçlar */
.about-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  margin-bottom: 4rem;
  text-align: center;
}

.counter-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1rem;
  transition: transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease, border-color var(--duration-fast) ease;
}

.counter-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(232, 93, 4, 0.15);
  border-color: rgba(232, 93, 4, 0.3);
}

.counter-value {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.counter-suffix {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
}

.counter-label {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline-line {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, var(--border) 10%, var(--border) 90%, transparent 100%);
}

.timeline-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--accent), var(--accent-hover));
  border-radius: 2px;
  transition: height 0.3s ease;
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.25rem;
  top: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-dot-active {
  background: var(--accent);
  box-shadow: 0 0 20px rgba(232, 93, 4, 0.4);
}

.timeline-year-badge {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.timeline-dot-active .timeline-year-badge {
  color: var(--text-primary);
}

.timeline-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.timeline-card:hover {
  border-color: rgba(232, 93, 4, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.timeline-card-active {
  border-color: rgba(232, 93, 4, 0.3);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(232, 93, 4, 0.05) 100%);
}

.timeline-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.timeline-card-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.timeline-badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.2);
}

.timeline-badge-active {
  background: rgba(232, 93, 4, 0.2);
  color: var(--accent-hover);
}

.timeline-card-text {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.timeline-card-bar {
  margin-top: 1rem;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.timeline-card-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--accent), var(--accent-hover));
  border-radius: 3px;
  transition: width 1.2s ease;
}

.timeline-card:hover .timeline-card-bar::after,
.timeline-card-bar-active::after {
  width: 100%;
}

/* ===== Ekip Grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Ekip Kartları (Magic MCP) ===== */
.team-card {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--bg-tertiary, #2a2a2a);
  border: 1px solid var(--border-color, #333333);
  aspect-ratio: 3 / 4;
}

.team-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.team-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.team-card:hover .team-card-photo {
  transform: scale(1.1);
}

.team-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  pointer-events: none;
}

/* Temel bilgi — her zaman görünür */
.team-card-base {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-card-base {
  opacity: 0;
}

.team-card-badge {
  display: inline-block;
  background-color: var(--accent, #e85d04);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-secondary, 'Inter', sans-serif);
}

.team-card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
}

.team-card-title {
  color: var(--text-secondary, #b0b0b0);
  font-size: 0.875rem;
  font-family: var(--font-secondary, 'Inter', sans-serif);
}

/* Hover overlay — biyografi bilgisi */
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
  z-index: 3;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-card-overlay {
  opacity: 1;
}

.team-card-overlay .team-card-name {
  margin-bottom: 0.5rem;
}

.team-card-title-overlay {
  color: var(--accent, #e85d04);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: var(--font-secondary, 'Inter', sans-serif);
}

.team-card-divider {
  width: 3rem;
  height: 2px;
  background-color: var(--accent, #e85d04);
  margin-bottom: 1rem;
}

.team-card-bio {
  color: var(--text-secondary, #b0b0b0);
  font-size: 0.875rem;
  line-height: 1.7;
  font-family: var(--font-secondary, 'Inter', sans-serif);
}

/* Hover border accent */
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent, #e85d04);
  border-radius: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
}

.team-card:hover::after {
  opacity: 1;
}

/* Overlay içerik giriş animasyonu */
.team-card-overlay .team-card-badge,
.team-card-overlay .team-card-name,
.team-card-overlay .team-card-title-overlay,
.team-card-overlay .team-card-divider,
.team-card-overlay .team-card-bio {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.team-card:hover .team-card-overlay .team-card-badge {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.05s;
}

.team-card:hover .team-card-overlay .team-card-name {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.team-card:hover .team-card-overlay .team-card-title-overlay {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.15s;
}

.team-card:hover .team-card-overlay .team-card-divider {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.2s;
}

.team-card:hover .team-card-overlay .team-card-bio {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.25s;
}

/* Mobil dokunma desteği — .team-card-active hover'ı simüle eder */
.team-card-active .team-card-photo {
  transform: scale(1.1);
}

.team-card-active .team-card-base {
  opacity: 0;
}

.team-card-active .team-card-overlay {
  opacity: 1;
}

.team-card-active::after {
  opacity: 1;
}

.team-card-active .team-card-overlay .team-card-badge,
.team-card-active .team-card-overlay .team-card-name,
.team-card-active .team-card-overlay .team-card-title-overlay,
.team-card-active .team-card-overlay .team-card-divider,
.team-card-active .team-card-overlay .team-card-bio {
  transform: translateY(0);
  opacity: 1;
}


/* ===== Galeri ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gallery-filters .filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-secondary);
  font-size: var(--fs-small);
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--duration-fast) ease,
              color var(--duration-fast) ease,
              border-color var(--duration-fast) ease;
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
  background-color: var(--accent);
  color: var(--text-primary);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-fast) ease;
}

.gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-grid .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--duration-fast) ease;
  pointer-events: none;
}

.gallery-grid .gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.3);
}

/* Galeri öğesi hover overlay bilgi */
.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
  z-index: 2;
  pointer-events: none;
}

.gallery-grid .gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay .gallery-item-category {
  font-family: var(--font-secondary);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--accent);
}

/* Galeri öğesi gizle/göster animasyonu */
.gallery-grid .gallery-item.hidden {
  display: none;
}

.gallery-grid .gallery-item.fade-in {
  animation: galleryFadeIn 0.4s ease forwards;
}

@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Daha Fazla Göster butonu */
.gallery-show-more {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.gallery-show-more .gallery-load-more.hidden {
  display: none;
}

/* ===== Yorumlar ===== */
.reviews-summary {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.2);
  font-family: var(--font-secondary);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-primary);
}

.reviews-badge i {
  color: var(--accent);
  font-size: 1rem;
}

.reviews-rating-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.reviews-score {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.reviews-rating-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.reviews-stars-summary {
  display: flex;
  gap: 0.2rem;
  font-size: 1.25rem;
  color: var(--accent);
}

.reviews-count {
  color: var(--text-secondary);
  font-size: var(--fs-small);
}

/* Marquee Carousel */
.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
}

.reviews-marquee-track {
  display: flex;
  gap: 1rem;
  animation: reviewsMarquee 60s linear infinite;
  will-change: transform;
  width: max-content;
}

.reviews-marquee:hover .reviews-marquee-track {
  animation-play-state: paused;
}

@keyframes reviewsMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* Gradient fade overlay'lar */
.reviews-marquee-fade-left,
.reviews-marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  pointer-events: none;
  z-index: 2;
}

.reviews-marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.reviews-marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

/* Yorum kartları — marquee */
.review-card {
  flex-shrink: 0;
  min-width: 320px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid rgba(51, 51, 51, 0.5);
  background: linear-gradient(to bottom, rgba(42, 42, 42, 0.3), var(--bg-primary));
  padding: 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  border-color: rgba(232, 93, 4, 0.3);
  box-shadow: 0 8px 30px rgba(232, 93, 4, 0.08);
}

@media (min-width: 640px) {
  .review-card {
    min-width: 380px;
    max-width: 380px;
  }
}

/* Kart üst: avatar + isim + yıldızlar */
.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(232, 93, 4, 0.2);
  background: rgba(232, 93, 4, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-secondary);
}

.review-location {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-secondary);
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  font-size: 0.85rem;
  color: var(--accent);
}

.review-stars .star-empty {
  color: var(--text-muted);
}

/* Yorum metni */
.review-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
  flex: 1;
  font-family: var(--font-secondary);
}

/* Tarih */
.review-date {
  color: rgba(102, 102, 102, 0.6);
  font-size: 0.75rem;
  margin-top: auto;
  font-family: var(--font-secondary);
}

/* İstatistikler */
.reviews-stats {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 3rem auto 0;
}

@media (min-width: 640px) {
  .reviews-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reviews-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(42, 42, 42, 0.3);
  border: 1px solid rgba(51, 51, 51, 0.5);
}

.reviews-stat-value {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--accent);
}

.reviews-stat-label {
  font-family: var(--font-secondary);
  font-size: var(--fs-small);
  color: var(--text-secondary);
  text-align: center;
}

/* ===== Instagram ===== */
#instagram {
  position: relative;
  overflow: hidden;
}

.instagram-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.instagram-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.instagram-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.8), transparent 70%);
  top: -10%;
  left: -5%;
  animation: instagramOrbFloat1 8s ease-in-out infinite;
}

.instagram-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.8), transparent 70%);
  top: 30%;
  right: -5%;
  animation: instagramOrbFloat2 10s ease-in-out infinite;
}

.instagram-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.7), transparent 70%);
  bottom: -10%;
  left: 30%;
  animation: instagramOrbFloat3 9s ease-in-out infinite;
}

@keyframes instagramOrbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 20px); }
}

@keyframes instagramOrbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 30px); }
}

@keyframes instagramOrbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

#instagram .container {
  position: relative;
  z-index: 1;
}

.instagram-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  flex-shrink: 0;
}

.instagram-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-primary);
}

.instagram-profile-info {
  text-align: left;
}

.instagram-username {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.instagram-username i {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.instagram-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.instagram-stat strong {
  color: var(--text-primary);
  font-weight: 700;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.instagram-feed .insta-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--bg-tertiary);
}

.instagram-feed .insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.instagram-feed .insta-item .insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-feed .insta-item .insta-overlay i {
  color: #fff;
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.instagram-feed .insta-item:hover img {
  transform: scale(1.08);
}

.instagram-feed .insta-item:hover .insta-overlay {
  opacity: 1;
}

.instagram-feed .insta-item:hover .insta-overlay i {
  transform: scale(1);
}

.instagram-feed .insta-item:focus-visible {
  outline: 2px solid #e6683c;
  outline-offset: 2px;
}

#instagram .btn-instagram {
  display: block;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  font-size: 1rem;
}


/* ===== İletişim ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item > i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: var(--fs-body);
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
}

.contact-item a {
  color: var(--text-secondary);
}

.contact-item a:hover {
  color: var(--accent);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-family: var(--font-secondary);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 71, 111, 0.15);
}

.form-group input.success,
.form-group textarea.success {
  border-color: var(--success);
}

.form-error {
  font-size: var(--fs-small);
  color: var(--error);
  min-height: 1.2em;
}

.form-group select {
  padding: 0.75rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
}

.form-group select option {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.btn-whatsapp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-submit:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-submit:active {
  transform: translateY(0);
}

.btn-whatsapp-submit i {
  font-size: 1.25rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-hint i {
  color: #25D366;
  font-size: 0.85rem;
}

.form-success-message {
  text-align: center;
  padding: 1rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid #25D366;
  border-radius: 6px;
  color: #25D366;
  font-weight: 500;
}

/* ===== Harita ===== */
.map-container {
  width: 100%;
  height: 450px;
  margin-bottom: 1.5rem;
  border-radius: 0;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-directions {
  margin-top: 1rem;
}


/* ===== Footer ===== */
#footer {
  background-color: var(--bg-secondary);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  transition: color var(--duration-fast) ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a {
  color: var(--text-secondary);
}

.footer-contact a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: background-color var(--duration-fast) ease, color var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--text-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: var(--fs-small);
}

/* ===== Sabit Butonlar ===== */
.fixed-btn {
  position: fixed;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.whatsapp-btn {
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}

.scroll-top-btn {
  bottom: 2rem;
  right: 5.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  font-size: 1rem;
  border: 1px solid var(--border);
}

.scroll-top-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.mobile-call-btn {
  display: none;
}


/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 2rem;
  padding: 0.5rem;
  z-index: 10001;
  transition: color var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--accent);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
}

.lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.2);
}

.lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.2);
}

/* ===== Responsive: Tablet (768px – 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .top-bar-inner {
    justify-content: center;
    gap: 1rem;
  }

  .top-bar-left, .top-bar-right {
    gap: 1rem;
  }

  /* Tablet: hamburger menü göster */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9050;
    backdrop-filter: blur(15px);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }

  .nav-cta-btn {
    display: none !important;
  }

  /* Tablet: mobil menü bilgileri göster */
  .nav-mobile-info {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 0 1.5rem;
  }

  /* Hero tablet optimizasyonu */
  .hero-content-area {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }

  .hero-features {
    gap: 1.5rem;
  }

  .hero-slider-arrows .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-counters {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Responsive: Mobil (320px – 767px) ===== */
@media (max-width: 767px) {
  /* Top Bar: gizle */
  .top-bar {
    display: none;
  }

  /* Navigasyon: hamburger menü */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(15, 15, 15, 0.99) 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9050;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow-y: auto;
    padding: 5rem 0 2rem;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu > li[role="none"] {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    font-size: 1.3rem;
    padding: 0.85rem 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    transform: translateX(4px);
  }

  .nav-cta-btn {
    display: none !important;
  }

  /* Mobil menü iletişim bilgileri */
  .nav-mobile-info {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 0 1.5rem;
  }

  .nav-mobile-divider {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 1.25rem auto;
    border-radius: 2px;
    opacity: 0.6;
  }

  .nav-mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }

  .nav-mobile-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .nav-mobile-contact-item:first-child {
    background: rgba(232, 93, 4, 0.12);
    border: 1px solid rgba(232, 93, 4, 0.3);
    color: var(--accent);
  }

  .nav-mobile-contact-item:first-child:hover {
    background: rgba(232, 93, 4, 0.2);
    transform: translateY(-1px);
  }

  .nav-mobile-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
  }

  .nav-mobile-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    transform: translateY(-1px);
  }

  .nav-mobile-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .nav-mobile-detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  .nav-mobile-detail-item i {
    color: var(--accent);
    font-size: 0.7rem;
    width: 14px;
    text-align: center;
  }

  .nav-mobile-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .nav-mobile-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }

  .nav-mobile-social a:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-color: transparent;
  }

  /* Hero mobil */
  .hero-content-area {
    padding: 0 1.5rem;
    text-align: center;
  }

  .hero-slide-text.active {
    align-items: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .hero-title {
    text-align: center;
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-desc {
    text-align: center;
    font-size: 0.9rem;
  }

  /* Hero CTA butonları: mobilde gizle */
  .hero-cta {
    display: none;
  }

  .hero-features {
    justify-content: center;
    gap: 1.25rem;
  }

  .hero-feature-item {
    gap: 0.5rem;
  }

  .hero-feature-icon {
    width: 40px;
    height: 40px;
  }

  .hero-feature-icon i {
    font-size: 1rem;
  }

  .hero-feature-title {
    font-size: 0.8rem;
  }

  .hero-feature-desc {
    font-size: 0.65rem;
  }

  .hero-slider-bottom {
    padding: 1rem 1.5rem;
  }

  .hero-slider-arrows {
    display: none;
  }

  .hero-slider-counter {
    display: none;
  }

  .hero-slider-dots {
    width: 100%;
    justify-content: center;
  }

  /* Gridler: tek sütun */
  .features-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-counters {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .counter-item {
    padding: 1.25rem 1rem;
  }

  .timeline {
    padding-left: 2.5rem;
  }

  .timeline-dot {
    left: -1.75rem;
    width: 2rem;
    height: 2rem;
  }

  .timeline-year-badge {
    font-size: 0.55rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-feed {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-header {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
  }

  .instagram-profile-info {
    text-align: center;
  }

  .instagram-stats {
    justify-content: center;
  }

  .instagram-gradient-orb {
    opacity: 0.1;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Harita */
  .map-container {
    height: 300px;
  }

  /* Footer: tek sütun */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  /* Sabit butonlar */
  .whatsapp-btn {
    bottom: 5rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .scroll-top-btn {
    bottom: 5rem;
    right: 4.5rem;
    width: 40px;
    height: 40px;
  }

  .mobile-call-btn {
    display: flex;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3.5rem;
    border-radius: 0;
    background-color: var(--accent);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: var(--fs-body);
    font-weight: 600;
    gap: 0.5rem;
  }

  .mobile-call-btn:hover {
    background-color: var(--accent-hover);
  }

  /* Lightbox */
  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* ===== Responsive: Masaüstü (1024px+) ===== */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .instagram-feed {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== SSS (FAQ) Bölümü ===== */
#faq {
  background-color: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(232, 93, 4, 0.3);
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  user-select: none;
  transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 0.85rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}
