/* Erzurum Kardeşler Nakliyat — site stylesheet */

:root {
  --red: #c1121f;
  --red-dark: #8c0f19;
  --red-light: #e5383b;
  --ink: #201a1a;
  --ink-soft: #55494a;
  --paper: #ffffff;
  --paper-soft: #f7f4f4;
  --border: #ece3e3;
  --gold: #ffb703;
  --whatsapp: #25d366;
  --shadow: 0 10px 30px rgba(140, 15, 25, 0.12);
  --radius: 14px;
  --header-h: 78px;
  --marquee-h: 38px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  padding-bottom: 0;
}

body.has-sticky-bar { padding-bottom: 64px; }

h1, h2, h3, h4 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.25;
  margin: 0 0 .6em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.bg-soft { background: var(--paper-soft); }
.bg-dark { background: var(--ink); color: #fff; }

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: .6em;
}
.section-head { max-width: 680px; margin: 0 auto 2.6rem; text-align: center; }
.section-head p { color: var(--ink-soft); }
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .85em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(193,18,31,.35); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn-whatsapp:hover { filter: brightness(.95); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--red); }
.btn-ghost { background: #fff; color: var(--red); border-color: var(--red); }
.btn-ghost:hover { background: var(--red); color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Top marquee ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  height: var(--marquee-h);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 48px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}
.marquee span b { color: var(--gold); font-weight: 700; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; }
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: saturate(180%) blur(6px);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-badge {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(150deg, var(--red-light), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(193,18,31,.35);
}
.logo-badge svg { width: 26px; height: 26px; color: #fff; }
.logo-text { line-height: 1.15; }
.logo-text .l1 { display: block; font-family: "Poppins", sans-serif; font-weight: 800; font-size: 1.12rem; color: var(--ink); }
.logo-text .l2 { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; color: var(--red); text-transform: uppercase; }

nav.main-nav { display: flex; align-items: center; gap: 4px; }
nav.main-nav > ul { display: flex; align-items: center; gap: 2px; }
nav.main-nav > ul > li { position: relative; }
nav.main-nav > ul > li > a, nav.main-nav > ul > li > button.nav-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 14px;
  font-weight: 600; font-size: .92rem;
  color: var(--ink); border: none; background: none; border-radius: 8px;
}
nav.main-nav > ul > li > a:hover,
nav.main-nav > ul > li:hover > a,
nav.main-nav > ul > li.open > button.nav-toggle,
nav.main-nav > ul > li > button.nav-toggle:hover { color: var(--red); background: var(--paper-soft); }
nav.main-nav .chev { width: 12px; height: 12px; transition: transform .15s; }
nav.main-nav li.open .chev, nav.main-nav li:hover .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 280px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 50;
  max-height: 70vh;
  overflow-y: auto;
}
.dropdown.mega { min-width: 560px; column-count: 2; column-gap: 6px; }
li.open > .dropdown, li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .9rem; font-weight: 500; color: var(--ink-soft); break-inside: avoid; }
.dropdown a:hover { background: var(--paper-soft); color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: .7em 1.2em; font-size: .88rem; }
.header-cta .phone-link { display: none; }

.hamburger {
  display: none;
  width: 42px; height: 42px; border: none; background: var(--paper-soft);
  border-radius: 10px; align-items: center; justify-content: center;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: .2s;
}
.hamburger span::before { position: absolute; top: -6px; }
.hamburger span::after { position: absolute; top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,8,8,.86) 15%, rgba(10,8,8,.6) 55%, rgba(10,8,8,.32));
  z-index: -1;
}
.hero-content { max-width: 620px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  padding: 8px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--gold); }
.hero h1 { font-size: clamp(2rem, 4.2vw, 3rem); color: #fff; }
.hero h1 span { color: var(--gold); }
.hero-phones { display: flex; flex-wrap: wrap; gap: 14px 26px; margin: 18px 0 22px; }
.hero-phones a {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.25rem; font-weight: 800; color: #fff;
  font-family: "Poppins", sans-serif;
}
.hero-phones a svg { width: 20px; height: 20px; color: var(--gold); }
.hero-phones a:hover { color: var(--gold); }
.hero p.lead { font-size: 1.08rem; color: rgba(255,255,255,.9); max-width: 540px; }

/* small page hero (inner pages) */
.page-hero {
  position: relative; color: #fff; padding: 70px 0 54px;
  background-size: cover; background-position: center; isolation: isolate;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,8,8,.88), rgba(10,8,8,.5));
  z-index: -1;
}
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); max-width: 760px; }
.page-hero p { color: rgba(255,255,255,.88); max-width: 620px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--ink); color: #fff; padding: 22px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .9rem; }
.trust-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(150deg, var(--red-light), var(--red-dark));
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card-icon svg { width: 28px; height: 28px; color: #fff; }
.card h3 { font-size: 1.12rem; }
.card p { color: var(--ink-soft); font-size: .93rem; margin-bottom: 1em; }
.card .more { color: var(--red); font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; }
.card .more svg { width: 14px; height: 14px; }

/* ---------- Why us ---------- */
.why-wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px; align-items: center; }
.why-wrap img { border-radius: var(--radius); box-shadow: var(--shadow); }
.why-list { display: grid; gap: 18px; margin-top: 24px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-list .ic {
  width: 40px; height: 40px; border-radius: 10px; background: var(--paper-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-list .ic svg { width: 20px; height: 20px; color: var(--red); }
.why-list strong { display: block; margin-bottom: 2px; }
.why-list p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

/* ---------- Video ---------- */
.video-frame {
  position: relative; width: 100%; padding-top: 56.25%;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: #000;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid a {
  position: relative; display: block; overflow: hidden; border-radius: 12px;
  aspect-ratio: 1 / 1;
}
.gallery-grid.wide a:nth-child(3n+1) { grid-row: span 2; aspect-ratio: 1/2.06; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.45), transparent 45%);
  opacity: 0; transition: opacity .2s;
}
.gallery-grid a:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; background: rgba(10,5,5,.92);
  display: none; align-items: center; justify-content: center; z-index: 2000;
  padding: 30px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: min(900px, 92vw); max-height: 84vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
  color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }

/* ---------- Service areas (districts) ---------- */
.area-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.area-chip {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 16px; font-weight: 600; font-size: .92rem;
  transition: .15s;
}
.area-chip svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; transition: transform .15s; }
.area-chip:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }
.area-chip:hover svg { color: #fff; transform: translateX(3px); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.stars svg { width: 16px; height: 16px; color: var(--gold); }
.testi-card p.quote { color: var(--ink-soft); font-size: .93rem; min-height: 84px; }
.testi-who { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--paper-soft);
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--red);
}
.testi-note {
  margin-top: 10px; font-size: .78rem; color: var(--ink-soft); text-align: center; opacity: .75;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--red-dark), var(--red-light));
  color: #fff; border-radius: 22px; padding: 46px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: .3em; }
.cta-banner p { color: rgba(255,255,255,.9); margin: 0; }

/* ---------- Social strip ---------- */
.social-strip { display: flex; align-items: center; justify-content: center; gap: 16px; }
.social-btn {
  width: 46px; height: 46px; border-radius: 50%; background: var(--paper-soft);
  display: flex; align-items: center; justify-content: center; color: var(--red);
  border: 1px solid var(--border);
}
.social-btn:hover { background: var(--red); color: #fff; }
.social-btn svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--ink); color: rgba(255,255,255,.82); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 34px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1em; }
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid a { font-size: .9rem; color: rgba(255,255,255,.7); }
.footer-grid a:hover { color: var(--gold); }
.footer-about p { font-size: .9rem; color: rgba(255,255,255,.68); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--red); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: rgba(255,255,255,.75); }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .82rem; color: rgba(255,255,255,.55);
}

/* ---------- Mobile sticky call bar ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: none; box-shadow: 0 -6px 20px rgba(0,0,0,.18);
}
.sticky-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px; font-weight: 700; font-size: .92rem; color: #fff;
}
.sticky-bar a svg { width: 19px; height: 19px; }
.sticky-bar .call { background: var(--red); }
.sticky-bar .wa { background: var(--whatsapp); }

/* ---------- District / service page detail blocks ---------- */
.detail-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.detail-wrap img { border-radius: var(--radius); box-shadow: var(--shadow); }
.check-list { display: grid; gap: 12px; margin-top: 20px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.check-list svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 1px; }

.info-box {
  background: var(--paper-soft); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; margin-top: 18px;
}
.info-box h4 { margin-bottom: .5em; }

.related-services, .related-areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.pill {
  border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px; font-size: .85rem; font-weight: 600;
  color: var(--ink-soft);
}
.pill:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px;
}
.contact-card .ic {
  width: 46px; height: 46px; border-radius: 12px; background: var(--paper-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card .ic svg { width: 22px; height: 22px; color: var(--red); }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  nav.main-nav, .header-cta .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .grid-3, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .why-wrap, .detail-wrap, .contact-grid { grid-template-columns: 1fr; }
  .why-wrap img, .detail-wrap img { order: -1; }
  .sticky-bar { display: flex; }
  body.has-sticky-bar { padding-bottom: 62px; }
}
@media (max-width: 680px) {
  section { padding: 44px 0; }
  .grid-3, .grid-4, .testi-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.wide a:nth-child(3n+1) { grid-row: span 1; aspect-ratio: 1/1; }
  .cta-banner { flex-direction: column; text-align: center; padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 520px; text-align: left; }
}
@media (max-width: 460px) {
  .grid-3, .grid-4, .testi-grid, .area-grid { grid-template-columns: 1fr 1fr; }
  .logo-text .l1 { font-size: 1rem; }
}

/* Mobile off-canvas nav */
.mobile-nav {
  position: fixed; inset: 0; background: #fff; z-index: 1000;
  transform: translateX(100%); transition: transform .25s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.mobile-nav-close { width: 40px; height: 40px; border: none; background: var(--paper-soft); border-radius: 10px; }
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav ul { padding: 10px 10px 30px; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--border); }
.mobile-nav > ul > li > a, .mobile-nav .mn-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 10px; font-weight: 700; font-size: 1rem; width: 100%; background: none; border: none; color: var(--ink);
}
.mobile-nav .mn-toggle svg { width: 16px; height: 16px; transition: transform .2s; }
.mobile-nav li.open .mn-toggle svg { transform: rotate(180deg); }
.mobile-nav .mn-sub { display: none; padding: 0 10px 14px 20px; }
.mobile-nav li.open .mn-sub { display: grid; gap: 4px; }
.mobile-nav .mn-sub a { padding: 8px 10px; font-size: .9rem; color: var(--ink-soft); font-weight: 500; }
.mobile-nav-cta { padding: 20px; display: grid; gap: 10px; }
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 999; opacity: 0; visibility: hidden; transition: .2s; }
.nav-overlay.active { opacity: 1; visibility: visible; }
