:root {
  --bg: #0f172a;
  --bg-soft: #f6f8fb;
  --panel: #ffffff;
  --panel-dark: #111827;
  --text: #172033;
  --muted: #67748a;
  --line: #e5eaf1;
  --brand: #c51f27;
  --brand-2: #ff4d2d;
  --brand-dark: #8e121b;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(15, 23, 42, .14);
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 90;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.nav-wrap {
  min-height: 86px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 90px; height: 60px; object-fit: contain;
  border-radius: 14px; background: #fff;
}
.brand-text strong { display: block; font-size: 1rem; letter-spacing: .02em; }
.brand-text span { display: block; font-size: .84rem; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 700; color: #334155; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -8px;
  width: 0; height: 2px; background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transition: .25s ease;
}
.nav a:hover::after { width: 100%; }
.nav-toggle {
  display: none; border: 0; background: #f1f5f9; color: #0f172a;
  padding: 10px 12px; border-radius: 12px; font-size: 1.15rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(rgba(8, 16, 32, .78), rgba(8, 16, 32, .84)),
    url('assets/fleet-2.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 0 110px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,77,45,.24), transparent 25%),
    radial-gradient(circle at right center, rgba(197,31,39,.22), transparent 26%);
}
.hero-overlay {
  position: absolute; inset: auto -8% -180px auto; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 64%);
  filter: blur(10px);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center;
}
.eyebrow, .section-tag {
  display: inline-flex; align-items: center;
  padding: 7px 14px; border-radius: 999px;
  font-size: .82rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
}
.eyebrow { background: rgba(255,255,255,.12); color: #ffe0da; }
.section-tag { background: #ffe8e7; color: var(--brand-dark); }
.section-tag.light { background: rgba(255,255,255,.12); color: #ffd8d2; }

.hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 1.05;
  max-width: 760px;
}
.lead {
  max-width: 760px; font-size: 1.06rem;
  color: rgba(255,255,255,.84);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 22px; border-radius: 14px; border: 1px solid transparent;
  font-weight: 800; transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 45px rgba(197, 31, 39, .28);
}
.btn-secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.btn.full { width: 100%; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.hero-badges span {
  padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-size: .9rem; color: rgba(255,255,255,.9);
}
.hero-glass {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.mini-title {
  margin: 0 0 14px; font-weight: 800; text-transform: uppercase;
  font-size: .82rem; letter-spacing: .05em; color: #ffd8d2;
}
.mini-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.mini-grid div {
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 16px;
}
.mini-grid strong { display: block; margin-bottom: 6px; }
.mini-grid span { color: rgba(255,255,255,.84); font-size: .92rem; }

.floating-strip {
  margin-top: -40px;
  position: relative; z-index: 4;
}
.strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.strip-grid article {
  background: #fff;
  border: 1px solid rgba(15,23,42,.05);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.strip-grid strong { display: block; font-size: 1.05rem; margin-bottom: 6px; }
.strip-grid span { color: var(--muted); font-size: .94rem; }

.section { padding: 92px 0; }
.alt { background: var(--bg-soft); }
.section h2 {
  margin: 14px 0 18px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.14;
}
.section-head {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px;
  align-items: end; margin-bottom: 36px;
}
.section-head p:last-child { color: var(--muted); }
.about-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 38px; align-items: center;
}
.about-copy p { margin-top: 0; }
.bullet-points {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 24px;
}
.bullet-points div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}
.about-visual {
  position: relative;
}
.about-visual > img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fafafa, #f2f4f7);
}
.about-card {
  position: absolute; right: -10px; bottom: -22px;
  width: min(360px, 92%);
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,.06);
}
.check-list {
  padding-left: 18px; margin: 14px 0 0;
}
.check-list li { margin-bottom: 8px; }

.service-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: .2s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card.featured {
  background: linear-gradient(135deg, #151d2f, #202d47);
  color: #fff;
  border-color: transparent;
}
.service-card.featured p,
.service-card.featured li { color: rgba(255,255,255,.84); }
.service-icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-weight: 900; margin-bottom: 18px;
}
.service-card h3 { margin: 0 0 12px; }
.service-card p { color: var(--muted); }
.service-card ul { margin: 14px 0 0; padding-left: 18px; }

.fleet-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(248,250,252,.96)),
    radial-gradient(circle at right top, rgba(197,31,39,.06), transparent 22%);
}
.fleet-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px;
}
.fleet-grid figure {
  margin: 0; overflow: hidden; border-radius: 28px;
  box-shadow: var(--shadow);
}
.fleet-grid img {
  width: 100%; height: 100%; object-fit: cover;
}
.fleet-large { min-height: 100%; }
.fleet-stack { display: grid; grid-template-rows: 280px auto; gap: 22px; }
.fleet-text-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.dark-list li { margin-bottom: 10px; }

.dark-band {
  color: #fff;
  background:
    linear-gradient(rgba(12, 18, 31, .96), rgba(12, 18, 31, .96)),
    url('assets/service-bus.webp');
  background-position: center;
  background-size: cover;
}
.vision-grid {
  display: grid; grid-template-columns: 1fr .9fr; gap: 34px; align-items: center;
}
.vision-grid p { color: rgba(255,255,255,.82); }
.vision-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.glass-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}
.glass-card strong {
  display: block; font-size: 1.1rem; margin-bottom: 6px;
}
.glass-card span { color: rgba(255,255,255,.82); }

.cta-section { background: var(--bg-soft); }
.cta-box {
  border-radius: 32px;
  padding: 34px;
  background: linear-gradient(135deg, #fff, #fff5f4);
  border: 1px solid #ffe1dc;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.cta-box h2 { margin: 12px 0; max-width: 800px; }
.cta-box p { margin: 0; color: var(--muted); }

.contact-section {
  background:
    linear-gradient(180deg, #fff, #fbfcfe);
}
.contact-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 26px;
}
.contact-card, .contact-form {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.contact-list {
  display: grid; gap: 14px; margin-top: 24px;
}
.contact-list > * {
  display: block;
  background: #f8fafc;
  border: 1px solid #e8edf4;
  border-radius: 18px;
  padding: 16px 18px;
}
.contact-list strong { display: block; margin-bottom: 4px; }
.contact-list span { color: var(--muted); }
.contact-note {
  margin-top: 20px;
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(135deg, #1b2436, #101827);
  color: #fff;
}
.contact-note p { margin-bottom: 0; color: rgba(255,255,255,.82); }

.contact-map-card {
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #fff;
  min-height: 360px;
}
.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.form-grid label {
  display: block; margin-bottom: 8px; font-weight: 700;
}
.form-grid input, .form-grid textarea {
  width: 100%; border: 1px solid #dbe4ee; border-radius: 14px;
  padding: 14px 15px; font: inherit; outline: none; transition: .2s ease;
  background: #fff;
}
.form-grid input:focus, .form-grid textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(197,31,39,.10);
}
.full-span { grid-column: 1 / -1; }
.form-help {
  margin: 14px 0 0; color: var(--muted); font-size: .92rem;
}
.form-help code {
  background: #f1f5f9; padding: 3px 8px; border-radius: 8px;
}

/* Kurumsal footer */
.site-footer {
  background: #303244;
  color: rgba(255,255,255,.76);
}
.footer-main {
  background: #2f3145;
  padding: 54px 0 44px;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
}
.footer-col h4 {
  margin: 0 0 16px;
  color: rgba(255,255,255,.58);
  font-size: .86rem;
  letter-spacing: .02em;
  font-weight: 900;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  margin-bottom: 11px;
  line-height: 1.45;
  transition: .2s ease;
}
.footer-col a:hover {
  color: #fff;
  transform: translateX(2px);
}
.footer-social a i {
  width: 20px;
  color: #fff;
}
.footer-bottom-area {
  background: #424457;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 26px 0;
}
.footer-bottom-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-contact-box {
  display: flex;
  align-items: center;
  gap: 18px;
}
.phone-panel {
  min-width: 246px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 6px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.phone-panel i {
  font-size: 1.45rem;
  color: rgba(255,255,255,.62);
}
.phone-panel a {
  display: block;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  line-height: 1.55;
}
.footer-address p,
.footer-address a {
  display: block;
  margin: 0;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  line-height: 1.45;
}
.footer-address a:hover { color: #fff; }
.footer-final-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,.56);
  white-space: nowrap;
}
.footer-final-brand img {
  width: 136px;
  max-height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.18));
}

@media (max-width: 1024px) {
  .hero-grid,
  .section-head,
  .about-grid,
  .fleet-grid,
  .vision-grid,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .about-card { position: static; width: 100%; margin-top: 18px; }
  .fleet-stack { grid-template-rows: 240px auto; }
}
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 84px; left: 16px; right: 16px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 20px; box-shadow: var(--shadow);
    padding: 16px; display: none; flex-direction: column; align-items: flex-start; gap: 14px;
  }
  .nav.show { display: flex; }
  .hero { padding: 98px 0 90px; }
  .mini-grid,
  .bullet-points,
  .vision-cards,
  .form-grid,
  .service-grid,
  .strip-grid { grid-template-columns: 1fr; }
  .brand-logo { width: 74px; height: 52px; }
  .brand-text span { display: none; }
  .cta-box { padding: 26px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}

/* Güncel kurumsal dokunuşlar */
.nav-wrap { position: relative; padding-top: 24px; }
.social-top {
  position: absolute;
  top: 8px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}
.social-top a {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #334155;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 6px 18px rgba(15,23,42,.08);
  transition: .2s ease;
}
.social-top a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  transform: translateY(-1px);
}

.hero {
  background:
    linear-gradient(90deg, rgba(8,16,32,.84) 0%, rgba(8,16,32,.58) 46%, rgba(8,16,32,.28) 100%),
    url('hero-fleet.png');
  background-size: cover;
  background-position: center;
}
.hero::before {
  background:
    radial-gradient(circle at top left, rgba(255,77,45,.18), transparent 24%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.18));
}

.fleet-vehicle { position: relative; }
.fleet-logo-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(180px, 38%);
  height: auto !important;
  object-fit: contain !important;
  z-index: 2;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.28));
  opacity: .96;
}
.fleet-stack .fleet-logo-overlay { width: min(140px, 42%); }

@media (max-width: 1024px) {
  .social-top { position: static; order: 3; margin-left: auto; }
  .nav-wrap { padding-top: 0; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .social-top { width: 100%; justify-content: flex-end; font-size: .74rem; }
  .nav { top: 116px; }
  .fleet-logo-overlay { width: min(140px, 44%); left: 14px; bottom: 14px; }
}

@media (max-width: 900px) {
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-grid,
  .footer-contact-box { flex-direction: column; align-items: flex-start; }
  .footer-final-brand { white-space: normal; }
}
@media (max-width: 560px) {
  .footer-columns { grid-template-columns: 1fr; }
  .phone-panel { width: 100%; min-width: 0; }
  .footer-final-brand { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Final logo yerleşimi */
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand-logo {
  width: 160px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  flex: 0 0 auto;
}
.brand-text strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: .02em;
  color: #172033;
}
.brand-text span {
  display: block;
  font-size: .9rem;
  color: var(--muted);
  margin-top: 2px;
}
.footer-final-brand img {
  width: 170px;
  max-height: 72px;
  object-fit: contain;
}
.fleet-logo-overlay {
  width: min(190px, 42%);
}
.fleet-stack .fleet-logo-overlay {
  width: min(155px, 46%);
}
@media (max-width: 768px) {
  .brand-logo { width: 124px; max-height: 58px; }
  .brand-text strong { font-size: .95rem; }
  .brand-text span { display: block; font-size: .75rem; }
}

@media (max-width: 560px) {
  .contact-map-card iframe { height: 320px; }
}

/* Spam koruma alanları */
.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.security-check input {
  max-width: 180px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: #111827;
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner p {
  margin: 5px 0 0;
  color: #d1d5db;
  font-size: 14px;
}

.cookie-banner button {
  border: 0;
  background: #b21f2d;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
