/* =========================================================
   ETAP Nakliyat Konya - Minimal, hızlı, SEO & mobil uyumlu tema
   ========================================================= */

:root{
  --bg1:#ffffff;
  --bg2:#f3f4f6;
  --card:#ffffff;
  --text:#111827;
  --muted:#4b5563;
  --line:#e5e7eb;

  --primary:#ff7a18;      /* turuncu */
  --primary-2:#ff9a3d;
  --whatsapp:#25D366;
  --shadow: 0 18px 45px rgba(17,24,39,.14);
  --shadow-soft: 0 10px 25px rgba(17,24,39,.12);
  --radius: 18px;
  --radius-sm: 14px;

  --max: 1180px;
}

/* Base */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "DejaVu Sans", "Noto Sans", sans-serif;
  color:var(--text);
  background: linear-gradient(180deg, var(--bg1), var(--bg2));
  line-height:1.55;
  padding-bottom: 64px; /* bottom bar */
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}
.section{
  padding: 34px 0;
}
.section-title{
  margin:0 0 12px;
  font-size: 1.35rem;
  letter-spacing: .2px;
}
.lead{
  margin: 0 0 16px;
  color: var(--muted);
}
.hr{
  height:1px;
  background: var(--line);
  border:0;
  margin: 20px 0;
}

/* Skip link */
.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; }

.skip-link{
  position:absolute;
  left:-9999px;
  top: 10px;
  padding: 10px 12px;
  background:#111827;
  color:#fff;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left:10px; }

/* Navbar */
.navbar{
  position: sticky;
  top:0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,.85);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 10px 16px;
  width:min(var(--max), 100%);
  margin-inline:auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.brand img{ width:44px; height:44px; }
.brand span{
  font-weight:800;
  letter-spacing:.2px;
}
.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
}
.nav-toggle i{ font-size: 1.05rem; }

.nav-menu{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav-list{
  list-style:none;
  display:flex;
  align-items:center;
  gap: 10px;
  padding:0;
  margin:0;
}
.nav-list > li{ position:relative; }
.nav-link,
.dropdown-toggle{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  background: transparent;
  cursor:pointer;
}
.nav-link:hover,
.dropdown-toggle:hover{
  background: rgba(243,244,246,.9);
  text-decoration:none;
}
.nav-link.active{
  border-color: rgba(255,122,24,.35);
  background: rgba(255,122,24,.08);
}

.caret{ font-size:.9rem; opacity:.7; }

/* Dropdown */
.dropdown-menu{
  position:absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 10px;
  display:none;
}
.dropdown-menu a{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 650;
  color: var(--text);
}
.dropdown-menu a:hover{
  background: rgba(243,244,246,.9);
  text-decoration:none;
}
.dropdown.open .dropdown-menu{ display:block; }
.dropdown-menu.scrollable{
  max-height: 58vh;
  overflow-y: auto;
}

/* Nav CTA */
.nav-cta{
  display:flex;
  gap:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing:.15px;
  cursor:pointer;
  box-shadow: 0 10px 20px rgba(17,24,39,.12);
  transform: translateY(0);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  text-decoration:none !important;
}
.btn:active{ transform: translateY(1px); box-shadow: 0 6px 14px rgba(17,24,39,.14); }

.btn-small{ padding: 10px 12px; font-size:.92rem; box-shadow: none; border:1px solid var(--line); background:#fff; }
.btn-small:hover{ background: rgba(243,244,246,.9); }

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
}
.btn-call{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
}
.btn-whatsapp{
  background: linear-gradient(135deg, #1db954, var(--whatsapp));
  color:#fff;
}
.btn-outline{
  background:#fff;
  border-color: var(--line);
  color: var(--text);
}
.btn-outline:hover{
  background: rgba(243,244,246,.9);
}
.pulse{
  animation: pulse 1.6s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(255,122,24,.55), 0 10px 20px rgba(17,24,39,.12); }
  70%{ box-shadow: 0 0 0 18px rgba(255,122,24,0), 0 10px 20px rgba(17,24,39,.12); }
  100%{ box-shadow: 0 0 0 0 rgba(255,122,24,0), 0 10px 20px rgba(17,24,39,.12); }
}

/* Hero */
.hero{
  position: relative;
  width: 100%;
  overflow:hidden;
  background: #111827;
}
.hero-media img{
  width:100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(1.02);
}
.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap: 10px;
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(17,24,39,.08) 20%, rgba(17,24,39,.78) 100%);
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.hero-badge .typing{
  color:#fff;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 1.08rem;
}
.hero-rating{
  display:flex;
  align-items:center;
  gap: 10px;
  color:#fff;
  font-weight: 800;
}
.rating-value{
  font-size: 1.05rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 10px;
  border-radius: 999px;
}
.stars i{
  color: #f5c542;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.35));
}
.hero-google{
  display:flex;
  align-items:center;
  gap: 10px;
  color:#fff;
  font-weight: 750;
  opacity: .98;
}
.hero-google i{ font-size: 1.1rem; }
.hero-buttons{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* Cards */
.card{
  background: var(--card);
  border: 1px solid rgba(229,231,235,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card:hover{
  box-shadow: 0 24px 60px rgba(17,24,39,.18);
}
.card-media{
  position:relative;
  overflow:hidden;
}
.card-media img{
  width:100%;
  height: 210px;
  object-fit: cover;
}
.card-body{
  padding: 16px;
}
.card-title{
  margin: 0 0 10px;
  font-size: 1.18rem;
  display:flex;
  align-items:center;
  gap: 10px;
}
.card-title i{
  color: var(--primary);
}
.card-text{
  margin: 0 0 12px;
  color: var(--muted);
}
.feature-list{
  margin:0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}
.card-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* Lists / chips */
.chip-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 12px;
  border-radius: 16px;
  background:#fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(17,24,39,.10);
  font-weight: 800;
}
.chip i{ color: var(--primary); }
.chip:hover{ background: rgba(243,244,246,.9); text-decoration:none; }

/* Review cards */
.review{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.review-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.review-name{
  font-weight: 900;
}
.review-date{
  color: var(--muted);
  font-weight: 750;
  font-size: .95rem;
  white-space:nowrap;
}
.review-stars i{ color:#f5c542; }
.review-text{ margin:0; color: var(--muted); }

/* Article */
.article{
  max-width: 860px;
  margin: 0 auto;
}
.article h1{
  margin: 0 0 10px;
  font-size: 1.5rem;
}
.article h2{
  margin: 22px 0 10px;
  font-size: 1.25rem;
}
.article p{
  margin: 0 0 12px;
  color: var(--muted);
}
.callout{
  margin: 16px 0;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,122,24,.28);
  background: rgba(255,122,24,.06);
}

/* Footer */
.footer{
  margin-top: 34px;
  border-top: 1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.78);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 18px;
  padding: 26px 0;
}
.footer h3, .footer h4{ margin:0 0 10px; }
.footer p, .footer a{ color: var(--muted); }
.footer a:hover{ color: var(--text); }
.footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
}
.footer li a{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 750;
}
.footer li i{ color: var(--primary); }
.footer .contact p{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin: 0 0 10px;
}
.footer .contact i{ color: var(--primary); margin-top:3px; }
.footer-bottom{
  padding: 12px 0;
  border-top: 1px solid rgba(229,231,235,.9);
  color: var(--muted);
  text-align:center;
  font-weight: 700;
}

/* Bottom bar fixed */
.bottom-bar{
  position: fixed;
  left:0;
  right:0;
  bottom:0;
  z-index: 1200;
  display:flex;
  width:100%;
  background:#111827;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-btn{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 10px;
  font-weight: 900;
  letter-spacing:.2px;
  color:#fff;
  text-decoration:none !important;
  border-radius:0;
}
.bottom-btn i{ font-size: 1.1rem; }
.bottom-call{ background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.bottom-whatsapp{ background: linear-gradient(135deg, #1db954, var(--whatsapp)); }

/* Layout helpers */
.grid{
  display:grid;
  gap: 16px;
}
.grid-1{ grid-template-columns: 1fr; }

/* Responsive */
@media (max-width: 960px){
  .nav-toggle{ display:inline-flex; }
  .nav-menu{
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding: 10px 16px 16px;
    gap: 10px;
    max-height: calc(100vh - 64px);
    overflow:auto;
  }
  .nav-menu.open{ display:flex; }
  .nav-list{ flex-direction:column; align-items:stretch; }
  .nav-link, .dropdown-toggle{ width:100%; justify-content:space-between; }
  .dropdown-menu{
    position: static;
    display:none;
    min-width: auto;
    box-shadow: none;
    border-radius: 14px;
    margin-top: 6px;
  }
  .dropdown.open .dropdown-menu{ display:block; }
  .nav-cta{ display:grid; grid-template-columns: 1fr 1fr; }
  .hero-media img{ height: 300px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .chip-grid{ grid-template-columns: 1fr; }
}
@media (min-width: 961px){
  .hero-media img{ height: 420px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .pulse{ animation: none; }
}


/* ===========================
   REVİZE: Performans + Mobil UI
   =========================== */

/* Yeni logo / brand */
.brand{
  gap:12px;
}
.brand img{ display:none; } /* eski logo görselini gizle (yedek) */
.brand-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 28px rgba(17,24,39,.18);
  color:#fff;
  flex: 0 0 auto;
}
.brand-icon i{ font-size: 1.25rem; }
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-name{
  font-weight: 900;
  letter-spacing:.2px;
  font-size: 1.02rem;
}
.brand-sub{
  font-weight: 800;
  color: var(--muted);
  font-size: .88rem;
  margin-top: 2px;
}

/* Kartlar daha oturaklı 3D */
.card{
  box-shadow: 0 14px 34px rgba(17,24,39,.12);
  border: 1px solid rgba(229,231,235,.95);
  transform: translateZ(0);
}
.card:hover{
  box-shadow: 0 28px 70px rgba(17,24,39,.18);
  transform: translateY(-2px);
}

/* Hizmet kartı butonları alt alta ve tam otursun */
.card-actions{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}
.card-actions .btn{
  width:100%;
  justify-content:center;
  border-radius: 14px;
}
.btn{
  box-shadow: 0 12px 26px rgba(17,24,39,.12);
}
.btn:active{
  transform: translateY(1px);
}

/* Scroll ile açılan animasyon */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Dalgalı başlık (anasayfa) */
.wave-title{
  margin:0 0 14px;
  font-size:1.6rem;
  letter-spacing:.2px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.wave-title span{
  display:inline-block;
  animation: waveUpDown .95s ease-in-out infinite;
}
.wave-title span:nth-child(1){ animation-delay: 0s; }
.wave-title span:nth-child(2){ animation-delay: .08s; }
.wave-title span:nth-child(3){ animation-delay: .16s; }
.wave-title span:nth-child(4){ animation-delay: .24s; }
@keyframes waveUpDown{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* Hizmet bölgeleri chip görünümü + pin nabız */
.chip{
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(17,24,39,.10);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.chip:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(17,24,39,.14);
}
.chip .pin{
  display:inline-grid;
  place-items:center;
  animation: pinPulse 1.2s infinite;
}
@keyframes pinPulse{
  0%{ transform: translateY(0) scale(1); opacity:1; }
  50%{ transform: translateY(-2px) scale(1.08); opacity:.95; }
  100%{ transform: translateY(0) scale(1); opacity:1; }
}

/* Yorumlar: yıldızlar tek tek zıplasın + tarih zıplasın */
.review-stars i{
  display:inline-block;
  animation: starBob .55s ease-in-out infinite;
}
.review-stars i:nth-child(1){ animation-delay: 0s; }
.review-stars i:nth-child(2){ animation-delay: .06s; }
.review-stars i:nth-child(3){ animation-delay: .12s; }
.review-stars i:nth-child(4){ animation-delay: .18s; }
.review-stars i:nth-child(5){ animation-delay: .24s; }

.review-date{
  display:inline-block;
  animation: starBob .55s ease-in-out infinite;
  animation-delay: .12s;
}
@keyframes starBob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-5px); }
}

/* Görsel performans: img paint */
img{ 
  content-visibility: auto;
}
@media (prefers-reduced-motion: reduce){
  .pulse, .review-stars i, .review-date, .wave-title span, .chip .pin, .reveal{
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
