:root {
  --gold: #d4af37;
  --gold-soft: #f4e2b8;
  --bg: #3c214d;
  --bg-dark: #140018;
  --text: #f5f2ff;
  --muted: #c5badb;
}

/* RESET */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #3c214d 0%, #140018 40%, #050009 100%);
  color: var(--text);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.text-gold { color: var(--gold); }

/* ============ BUTONLAR ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn i { font-size: 1rem; }

.btn-gold {
  background: var(--gold);
  color: #16001a;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.65);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.8);
}

.btn-ghost {
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(8, 0, 18, 0.9);
  color: var(--gold-soft);
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.12);
}

/* ============ HEADER ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 0, 10, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(14px);
  overflow: visible;
}

/* Mobilde de, PC’de de 3 kolon: hamburger | logo | canlı destek / sağ blok */
.header-inner {
  display: grid;
  grid-template-columns: 44px 1fr 70px;
  align-items: center;
  gap: 16px;
  padding: 10px 0 4px;
}

/* LOGO – NAVBARDAN AŞAĞI TAŞSIN */
.logo-wrap {
  justify-self: center;
  position: relative;
  z-index: 2;
}

.logo-frame {
  width: 120px;
  height: 120px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.9);
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.4), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(14px);
}

.logo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

/* HAMBURGER & MOBİL DESTEK BUTONU – default görünüm */

.mobile-toggle,
.mobile-support-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: rgba(5, 0, 10, 0.96);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.4rem;
}

.mobile-toggle i { pointer-events: none; }

/* ANA MENÜ (PC) */

.main-nav {
  margin-left: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.18s ease;
}

.nav-links a:hover::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* PC Canlı Destek */
.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: #16001a;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
}

.support-btn i { font-size: 1rem; }

.support-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 24px rgba(0, 0, 0, 0.7);
}

/* Dil butonları */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.lang-switch a .flag { font-size: 1rem; }

.lang-switch a:hover {
  background: rgba(212, 175, 55, 0.16);
  opacity: 1;
}

/* MOBİL MENÜ DİL GRUBU BAŞTA GİZLİ */
.mobile-lang { display: none; }

/* ============ HERO ============ */

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Görselin TAMAMI görünsün: width:100%, height auto */
.hero-bg {
  position: relative;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: auto;
  display: block;
}

/* Üstüne renk geçişi */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(60, 33, 77, 0.85), transparent 45%),
    linear-gradient(to bottom, rgba(5, 0, 10, 0.1) 0%, rgba(5, 0, 10, 0.95) 80%);
  z-index: 1;
}

/* İçerik overlay */
.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 110px 0 60px; /* üstte header + logo için boşluk */
}

.hero-left h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-left p {
  max-width: 520px;
  font-size: 1.02rem;
  color: var(--gold-soft);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(8, 0, 25, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.65);
  color: var(--gold-soft);
}

.hero-tag i { font-size: 0.85rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 12px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.88rem;
  color: var(--gold-soft);
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-badges i { color: var(--gold); }

/* Sağdaki kart */

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 360px;
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.22), rgba(12, 0, 20, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.7);
}

.hero-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.hero-card ul {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--gold-soft);
}

.hero-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-card ul li i { color: var(--gold); }

.hero-note {
  margin-top: 8px;
  font-size: 0.83rem;
  color: var(--gold-soft);
  opacity: 0.9;
}

/* ============ GENEL SECTIONS ============ */

.section {
  padding: 70px 0 60px;
  position: relative;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.section-intro {
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 24px;
  font-size: 0.96rem;
}

/* ============ HİZMETLER ============ */

.section-services {
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), rgba(5, 0, 10, 0.98));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  border-radius: 18px;
  padding: 18px 18px 20px;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), rgba(6, 0, 16, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.36);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(10, 0, 20, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.service-icon i {
  color: var(--gold);
  font-size: 1.2rem;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.service-list {
  font-size: 0.86rem;
  color: var(--gold-soft);
  display: grid;
  gap: 4px;
}

.service-list li::before {
  content: "• ";
  color: var(--gold);
}

/* ============ FORM BÖLÜMLERİ ============ */

.section-form .form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--gold-soft);
}

.field input,
.field textarea,
.field select {
  border-radius: 10px;
  border: 1px solid rgba(108, 92, 142, 0.95);
  background: rgba(10, 0, 19, 0.94);
  color: var(--text);
  padding: 9px 11px;
  font-size: 0.9rem;
  outline: none;
  resize: vertical;
}

.field textarea { min-height: 60px; }

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4);
}

/* ============ KURYE TAKİP ============ */

.section-track {
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), rgba(5, 0, 10, 0.98));
}

.track-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.track-form {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}

.track-form .field { max-width: 260px; }

.track-result {
  font-size: 0.9rem;
  color: var(--gold-soft);
  min-height: 1.2em;
}

.track-note {
  max-width: 360px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============ S.S.S. ============ */

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  background: rgba(10, 0, 20, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.95rem;
}

.faq-toggle-icon {
  font-weight: 700;
  color: var(--gold-soft);
  margin-left: 10px;
}

.faq-answer {
  display: none;
  padding: 0 14px 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-item.open .faq-answer { display: block; }

.faq-item.open .faq-toggle-icon { content: "−"; }

/* ============ FOOTER ============ */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050009;
  padding-top: 28px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 18px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 { margin-bottom: 8px; }

.footer-col h4 { margin-bottom: 8px; font-size: 1rem; }

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px 0 14px;
}

.footer-bottom-inner {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============ FLOATING BUTONLAR ============ */

.fab {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab i {
  font-size: 22px;
  line-height: 1;
  display: block;
}

/* WhatsApp sağ altta, Telefon sol altta */
.fab-wa {
  right: 18px;
  bottom: 18px;
  background: #25d366;
}

.fab-call {
  left: 18px;
  bottom: 18px;
  background: var(--gold);
  color: #16001a;
}

/* ============ RESPONSIVE ============ */

/* Tablet kırılımı */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding: 120px 0 60px;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .hero-card {
    max-width: 420px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobil */
@media (max-width: 768px) {

  .header-inner {
    grid-template-columns: 44px 1fr 70px;
    padding: 8px 0 2px;
  }

  /* PC sağ tarafını gizle */
  .header-right {
    display: none;
  }

  /* Mobil menü – tam ekran, opak panel */
  .main-nav {
    position: fixed;
    inset: 0;
    background: #05000b;
    display: none;
    flex-direction: column;
    padding: 90px 24px 24px;
    z-index: 1200;
  }

  /* JS: body.classList.toggle("nav-open")  */
  body.nav-open .main-nav {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 32px;
  }

  .nav-links a {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    border-radius: 10px;
    background: #231033;
    border: 1px solid rgba(212, 175, 55, 0.55);
  }

  .nav-links a::after {
    display: none;
  }

  /* Dil seçenekleri en altta */
  .mobile-lang {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 12px;
    padding-bottom: 26px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }

  .mobile-lang .lang-option {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #30184a;
    font-size: 1.25rem;
  }

  /* Mobil CANLI DESTEK – 2 satır yazı, sağdan taşmaz */
  .mobile-support-btn {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 42px;
    padding: 4px 4px;
    margin: 0;
    font-size: 0.65rem;
    line-height: 1;
    justify-self: center;
  }

  .mobile-support-btn .ms-line {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
  }

  /* Menü açıkken header barını şeffaflaştır (gerekmasa da zararı yok) */
  body.nav-open .site-header {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
  }

  .hero-inner {
    padding: 130px 0 54px;
  }

  .hero-left h1 {
    font-size: 2.1rem;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    flex-direction: column;
  }

  .track-inner {
    flex-direction: column;
  }

  .track-form {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Küçük mobil */
@media (max-width: 480px) {
  .logo-frame {
    width: 90px;
    height: 90px;
    transform: translateY(8px);
  }

  .hero-inner {
    padding: 120px 0 46px;
  }

  .hero-left h1 {
    font-size: 1.8rem;
  }

  .fab {
    width: 48px;
    height: 48px;
  }

  .fab-wa,
  .fab-call {
    bottom: 14px;
  }
}

/* === PC'DE MOBİL BUTONLARI GİZLE === */
@media (min-width: 992px) {
  .mobile-toggle,
  .mobile-support-btn {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
/* === 1) FLOATING TEL & WHATSAPP – İKON BOYUTU SABİTLE === */
.fab {
  width: 50px !important;
  height: 50px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.fab i {
  font-size: 20px !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Küçük telefonlarda biraz daha küçült */
@media (max-width: 480px) {
  .fab {
    width: 46px !important;
    height: 46px !important;
  }
  .fab i {
    font-size: 18px !important;
  }
}

/* === 2) MOBİL HAMBURGER / MENÜ PATCH === */
@media (max-width: 768px) {

  /* Hamburger butonunu menünün ÜSTÜNE çıkar, X tam görünsün */
  .mobile-toggle {
    position: relative;
    z-index: 2001 !important;
  }

  /* Menü arka planı tam şeffaf olsun – sadece mor butonlar görünsün */
  .main-nav {
    background: transparent !important;
  }

  /* Menü açıkken header bar koyu olmasın */
  body.nav-open .site-header {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
  }
}
.form-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 10px 0 5px;
}

.field-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}

.kvd-note {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #888;
}
#hizmet-bolgeleri {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#hizmet-bolgeleri h2 {
  font-size: 0.95rem;
  opacity: 0.7;
}

#hizmet-bolgeleri .district-text {
  font-size: 0.75rem;   /* küçük ama okunur */
  line-height: 1.4;
  opacity: 0.7;
}
#sss .faq-item {
  margin-bottom: 1rem;
}
#sss .faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
#sss .faq-item p {
  font-size: 0.9rem;
  opacity: 0.85;
}
