/* ------------------------------------------------------------------------ */
/* Boilerplate CSS -------------------------------------------------------- */
/* ------------------------------------------------------------------------ */

:root {
  --font-family-base:
    "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-display:
    "Oswald", "Arial Narrow", system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;

  /* ---- Öz Fatih Nakliyat / Modern Endüstriyel marka tokenleri ---- */
  --color-ink: #17181c;
  --color-ink-raised: #26282e;
  --color-ink-surface: #2e3038;
  --color-ink-border: #3d4048;
  --color-paper: #f7f5f2;
  --color-text: #f4f1ea;
  --color-text-muted: #b7b3ac;
  --color-amber: #f5a623;
  --color-amber-strong: #ffb84d;
  --color-amber-dim: #b8720a;
  --shadow-amber: 0 8px 28px rgba(245, 166, 35, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-sheen: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0) 45%
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  border: none;
}

body {
  font-family: var(--font-family-base);
}

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

menu:not(article menu),
ol:not(article ol),
ul:not(article ul) {
  list-style: none;
}

menu,
ol,
ul {
  padding-left: 0;
}

article ol,
article ul {
  list-style-position: inside;
}

a {
  /* Places underlines below the descenders */
  text-underline-position: under;
  /* Sets the thickness as a percentage of the font size */
  text-decoration-thickness: 8;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .card-bento:hover,
  .btn-amber:hover,
  .chat-bubbles a:hover {
    transform: none !important;
  }
}

:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  color: white;
  background: black;
}

label,
button,
select,
summary,
[type="radio"],
[type="submit"],
[type="checkbox"] {
  cursor: pointer;
}

/* ------------------------------------------------------------------------ */
/* UTILITY CLASSES -------------------------------------------------------- */
/* ------------------------------------------------------------------------ */

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.nowrap {
  white-space: nowrap;
}

/* ------------------------------------------------------------------------ */

.flex-align-center {
  display: flex;
  align-items: center;
}

.flex-justify-center {
  display: flex;
  justify-content: center;
}

.flex-direction-column {
  display: flex;
  flex-direction: column;
}

.flex-direction-row {
  display: flex;
  flex-direction: row;
}

.flex-direction-desktop-row-mobile-column {
  display: flex;
  flex-direction: row;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.gap-05 {
  gap: 0.5rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-4 {
  gap: 4rem;
}

/* ------------------------------------------------------------------------ */

.padding-vertical-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.padding-vertical-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.padding-vertical-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.padding-horizontal-0 {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal-05 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.padding-horizontal-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.padding-top-1 {
  padding-top: 1rem;
}

.padding-top-2 {
  padding-top: 2rem;
}

.padding-top-4 {
  padding-top: 4rem;
}

.padding-bottom-1 {
  padding-bottom: 1rem;
}

.padding-bottom-2 {
  padding-bottom: 2rem;
}

.padding-bottom-4 {
  padding-bottom: 4rem;
}

.padding-left-1 {
  padding-left: 1rem;
}

.padding-left-2 {
  padding-left: 2rem;
}

.padding-left-4 {
  padding-left: 4rem;
}

/* ------------------------------------------------------------------------ */

.multi-columns-vertical-list {
  columns: 1;
  /* Mobil: tek sütun */
  column-gap: 2rem;
}

.multi-columns-vertical-list li {
  break-inside: avoid;
  margin: 0 0 1rem 0;
}

@media (min-width: 768px) {
  .multi-columns-vertical-list {
    columns: 2;
    /* Tablet ≥768 px → 2 sütun */
  }
}

@media (min-width: 1024px) {
  .multi-columns-vertical-list {
    columns: 3;
    /* Masaüstü ≥1024 px → 3 sütun */
  }
}

/* ------------------------------------------------------------------------ */

.list-style-type-square li {
  list-style: square inside;
  /* Pico set outside version by default */
}

.list-style-type-circle li {
  list-style: circle inside;
}

.list-style-type-disc li {
  list-style: disc inside;
}

.list-style-type-decimal li {
  list-style: decimal inside;
}

.list-style-type-lower-latin li {
  list-style: lower-latin inside;
}

.list-style-type-upper-latin li {
  list-style: upper-latin inside;
}

.list-style-type-lower-roman li {
  list-style: lower-roman inside;
}

.list-style-type-upper-roman li {
  list-style: upper-roman inside;
}

.list-style-position-outside li {
  list-style-position: outside;
}

.list-style-type-none li {
  list-style-type: none;
  /* Removes default list style */
}

.list-itemsgap-05 li {
  padding-bottom: 0.5rem;
}

.list-itemsgap-1 li {
  padding-bottom: 1rem;
}

.list-itemsgap-2 li {
  padding-bottom: 2rem;
}

/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* HOME HERO -------------------------------------------------------------- */
/* ------------------------------------------------------------------------ */

.hero-bg {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 60% 80% at 100% 0%,
      rgba(245, 166, 35, 0.16) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #1a1a1a 0%, #101010 55%, #141414 100%) !important;
  border-bottom: 1px solid var(--color-ink-border);
  min-height: 400px;
  margin: 0;
}

@media (min-width: 1024px) {
  .hero-bg {
    min-height: 560px;
  }
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image: radial-gradient(
    rgba(245, 166, 35, 0.16) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 85% 15%,
    black 0%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 85% 15%,
    black 0%,
    transparent 70%
  );
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(245, 166, 35, 0.12),
    transparent 70%
  );
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: -25%;
  z-index: 1;
  width: 70%;
  height: 160%;
  pointer-events: none;
  background: radial-gradient(
    ellipse 55% 50% at 30% 45%,
    rgba(245, 166, 35, 0.18) 0%,
    rgba(245, 166, 35, 0.07) 40%,
    transparent 72%
  );
  filter: blur(18px);
  opacity: 0.75;
  animation: hero-glow-drift 9s ease-in-out infinite alternate;
}

@keyframes hero-glow-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }
  to {
    transform: translate3d(6%, -3%, 0) scale(1.12);
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow {
    animation: none;
    opacity: 0.65;
  }
}

.hero-bg article {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  box-shadow: none;
  margin-bottom: 0;
}

/* Hero photo is authored 3:4 portrait (1200x1600). Mobile shows a wide crop of
   its middle; from 1024px up the image gets its own right-hand column whose box
   ratio is close to 3:4, so `cover` barely crops and no offset hacks are needed. */
.hero-photo-bg {
  display: block;
  position: relative;
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 0 0 12px 12px;
}

@media (min-width: 640px) {
  .hero-photo-bg {
    max-height: 320px;
  }
}

@media (min-width: 1024px) {
  .hero-photo-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 38%;
    z-index: 1;
    width: auto;
    height: 100%;
    max-height: none;
    border-radius: 0;
    object-fit: cover;
    object-position: center 45%;
    clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
    -webkit-mask-image: linear-gradient(
      100deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 22%,
      black 52%
    );
    mask-image: linear-gradient(
      100deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 22%,
      black 52%
    );
  }
}

@media (min-width: 1440px) {
  .hero-photo-bg {
    left: 40%;
  }
}

.hero-bg article > header,
.hero-bg article > footer {
  background: transparent;
}

@media (min-width: 1024px) {
  .hero-bg {
    background-attachment: fixed;
    min-height: 520px;
  }
}

/* Multi Columns List */

/* ------------------------------------------------------------------------ */
/* Service Cards ---------------------------------------------------------- */
/* ------------------------------------------------------------------------ */

.card-article-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.img-aspect43-cover-full {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* ===== GALLERY-MASONRY - MOBILE:1 / TABLET:2 / DESKTOP:3 (CSS columns, kırpma yok) === */
.gallery-masonry {
  columns: 1;
  column-gap: 2rem;
}

.gallery-masonry > * {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: block;
  margin-bottom: 2rem;
}

.gallery-masonry img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

/* ≥576 px → 2 columns (tablet and up) */
@media (min-width: 576px) {
  .gallery-masonry {
    columns: 2;
  }
}

/* ≥1024 px → 3 columns (desktop and up) */
@media (min-width: 1024px) {
  .gallery-masonry {
    columns: 3;
  }
}

/* ===== FLEX-123 CUSTOM UTILITY CLAS - MOBILE:1 / TABLET:2 / DESKTOP:3 ================ */
.flex-123 {
  --gap: 2rem;
  --columns: 1;
  /* Defult: 1 column (Mobile) */
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
  /* Center children horizontally */
  /*align-items: stretch;  Stretch children to the same height */
}

/* Flex children */
.flex-123 > * {
  box-sizing: border-box;
  flex: 0 1 calc((100% - (var(--gap) * (var(--columns) - 1))) / var(--columns));
  max-width: 100%;
}

/* ≥576 px → 2 columns (tablet and up) */
@media (min-width: 576px) {
  .flex-123 {
    --columns: 2;
  }
}

/* ≥1024 px → 3 columns (desktop and up) */
@media (min-width: 1024px) {
  .flex-123 {
    --columns: 3;
  }
}

/* ===== FLEX-113 CUSTOM UTILITY CLAS - MOBILE:1 / TABLET:1 / DESKTOP:3 ================ */
.flex-113 {
  --gap: 2rem;
  --columns: 1;
  /* Defult: 1 column (Mobile) */
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
  /* Center children horizontally */
  /*align-items: stretch;  Stretch children to the same height */
}

/* Flex children */
.flex-113 > * {
  box-sizing: border-box;
  flex: 0 1 calc((100% - (var(--gap) * (var(--columns) - 1))) / var(--columns));
  max-width: 100%;
}

/* ≥576 px → 2 columns (tablet and up) */
@media (min-width: 576px) {
  .flex-113 {
    --columns: 1;
  }
}

/* ≥1024 px → 3 columns (desktop and up) */
@media (min-width: 1024px) {
  .flex-113 {
    --columns: 3;
  }
}

/* ----------------------------------------------------------
   Lazy-loaded Google Map  —  Pico CSS breakpoint’lerine göre
   ---------------------------------------------------------- */

/* Lazy-loaded Google Map - Responsive oranlar ile */

.lazy-map {
  position: relative;
  width: 100%;
  background: #eee;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  /* varsayılan oran */
}

/* Küçük ekranlar (telefon) */
@media (max-width: 575px) {
  .lazy-map {
    aspect-ratio: 3 / 4;
  }
}

/* Orta ekranlar (tablet varsayılan zaten 4/3 kalıyor) */

/* Büyük ekranlar */
@media (min-width: 1024px) {
  .lazy-map {
    aspect-ratio: 3 / 1;
  }
}

@media (min-width: 1536px) {
  .lazy-map {
    aspect-ratio: 4 / 1;
  }
}

@media (min-width: 2000px) {
  .lazy-map {
    aspect-ratio: 5 / 1;
  }
}

/* İç elemanların yerleşimi */
.lazy-map > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Sadece placeholder görseli cover olsun */
.lazy-map img {
  object-fit: cover;
}

/* ----------------------------------------------------------
   Image Full Width & Aspect Ratio 16:9
   ---------------------------------------------------------- */

.image-full-16-9 {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.image-full-width {
  object-fit: cover;
  width: 100dvw;
  width: 100vw;
  width: 100%;
  height: auto;
}

/* ------------------------------------------------------------------------ */
/* NAVBAR MOBILE NOWRAP --------------------------------------------------- */
/* ------------------------------------------------------------------------ */

.navbar-inline {
  position: relative;
  isolation: isolate;
  z-index: 100;
  display: flex;
  /* aynı satır */
  flex-direction: row;
  align-items: center;
  /* dikey hizalama */
  justify-content: space-between;
  /* logo solda, menü sağda */
  flex-wrap: nowrap;
  /* asla satır kırma */
  gap: 0.5rem;
  /* logo ↔ menü arası boşluk */
}

.navbar-inline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100vw;
  height: 80px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.7) 35%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.navbar-inline > * {
  position: relative;
  z-index: 2;
}

.navbar-inline ul {
  margin: 0;
  /* Pico varsayımı */
  display: flex;
  /* <li>-leri yatay hizala */
}

.navbar-inline img.logo {
  height: clamp(60px, 10vw, 90px);
  /* mobilde makul yükseklik  */
  width: auto;
}

/* ------------------------------------------------------------------------ */
/* BREADCRUMB FLOAT LEFT --------------------------------------------------- */
/* ------------------------------------------------------------------------ */

nav[aria-label="breadcrumb"] {
  align-items: start;
  justify-content: start;
}

/* ------------------------------------------------------------------------ */
/* ABOUT PAGE LIST LEFT PADDING ------------------------------------------- */
/* ------------------------------------------------------------------------ */

#hizmet-yaklasimi,
#istanbul-projeleri-1,
#istanbul-projeleri-2,
#istanbul-projeleri-3 {
  padding-left: 2rem;
}

/* ------------------------------------------------------------------------ */
/* FOOTER MIDDLE COLUMN LEFT PADDING -------------------------------------- */
/* ------------------------------------------------------------------------ */

@media (min-width: 1024px) {
  #footer-services {
    padding-left: 4rem;
  }
}

/* ------------------------------------------------------------------------ */
/* CHAT BUBBLES ----------------------------------------------------------- */
/* ------------------------------------------------------------------------ */

.chat-bubbles {
  position: fixed;
  right: 1rem;
  bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 9999;
}

.chat-bubbles a {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: white; */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.chat-bubbles a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.chat-bubbles svg {
  width: 4rem;
  height: 4rem;
}

/*
.whatsapp svg path { fill: #25D366; }
.phone svg path { fill: #007AFF; }
*/

/* ------------------------------------------------------------------------ */
/* NAVBAR DROPDOWN -------------------------------------------------------- */
/* ------------------------------------------------------------------------ */

.navbar-inline details.dropdown > summary {
  background: linear-gradient(135deg, #825100 0%, #b76d00 100%);
  color: var(--color-text);
  border: none;
  font-family: var(--font-family-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 6px;
  padding: 0.5rem 1.15rem;
  box-shadow: 0 2px 10px rgba(245, 166, 35, 0.25);
  transition:
    opacity 0.18s ease,
    box-shadow 0.18s ease;
}

.navbar-inline details.dropdown > summary:hover,
.navbar-inline details.dropdown > summary:focus {
  opacity: 0.9;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
}

.navbar-inline details.dropdown > summary::marker,
.navbar-inline details.dropdown > summary::-webkit-details-marker {
  display: none;
}

.navbar-inline details.dropdown > ul {
  background: var(--color-ink-raised);
  border: 1px solid var(--color-ink-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  min-width: max-content;
}

.navbar-inline details.dropdown > ul li a {
  color: var(--color-text) !important;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
  transition:
    background 0.12s ease,
    color 0.12s ease;
}

.navbar-inline details.dropdown > ul li a:hover,
.navbar-inline details.dropdown > ul li a:focus {
  color: var(--color-amber-strong) !important;
  background: rgba(245, 166, 35, 0.1);
}

/* Alt il sayfaları (Kars Nakliyat altındaki Iğdır / Ardahan girdileri) */
.navbar-inline details.dropdown > ul li.nav-sub-item a {
  padding-right: 1.5rem;
  font-size: 0.88em;
  color: var(--color-text-muted) !important;
}

.navbar-inline details.dropdown > ul li.nav-sub-item a::after {
  content: "↳";
  margin-left: 0.4rem;
  color: var(--color-amber);
}

/* ------------------------------------------------------------------------ */
/* RESPONSIVE BRAND LOGOS ------------------------------------------------- */
/* ------------------------------------------------------------------------ */

.brand-logo {
  width: 90px;
  height: auto;
}

@media (min-width: 576px) {
  .brand-logo {
    width: 120px;
  }
}

/* ========================================================================== */
/* ÖZ FATİH NAKLİYAT — MODERN ENDÜSTRİYEL TASARIM SİSTEMİ                     */
/* ========================================================================== */

/* Yatay scroll engeli (navbar ::after 100vw taşmasını önler) */
body {
  overflow-x: hidden;
  background:
    radial-gradient(
      ellipse 70% 40% at 15% 0%,
      rgba(245, 166, 35, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 100% 30%,
      rgba(80, 90, 120, 0.1) 0%,
      transparent 60%
    ),
    var(--color-ink);
  background-attachment: fixed;
  color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-display);
  letter-spacing: -0.01em;
}

/* ---- Pico değişken override — koyu marka paleti ------------------------ */
:root,
[data-theme="light"],
[data-theme="dark"] {
  --pico-background-color: var(--color-ink);
  --pico-color: var(--color-text);
  --pico-h1-color: var(--color-text);
  --pico-h2-color: var(--color-text);
  --pico-h3-color: var(--color-text);
  --pico-muted-color: var(--color-text-muted);
  --pico-muted-border-color: var(--color-ink-border);
  --pico-primary: var(--color-amber);
  --pico-primary-background: var(--color-amber);
  --pico-primary-hover-background: var(--color-amber-dim);
  --pico-primary-border: var(--color-amber);
  --pico-primary-hover-border: var(--color-amber-dim);
  --pico-primary-inverse: #1a1200;
  --pico-card-background-color: var(--color-ink-raised);
  --pico-card-border-color: var(--color-ink-border);
  --pico-card-sectioning-background-color: var(--color-ink-raised);
  --pico-contrast: var(--color-text);
  --pico-contrast-hover: var(--color-amber-strong);
  --pico-secondary: var(--color-text-muted);
  --pico-secondary-hover: var(--color-amber-strong);
  --pico-secondary-inverse: #fff;
  --pico-dropdown-background-color: var(--color-ink-raised);
  --pico-dropdown-border-color: var(--color-ink-border);
}

mark {
  background: transparent;
  color: var(--color-amber);
  font-weight: 800;
  padding: 0;
}

::selection {
  color: var(--color-ink);
  background: var(--color-amber);
}

/* ---- Header / nav ------------------------------------------------------- */
.navbar-inline {
  padding-top: 1.25rem;
  padding-bottom: 0.75rem;
  /* border-bottom: 1px solid var(--color-ink-border); */
}

.navbar-inline::after {
  display: none;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-family-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  color: var(--color-text);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.wordmark .wordmark-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    var(--color-amber) 0%,
    var(--color-amber-dim) 100%
  );
  color: #1a1200;
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
}

.wordmark .wordmark-accent {
  color: var(--color-amber);
}

.btn-call-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-ink-surface);
  border: 1px solid var(--color-ink-border) !important;
  color: var(--color-text) !important;
  border-radius: 6px;
  padding: 0.5rem 1.15rem;
  height: 2.4rem;
  box-sizing: border-box;
  font-family: var(--font-family-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease;
}

.btn-call-nav:hover {
  border-color: var(--color-amber) !important;
  color: var(--color-amber-strong) !important;
  background: var(--color-ink-border);
}

.navbar-inline nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

@media (max-width: 430px) {
  .wordmark span:not(.wordmark-mark) {
    display: none;
  }

  .btn-call-nav {
    padding: 0.5rem 0.6rem;
    font-size: 0.78rem;
  }

  .navbar-inline details.dropdown > summary {
    padding: 0.5rem 0.8rem;
  }
}

.navbar-inline details.dropdown > summary {
  height: 2.4rem;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
}

/* ---- Glass panel (cam yansıması) ------------------------------------------ */
.glass-panel {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--glass-sheen);
  pointer-events: none;
}

/* ---- Section rhythm ------------------------------------------------------ */
.section-raised {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.section-paper {
  /* background: var(--color-paper); */
  /* color: var(--color-ink); */
}

.section-paper h1,
.section-paper h2,
.section-paper h3 {
  /* color: var(--color-ink); */
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-family-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 0.75rem;
}

.divider-amber {
  height: 3px;
  width: 4rem;
  border: none;
  background: linear-gradient(90deg, var(--color-amber), transparent);
  margin: 1.5rem 0;
}

/* ---- Hero görsel yer tutucu (fotoğraf gelene kadar) ---------------------- */
/* Fotoğraf gelene kadar kullanılacak yer tutucu görsel paneli */
.hero-visual-placeholder {
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--color-ink-border);
  background: linear-gradient(
    160deg,
    var(--color-ink-surface) 0%,
    var(--color-ink) 100%
  );
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(245, 166, 35, 0.14) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
}

.hero-visual-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(245, 166, 35, 0.22) 0%,
    transparent 55%
  );
}

.hero-visual-placeholder .wordmark-mark {
  position: relative;
  z-index: 1;
  width: 6rem;
  height: 6rem;
  font-size: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-amber);
}

/* ---- Amber Button -------------------------------------------------------------- */
.btn-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(
    135deg,
    var(--color-amber) 0%,
    var(--color-amber-dim) 100%
  );
  color: #1a1200 !important;
  border: none !important;
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-amber);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.3);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--color-text) !important;
  border: 1.5px solid var(--color-ink-border) !important;
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    color 0.18s ease;
}

.btn-outline-light:hover {
  border-color: var(--color-amber) !important;
  color: var(--color-text) !important;
}

/* ---- Jade Button --------------------------------------------------------------- */
.btn-jade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #168a55 0%, #0d6840 100%);
  color: var(--color-text) !important;
  border: none !important;
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(16, 122, 75, 0.24);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.btn-jade:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 122, 75, 0.38);
}

/* ---- Trust badges (hero altı ☑ satırı) ------------------------------------ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.trust-badges .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.trust-badges .trust-item svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-amber);
  flex-shrink: 0;
}

/* ---- Stats bar -------------------------------------------------------------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 2.5rem 1rem;
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  display: block;
  font-family: var(--font-family-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-amber);
  line-height: 1;
}

.stat-item .stat-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ---- Bento service cards ---------------------------------------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 576px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card-bento {
  position: relative;
  background: linear-gradient(
    160deg,
    var(--color-ink-surface) 0%,
    var(--color-ink-raised) 100%
  );
  border: 1px solid var(--color-ink-border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.card-bento::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0) 40%
  );
  pointer-events: none;
}

.card-bento > * {
  position: relative;
  z-index: 1;
}

.card-bento:hover {
  transform: translateY(-4px);
  border-color: var(--color-amber);
  box-shadow: var(--shadow-amber);
}

/* Fotoğraf kartın en üstünde tam genişlikte durur. Pico'nun `img { max-width:
   100% }` kuralı negatif margin ile taşırılan bu genişliği kırptığı için
   `max-width: none` ile ezilir. */
.card-bento .card-photo {
  display: block;
  width: calc(100% + 3rem);
  max-width: none;
  margin: -1.75rem -1.5rem 1.25rem -1.5rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  filter: grayscale(15%) contrast(1.05);
}

.card-bento .icon-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--color-amber);
  margin-bottom: 0.5rem;
}

.card-bento .card-photo + .icon-amber {
  position: relative;
  z-index: 1;
  margin-top: -2.5rem;
  background: var(--color-amber);
  color: #1a1200;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.card-bento .icon-amber svg {
  width: 1.6rem;
  height: 1.6rem;
}

.card-bento h3 {
  font-size: 1.05rem;
  margin: 0;
}

.card-bento p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.card-bento footer {
  margin-top: auto;
  padding-top: 0.75rem;
}

.card-bento footer a {
  color: var(--color-amber) !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}

.card-bento footer a:hover {
  color: var(--color-amber-strong) !important;
}

/* ---- Region / mahalle pill list --------------------------------------------- */
.region-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  /* padding: 0; */
  margin: 0;
}

.region-pills li {
  margin: 0;
  list-style-type: none;
}

.region-pills li::marker {
  content: "";
  display: none;
}

.region-pills a,
.region-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--color-ink-border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease;
}

.region-pills a:hover {
  border-color: var(--color-amber);
  color: var(--color-amber-strong);
  background: rgba(245, 166, 35, 0.08);
}

/* ---- Footer ------------------------------------------------------------------ */
footer.container.flex-113 {
  /* border-top: 1px solid var(--color-ink-border); */
}

footer.container.flex-113 a {
  color: var(--color-text-muted);
}

footer.container.flex-113 a:hover {
  color: var(--color-amber);
}

/* ---- Footer bottom bar -------------------------------------------------------- */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  text-align: center;
  border-top: 1px solid var(--color-ink-border);
  margin-top: 1rem;
}

.footer-bottom small {
  color: var(--color-text-muted);
}

.footer-bottom a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-amber);
}

.footer-bottom .footer-bottom-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom .footer-bottom-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(245, 166, 35, 0.35);
}

.footer-bottom .footer-bottom-links a:hover {
  text-decoration-color: var(--color-amber);
}

.footer-bottom .footer-bottom-links .separator {
  color: var(--color-ink-border);
  user-select: none;
}

.footer-bottom .footer-credit-link {
  background: linear-gradient(135deg, #6c5ce7, #00e5a0, #6c5ce7);
  background-size: 200% 200%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  text-decoration: none;
  transition: background-position 0.5s ease;
}

.footer-bottom .footer-credit-link:hover {
  background-position: 100% 50%;
}

.footer-bottom .footer-credit-link svg {
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  vertical-align: baseline;
  margin-left: 0.2em;
}

.footer-bottom .footer-credit-link svg path {
  stroke: url(#credit-gradient);
  stroke-width: 2;
  fill: none;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 1rem 2rem;
  }
}

/* ---- Chat bubbles: koyu tema uyumu ------------------------------------------- */
.chat-bubbles a.phone svg path[fill="##4caf50"] {
  fill: var(--color-amber) !important;
}

.chat-bubbles a {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* ---- Generic cards (article) koyu tema override ------------------------------ */
article {
  background: var(--color-ink-raised);
  border: 1px solid var(--color-ink-border);
}

/* ------------------------------------------------------------------------ */
/* Marka logosu ----------------------------------------------------------- */
/* ------------------------------------------------------------------------ */
/* logo-ozfatih-nakliyat.webp 320x120 (8:3) şeffaf zeminli; "NAKLİYAT" krom
   gri, "ÖZFATİH" amber — ikisi de koyu ink zemininde okunur. Yükseklikten
   ölçeklenir, genişlik oranla gelir; bu yüzden `width: auto` şart. */
.brand-logo {
  display: block;
  height: clamp(2.6rem, 1.85rem + 3.1vw, 3.9rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition:
    opacity 180ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wordmark:hover .brand-logo,
.wordmark:focus-visible .brand-logo {
  opacity: 0.86;
  transform: translateY(-1px);
}

.wordmark:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 4px;
  border-radius: 6px;
}

.brand-logo-footer {
  height: clamp(3rem, 2.2rem + 3.4vw, 4.4rem);
}

.btn-call-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  color: var(--color-amber);
}

/* Dar telefonlarda logo + telefon butonu + MENÜ aynı satıra sığmıyor:
   logo öncelikli kalır, telefon butonu ikona iner. */
@media (max-width: 460px) {
  .brand-logo {
    height: 2.5rem;
  }

  .btn-call-nav .btn-call-label {
    display: none;
  }

  .btn-call-nav {
    padding: 0.5rem 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo {
    transition: none;
  }

  .wordmark:hover .brand-logo,
  .wordmark:focus-visible .brand-logo {
    transform: none;
  }
}

/* ------------------------------------------------------------------------ */
/* Banner şeridi (banner.webp 1920x450) ----------------------------------- */
/* ------------------------------------------------------------------------ */
/* Görselin kendi sarı-siyah şerit kenarlığı var; üstüne çerçeve eklenmez.
   Mobilde 1920px genişlik tek karede okunmaz, o yüzden orta bandı kırpılır. */
.banner-strip {
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 450;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .banner-strip {
    aspect-ratio: 16 / 9;
    object-position: 62% center;
  }
}

/* ------------------------------------------------------------------------ */
/* Filo vitrini (trucks / ozfatih-filo-*.webp) ---------------------------- */
/* ------------------------------------------------------------------------ */
/* Fotoğrafın kendi zemini koyu radyal gradyan olduğu için kart/çerçeve
   kullanılmaz: maske ile kenarları sayfa zeminine eritilir, araçlar sayfanın
   üzerinde duruyormuş gibi görünür. */
.fleet-showcase {
  position: relative;
  overflow: hidden;
}

.fleet-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 55%,
    rgba(245, 166, 35, 0.13) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.fleet-grid {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 992px) {
  .fleet-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.fleet-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  /* Fotoğrafın stüdyo zemini sayfadan açık gri; kısa bir fade rectangle olarak
     okunuyor. Geçiş %35'ten %98'e yayılarak kenarlar ink zeminine eritilir. */
  -webkit-mask-image: radial-gradient(
    ellipse 86% 92% at 50% 50%,
    #000 35%,
    rgba(0, 0, 0, 0.5) 76%,
    transparent 98%
  );
  mask-image: radial-gradient(
    ellipse 86% 92% at 50% 50%,
    #000 35%,
    rgba(0, 0, 0, 0.5) 76%,
    transparent 98%
  );
}

.fleet-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.fleet-list li {
  display: grid;
  gap: 0.2rem 1.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--color-ink-border);
  line-height: 1.5;
}

/* Etiket sütunu sabit genişlikte olmazsa açıklamalar satır satır kayar. */
@media (min-width: 480px) {
  .fleet-list li {
    grid-template-columns: 11.5rem minmax(0, 1fr);
    align-items: baseline;
  }
}

.fleet-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fleet-list b {
  font-family: var(--font-family-display);
  font-weight: 700;
  color: var(--color-amber);
}

.fleet-list span {
  color: var(--color-text-muted);
}
