/* ===========================
   ÅEKER KARDEÅLER â€” STYLE
   =========================== */
:root {
  --navy: #0B1E3F;
  --navy-2: #0F2A55;
  --orange: #c32026;
  --orange-2: #a31a1f;
  --ink: #0A1426;
  --muted: #6B7A90;
  --bg: #F6F7FB;
  --white: #ffffff;
  --line: rgba(11,30,63,0.08);
  --shadow-lg: 0 30px 80px -20px rgba(11,30,63,0.25);
  --shadow-md: 0 10px 30px -10px rgba(11,30,63,0.18);
  --grad: linear-gradient(135deg, #c32026 0%, #ff4d4d 100%);
  --grad-navy: linear-gradient(135deg, #0B1E3F 0%, #1B3F7A 100%);
  --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1340px; margin: 0 auto; padding: 0 24px; }

h1,h2,h3,h4,h5 { font-family: 'Space Grotesk','Inter',sans-serif; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 .6em; }

/* === PRELOADER (NEW) === */
.preloader {
  position: fixed; inset: 0; background: white; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.logo-reveal-box {
  position: relative;
  width: 1120px; max-width: 90vw; /* Logonun genişliğine göre ayarlanabilir */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-base {
  width: 100%;
  height: auto;
  opacity: 0.1; /* Başta silüet olarak görünür */
}

.logo-top {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  clip-path: inset(0 100% 0 0); /* Başta tamamen gizli */
  animation: logoReveal 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

.truck-reveal {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  transform: translateX(-50%);
  z-index: 3;
  color: #c32026;
  font-size: clamp(100px, 28vh, 320px); display: flex; align-items: center;
  pointer-events: none;
  animation: truckMove 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards, truckExit 0.7s ease-in forwards;
  animation-delay: 0.2s, 1.8s;
  filter: drop-shadow(0 0 10px rgba(195,32,38,0.4));
}

@keyframes logoReveal {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}

@keyframes truckMove {
  0% { left: 0; }
  100% { left: 100%; }
}

@keyframes truckExit {
  0% { left: 100%; }
  100% { left: 150vw; }
}

/* === CURSOR === */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9000; transform: translateX(-50%); }
.cursor-dot { width: 6px; height: 6px; background: #c32026; border-radius: 50%; transition: transform .15s; }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid rgba(255,106,26,.6); border-radius: 50%; transition: transform .25s ease, width .25s, height .25s; }
.cursor-ring.hover { width: 64px; height: 64px; background: rgba(255,106,26,.08); border-color: #c32026; }
@media (max-width: 1024px) { .cursor-dot, .cursor-ring { display: none; } }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); /* Safari iOS uyumu */
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { 
  height: 55px; 
  width: auto; 
  transition: transform 0.3s; 
}

.brand span { display: flex; flex-direction: column; line-height: 1; font-family: 'Space Grotesk',sans-serif; }
.brand span b { color: #0b1e3f; font-weight: 800; font-size: 18px; letter-spacing: .04em; }
.brand span small { color: #c32026; font-size: 11px; letter-spacing: .3em; margin-top: 2px; font-weight: 600; }

.brand-light span b { color: white !important; }

.nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav a {
  font-size: 15px;
  font-weight: 700;
  color: #0b1e3f;
  padding: 8px 15px;
  transition: all 0.3s;
  position: relative;
}

.nav a:hover, .nav a.active {
  color: #c32026 !important;
}

/* Ortadan Ä°kiye AÃ§Ä±lan Ã‡izgi */
.nav a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #c32026;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav a:hover::after, .nav a.active::after {
  width: calc(100% - 36px);
}
.nav a:hover, .nav a.active { color: #c32026 !important; }

.nav .cta-phone {
  margin-left: 12px;
  background: rgba(11, 30, 63, 0.04);
  border: 1px solid rgba(11, 30, 63, 0.15);
  color: #0b1e3f !important;
  padding: 10px 22px; 
  font-weight: 700; 
  font-size: 14px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.cta-phone-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav .cta-phone::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background-color: #c32026;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.nav .cta-phone:hover {
  border-color: #c32026;
  box-shadow: 0 4px 15px rgba(255,106,26,0.3);
  color: white !important;
}


.nav .cta-phone:hover::before {
  transform: translateX(0);
}
.nav .cta-phone i {
  color: #c32026;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s;
}
.nav .cta-phone:hover i {
  color: white;
  transform: scale(1.2);
}

.hamburger { display: none; background: none; border: 0; width: 36px; height: 36px; flex-direction: column; gap: 5px; cursor: pointer; position: relative; z-index: 10001; }
.hamburger span { display: block; width: 26px; height: 2px; background: #0b1e3f; border-radius: 2px; transition: all .3s; transform-origin: center; }

/* Hamburger Animasyonu (Açıkken X olma) */
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: white; }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: white; }


@media (max-width: 980px) {
  .hamburger { display: flex; align-items: center; justify-content: center; }
  .nav {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px; height: 100vh;
    background: var(--navy); flex-direction: column; align-items: stretch;
    padding: 100px 24px 40px; gap: 4px; transition: right .35s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -20px 0 40px rgba(0,0,0,.2);
    z-index: 10000;
  }
  .nav.open { right: 0; }
  .nav a { color: white !important; padding: 16px; border-radius: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav a:last-child { border-bottom: none; }
  .nav a:hover { background: rgba(255,255,255,.06); }
  .nav .cta-phone { 
    margin: 20px 0 0; 
    justify-content: center; 
    display: flex; 
    background: rgba(195,32,38,0.15) !important;
    border: 1px solid rgba(195,32,38,0.3) !important;
    color: white !important; /* Mobilde numara görünür oldu */
  }
  .nav .cta-phone i { color: #c32026 !important; }
}

/* === HERO === */
.hero {
  position: relative; 
  min-height: 85vh; /* Masaüstünde biraz daha geniş, ferah bir görünüm */
  padding: 100px 0 80px;
  background: var(--navy); 
  color: white; 
  overflow: hidden; 
  isolation: isolate;
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  transition: min-height 0.4s ease;
}

/* Tablet Optimizasyonu */
@media (max-width: 1024px) {
  .hero { min-height: 70vh; padding: 80px 0; }
}

/* Mobil Optimizasyonu */
@media (max-width: 768px) {
  .hero { 
    min-height: 60vh; /* Mobilde videonun çok fazla uzayıp sağdan soldan aşırı kesilmesini önler */
    padding: 60px 0;
  }
}

.hero-bg-video {
  position: absolute; 
  inset: 0; 
  z-index: 0;
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  object-position: center; /* Videoyu her zaman merkezler */
  filter: brightness(0.55) saturate(1.1); /* Mobilde metinlerin daha iyi okunması için parlaklığı biraz daha kıstık */
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,106,26,.18), transparent 50%),
              linear-gradient(180deg, rgba(11,30,63,.4) 0%, rgba(11,30,63,.85) 100%);
  z-index: 1; opacity: 1;
}

/* === FLEET 3D CARDS === */
.fleet-3d-wrap { perspective: 1000px; }
.fleet-3d-card {
  position: relative; border-radius: 20px; overflow: hidden;
  transition: all 0.5s ease; cursor: pointer;
}
.truck-logo {
  position: absolute; top: 20px; left: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; color: rgba(255,255,255,0.2);
  font-size: 24px; letter-spacing: 2px;
  pointer-events: none;
}
.truck-logo.small { font-size: 18px; }

.hero-content { 
  position: relative; 
  z-index: 2; 
  flex: 1; 
  display: flex; 
  flex-direction: column; 
  padding-top: 80px; 
}
@media (max-width: 768px) {
  .hero-content { padding-top: 40px; } /* Mobilde daha yukarı aldık */
}
@media (min-width: 1200px) {
  .hero-content { transform: translateX(-220px); } 
}
.hero-content .container { flex: 1; display: flex; flex-direction: column; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  font-size: 13px; font-weight: 500; margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #38e08e; box-shadow: 0 0 12px #38e08e; animation: pulse 1.6s ease infinite; }
@keyframes pulse { 50% { opacity: .4; transform: scale(.8);} }

.hero-title {
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 800; margin: 0 0 25px; letter-spacing: -0.03em;
  opacity: 0; transform: translateY(30px); animation: rise .9s .4s forwards;
}
.hero-title em { font-style: normal; color: #c32026; }
.hero-title .gradient {
  background: linear-gradient(90deg, #c32026, #ff4d4d);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero-sub { max-width: 500px; font-size: 18px; line-height: 1.6; opacity: .85; margin: 0 0 36px; opacity: 0; animation: rise .9s .8s forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; opacity: 0; animation: rise .9s 1s forwards; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px; font-weight: 700; font-size: 15px;
  cursor: pointer; border: 0; transition: all .3s ease;
}
.btn-primary { background: #c32026; color: white; box-shadow: 0 16px 30px -10px rgba(195,32,38,.5); }
.btn-primary:hover { transform: translateY(-3px); background: var(--orange-2); box-shadow: 0 24px 40px -10px rgba(255,106,26,.6); }
.btn-ghost { background: rgba(255,255,255,.08); color: white; border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn-light { background: white; color: var(--navy); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -15px rgba(0,0,0,.3); }

/* === STATS BAR (FLOATING) === */
.stats-bar {
  position: relative;
  z-index: 100;
  margin-top: -65px; /* Overlap with hero */
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  background: rgba(11, 30, 63, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 35px 50px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
}
.stats-grid > div { 
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.stats-grid > div:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-grid > div > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.stats-grid i {
  font-size: 24px;
  color: #c32026;
  opacity: 1;
}
.stats-grid b { 
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 36px; 
  font-family: 'Space Grotesk',sans-serif; 
  font-weight: 800; 
  color: white; 
  line-height: 1; 
}
.stats-grid b span { font-size: inherit; font-weight: inherit; } /* Force counter to match */
.stats-grid span { 
  font-size: 11px; 
  opacity: 0.6; 
  color: white; 
  text-transform: uppercase; 
  letter-spacing: 0.12em; 
  font-weight: 700; 
  margin-top: 6px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stats-grid > div:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .stats-grid { 
    grid-template-columns: repeat(2, 1fr); 
    padding: 25px 15px; 
    gap: 20px; 
    margin: 0 15px; 
  }
  .stats-grid > div { 
    border-right: none !important; 
    border-bottom: none !important; 
    padding: 0 !important;
    flex-direction: column; 
    text-align: center;
    gap: 10px;
  }
  .stats-grid > div > div { align-items: center; }
  .stats-grid b { font-size: 26px; }
  .stats-grid i { font-size: 20px; }
  .stats-grid span { font-size: 9px; margin-top: 4px; }
  .stats-bar { margin-top: -45px; }
}

.truck-runner {
  position: absolute; bottom: 12%; right: -25%; width: 50%; max-width: 600px;
  z-index: 2; pointer-events: none;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
  animation: truck-roll-rev 15s ease-in-out infinite;
}
.truck-runner img { 
  width: 100%; 
  border-radius: 20px; 
  border: 4px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 50px rgba(0,0,0,0.3);
}
@keyframes truck-roll-rev {
  0% { transform: translateX(30%) scaleX(-1); opacity: 0; }
  10% { opacity: 1; }
  45% { transform: translateX(-65vw) scaleX(-1); }
  50% { transform: translateX(-75vw) scaleX(-1); opacity: 0; }
  51% { transform: translateX(40%) scaleX(-1); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateX(-40vw) scaleX(-1); opacity: 1; }
}
@media (max-width: 720px) { .truck-runner { width: 90%; bottom: 4%; } }

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; font-size: 11px; letter-spacing: 0.4em; color: rgba(255,255,255,0.5);
  display: flex; flex-direction: column; align-items: center; gap: 15px;
  text-transform: uppercase; font-weight: 500;
  transition: opacity 0.3s;
}
.scroll-indicator:hover { opacity: 1; color: white; }
.scroll-indicator span { width: 1px; height: 50px; background: linear-gradient(180deg, #c32026, transparent); animation: scroll 2s ease infinite; }
@keyframes scroll { 0% { height: 0; opacity: 0; } 50% { height: 50px; opacity: 1; } 100% { height: 50px; opacity: 0; transform: translateY(20px); } }

/* === PAGE HEADER (SUBPAGES) === */
.page-header {
  padding: 95px 0 15px;
  background: var(--grad-navy);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.page-header h1 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; margin: 0; line-height: 1; text-align: center; width: 100%; }
.page-header .breadcrumb { margin-top: 8px; font-size: 13px; opacity: 0.7; }
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-truck.jpg') center/cover;
  opacity: 0.15;
}

/* === MARQUEE === */
.marquee { background: var(--navy); color: white; padding: 18px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); }
.marquee-track { 
  display: flex; 
  gap: 50px; 
  white-space: nowrap; 
  animation: marquee_main 40s linear infinite; 
  -webkit-animation: marquee_main 40s linear infinite; /* Safari */
  font-weight: 700; 
  letter-spacing: .15em; 
  font-size: 14px; 
}
.marquee-track span { color: rgba(255,255,255,.85); }
.marquee-track span:nth-child(odd) { color: #c32026; }

@keyframes marquee_main { 
  from { transform: translateX(0); -webkit-transform: translateX(0); }
  to { transform: translateX(-50%); -webkit-transform: translateX(-50%); } 
}
@-webkit-keyframes marquee_main { 
  from { -webkit-transform: translateX(0); }
  to { -webkit-transform: translateX(-50%); } 
}

/* === SECTIONS === */
.section { padding: 80px 0; position: relative; }
.section-head { text-align: center; max-width: 900px; margin: 0 auto 20px; }
.eyebrow { display: inline-block; padding: 6px 14px; border-radius: 999px; background: rgba(255,106,26,.1); color: #c32026; font-weight: 700; font-size: 12px; letter-spacing: .25em; margin-bottom: 18px; }
.section-head h2 { font-size: clamp(34px, 4.5vw, 54px); font-weight: 800; }
.section-head h2 em { font-style: normal; color: #c32026; }
.section-head p { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 12px 0 0; }

/* === SERVICES === */
.services { background: #f8f9fa; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px)  { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative; height: 320px; border-radius: 20px;
  overflow: hidden; cursor: pointer;
  background-color: var(--navy);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transition: all .5s cubic-bezier(.2,.8,.2,1);
}
.svc-card::before {
  content:''; position: absolute; inset: 0;
  background: inherit; background-image: inherit;
  filter: grayscale(1) brightness(0.4);
  transition: all .6s ease;
  z-index: 1;
}
.svc-content {
  position: absolute; inset: 0; padding: 25px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: white; z-index: 2;
  background: linear-gradient(180deg, rgba(11,30,63,0) 30%, rgba(11,30,63,0.92) 100%);
  transition: all .4s;
}
.svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: #c32026; color: white;
  display: grid; place-items: center; font-size: 20px;
  margin-bottom: 12px; transform: translateY(0);
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 10px 20px rgba(255,106,26,0.3);
}
.svc-card h3 { font-size: 20px; margin-bottom: 5px; font-weight: 800; letter-spacing: -0.02em; transition: transform .4s; }
.svc-subtitle { display: block; font-size: 12px; font-weight: 600; color: #c32026; margin-bottom: 0; transition: all .4s; letter-spacing: 0.05em; text-transform: uppercase; }
.svc-card p { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.85); margin: 10px 0 15px; transform: translateY(20px); opacity: 0; max-height: 0; overflow: hidden; transition: all .4s ease; }
.svc-link { color: white; font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 8px; opacity: 0; transform: translateY(10px); transition: all .4s ease; }
.svc-link i { color: #c32026; }

.svc-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 40px 80px -20px rgba(11,30,63,0.4); }
.svc-card:hover::before { filter: grayscale(0) brightness(0.6); transform: scale(1.1); }
.svc-card:hover .svc-icon { transform: translateY(-10px) rotate(-8deg); background: white; color: #c32026; }
.svc-card:hover h3 { transform: translateY(-5px); }
.svc-card:hover .svc-subtitle { transform: translateY(-5px); opacity: 0.7; }
.svc-card:hover p { transform: translateY(0); opacity: 1; max-height: 100px; margin-top: 15px; }
.svc-card:hover .svc-link { transform: translateY(0); opacity: 1; }

/* === WHY === */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 1200px) { .why-grid { grid-template-columns: repeat(2,1fr); gap: 20px; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: repeat(2,1fr); gap: 12px; } }

.why-card {
  position: relative; aspect-ratio: 3/4.2; border-radius: 24px;
  overflow: hidden; cursor: pointer; background-color: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .6s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  isolation: isolate;
}
@media (max-width: 540px) {
  .why-card { border-radius: 16px; aspect-ratio: 3/4; }
}
.why-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .6s;
  z-index: -1; filter: brightness(0.6) grayscale(0.2);
}
.why-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,30,63,0) 0%, rgba(11,30,63,0.95) 100%);
  z-index: 0; pointer-events: none;
}
.why-inner {
  position: relative; padding: 40px 32px; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: white; z-index: 1; transition: all .4s;
}
@media (max-width: 540px) {
  .why-inner { padding: 20px 15px; }
}
.why-inner i { 
  font-size: 42px; color: #c32026; margin-bottom: 20px; 
  transition: all .5s cubic-bezier(.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 10px rgba(255,106,26,0.3));
}
@media (max-width: 540px) {
  .why-inner i { font-size: 28px; margin-bottom: 12px; }
}
.why-inner h4 { font-size: 26px; margin: 0 0 12px; font-weight: 800; letter-spacing: -0.02em; font-family: 'Space Grotesk', sans-serif; }
@media (max-width: 540px) {
  .why-inner h4 { font-size: 18px; margin-bottom: 6px; }
}
.why-inner p { font-size: 15px; line-height: 1.6; opacity: 0.7; margin: 0; transition: all .4s; }
@media (max-width: 540px) {
  .why-inner p { font-size: 12px; line-height: 1.4; }
}

.why-card:hover { 
  transform: translateY(-12px) scale(1.02); 
  border-color: rgba(255,106,26,0.3);
  box-shadow: 0 40px 80px -20px rgba(11,30,63,0.5); 
}
.why-card:hover .why-bg { transform: scale(1.1); filter: brightness(0.7) grayscale(0); }
.why-card:hover .why-inner { padding-bottom: 48px; }
.why-card:hover i { transform: translateY(-8px) scale(1.15) rotate(-5deg); filter: drop-shadow(0 0 20px #c32026); }
.why-card:hover p { opacity: 1; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 50px; } }
.about-media { position: relative; }
.about-media img { border-radius: 24px; box-shadow: var(--shadow-lg); width: 100%; }
.floating-badge {
  position: absolute; 
  background: white; 
  padding: 16px 24px; 
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
  display: flex; 
  align-items: center; 
  gap: 12px;
  z-index: 5;
  transition: all 0.3s ease;
  animation: float 4s ease-in-out infinite;
  
  /* Varsayılan pozisyon (Sol Alt) */
  bottom: 40px; 
  left: -30px; 
}
.floating-badge.alt { 
  /* Üst Sağ Pozisyon */
  top: 40px; 
  right: -30px; 
  bottom: auto; 
  left: auto; 
  animation-delay: 2s; 
}
.floating-badge b { 
  font-family: 'Space Grotesk', sans-serif; 
  font-size: 28px; 
  line-height: 1;
  color: #0b1e3f; 
}
.floating-badge.alt b { color: #c32026; }
.floating-badge span { 
  font-size: 12px; 
  line-height: 1.2; 
  color: #666; 
  font-weight: 700; 
  text-transform: uppercase; 
}

@keyframes float { 50% { transform: translateY(-10px); } }

/* Mobil Küçültme */
@media (max-width: 768px) {
  .floating-badge { 
    padding: 8px 12px; 
    border-radius: 12px;
    gap: 8px;
    bottom: 20px;
    left: -10px;
  }
  .floating-badge.alt {
    top: 20px;
    right: -10px;
  }
  .floating-badge b { font-size: 18px; }
  .floating-badge span { font-size: 9px; }
}

.about-text h2 { font-size: clamp(30px, 4vw, 48px); }
.about-text > p { color: var(--muted); line-height: 1.8; font-size: 16px; margin: 0 0 32px; }
.mv-cards { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
  margin-bottom: 32px; 
}

.mv-card {
  background: #f8f9fa;
  padding: 22px;
  border-radius: 20px;
  border-left: 5px solid #c32026;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.mv-card i {
  font-size: 20px;
  color: #c32026;
  margin-bottom: 10px;
  display: block;
}

.mv-card h4 {
  margin-bottom: 8px;
  color: #0b1e3f;
  font-size: 18px;
  font-weight: 800;
}

.mv-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Renk Varyasyonları */
.mv-card.mission { border-left-color: #c32026; }
.mv-card.vision { border-left-color: #0b1e3f; }
.mv-card.docs { border-left-color: #ffb300; }
.mv-card.vision i { color: #0b1e3f; }
.mv-card.docs i { color: #ffb300; }

@media (max-width: 992px) {
  .mv-cards { grid-template-columns: 1fr; gap: 15px; }
  .mv-card { padding: 16px 20px; border-radius: 16px; border-left-width: 4px; }
  .mv-card i { font-size: 18px; margin-bottom: 6px; }
  .mv-card h4 { font-size: 16px; margin-bottom: 4px; }
  .mv-card p { font-size: 13px; line-height: 1.5; }
}

/* === ROUTES === */
.routes { background: var(--navy); color: white; }
.routes .eyebrow { background: rgba(255,106,26,.18); }
.routes-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 980px) { .routes-wrap { grid-template-columns: 1fr; } }
.routes-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.route-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.route-list li { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; font-weight: 500; transition: all .3s; }
.route-list li:hover { background: rgba(255,106,26,.12); border-color: #c32026; transform: translateX(6px); }
.route-list i { color: #c32026; }

/* === BENTO GRID === */
.bento-section {
  padding: 60px 0 70px;
  background: #f4f5f7;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Base card */
.bento-card {
  border-radius: 24px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s;
  animation: bentoIn 0.6s cubic-bezier(0.2,0.8,0.2,1) both;
}
.bento-card:nth-child(1) { animation-delay: 0.05s; }
.bento-card:nth-child(2) { animation-delay: 0.12s; }
.bento-card:nth-child(3) { animation-delay: 0.18s; }
.bento-card:nth-child(4) { animation-delay: 0.24s; }
.bento-card:nth-child(5) { animation-delay: 0.30s; }
.bento-card:nth-child(6) { animation-delay: 0.36s; }
@keyframes bentoIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(11,30,63,0.13);
}

/* Color variants */
.bento-navy {
  background: var(--navy);
  color: white;
}
.bento-orange {
  background: #c32026;
  color: white;
}
.bento-light {
  background: white;
  color: var(--navy);
  box-shadow: 0 2px 16px rgba(11,30,63,0.06);
}

/* Layout: big card spans 2 rows */
.bento-big {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.bento-route {
  grid-column: span 2;
}
.bento-small {}

/* Typography */
.bento-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 8px;
}
.bento-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: white;
  letter-spacing: -0.03em;
}
.bento-number sup { font-size: 28px; vertical-align: super; }
.bento-number.bento-dark { color: var(--navy); }
.bento-sub { font-size: 14px; font-weight: 600; opacity: 0.7; margin-top: 6px; }
.bento-sub.bento-dark-sub { color: var(--navy); opacity: 0.6; }

/* Year progress bar */
.bento-years-bar {
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  margin-top: 20px;
  overflow: hidden;
}
.bento-year-fill {
  height: 100%;
  width: 0;
  background: #c32026;
  border-radius: 99px;
  animation: fillYears 2s 0.5s cubic-bezier(0.2,0.8,0.2,1) forwards;
}
@keyframes fillYears { to { width: 100%; } }

/* Trend badge */
.bento-trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.18);
  border-radius: 99px;
  padding: 5px 12px;
  margin-top: 12px;
  width: fit-content;
}
.bento-trend i { font-size: 11px; }

/* Clock ring (24 saat) */
.bento-clock-ring {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 60px; height: 60px;
}
.bento-clock-ring svg { width: 100%; height: 100%; }
.bento-clock-ring i {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  font-size: 18px; color: #c32026;
}

/* Route card */
.bento-route-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.bento-city { display: flex; align-items: center; gap: 8px; }
.bento-city span { font-size: 15px; font-weight: 700; color: white; }
.cta-phone {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px !important;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: white !important;
}
.site-header.scrolled .cta-phone {
  background: #f0f2f5;
  border-color: #e0e4e8;
  color: #0b1e3f !important;
}
.cta-phone i {
  color: #c32026;
  font-size: 16px;
}
.bento-city-dot {
  width: 10px; height: 10px;
  background: #c32026;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,106,26,0.3);
  animation: cityPulse 1.8s ease-in-out infinite;
}
@keyframes cityPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,106,26,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(255,106,26,0.1); }
}
.bento-route-track {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  position: relative;
  overflow: visible;
}
.bento-route-truck {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  transform: translateY(-50%);
  color: #c32026;
  font-size: 18px;
  animation: truckRide 4s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255,106,26,0.5));
}
@keyframes truckRide {
  0%   { left: 0; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { left: calc(100% - 20px); opacity: 0; }
}

/* City pins */
.bento-pins {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}
.bento-pins i {
  font-size: 20px;
  color: #c32026;
  animation: pinBounce 1.5s ease-in-out infinite;
}
.bento-pins i:nth-child(2) { animation-delay: 0.2s; }
.bento-pins i:nth-child(3) { animation-delay: 0.4s; }
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Satisfaction ring */
.bento-satisfaction svg { width: 90px; height: 90px; display: block; margin: 10px auto 6px; }

/* Background decorative icon */
.bento-bg-icon {
  position: absolute;
  bottom: -10px; right: -10px;
  font-size: 90px;
  opacity: 0.06;
  pointer-events: none;
}

@media (max-width: 992px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-big { grid-row: span 1; min-height: auto; }
  .bento-route { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-route { grid-column: span 1; }
}

/* === CTA BAND === */
.cta-band { background: var(--grad); color: white; padding: 12px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 15px; flex-wrap: wrap; }
.cta-inner h3 { font-size: clamp(24px, 3vw, 34px); margin: 0 0 6px; }
.cta-inner h3 em { font-style: normal; background: var(--navy); padding: 0 12px; border-radius: 8px; }
.cta-inner p { margin: 0; opacity: .9; }

/* === CONTACT === */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 50px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: white; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow-md); transition: all .35s; border-top: 4px solid transparent; }
.contact-card:hover { transform: translateY(-6px); border-top-color: #c32026; box-shadow: var(--shadow-lg); }
.contact-card > i { color: #c32026; font-size: 28px; margin-bottom: 14px; }
.contact-card h4 { font-size: 20px; margin-bottom: 12px; }
.contact-card p { color: var(--muted); line-height: 1.6; margin: 0 0 18px; font-size: 15px; }
.contact-card a { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--navy); font-weight: 600; font-size: 15px; }
.contact-card a:hover { color: #c32026; }
.contact-card .map-link { margin-top: 12px; color: #c32026; }

.contact-form { background: white; border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-md); max-width: 880px; margin: 0 auto; }
.contact-form h3 { font-size: 26px; margin: 0 0 24px; text-align: center; }
.contact-form .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 600px) { .contact-form .grid-2 { grid-template-columns: 1fr; } }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--line);
  border-radius: 12px; font-family: inherit; font-size: 15px; background: var(--bg);
  transition: all .25s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #c32026; background: white; box-shadow: 0 0 0 4px rgba(255,106,26,.1); }
.contact-form textarea { resize: vertical; margin-bottom: 18px; }
.contact-form button { display: block; margin: 0 auto; }

/* === LOGO CAROUSEL (REFERANSLAR) === */
.referanslar-section {
  padding: 50px 0;
  background: #fdfdfd;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.referans-track {
  display: flex;
  gap: 70px;
  width: max-content;
  animation: scrollLogos 45s linear infinite;
  align-items: center;
  padding: 10px 0;
}
.referans-track:hover {
  animation-play-state: paused;
}
.referans-item {
  width: 130px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: grayscale(1) opacity(0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.referans-item:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.15) translateY(-5px);
}
.referans-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.4s;
}
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .referanslar-section { padding: 40px 0; }
  .referans-track { gap: 40px; animation-duration: 30s; }
  .referans-item { width: 90px; height: 40px; }
}


/* === FOOTER === */
.site-footer { 
  background: whitesmoke; 
  color: #555; 
  padding: 20px 0 0; 
  position: relative;
  border-top: 1px solid #eee;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 20px;
  margin-bottom: 25px;
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h5 {
  color: #0b1e3f;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-about {
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 25px;
  color: #666;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  background: #e8e8e8;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-socials a:hover {
  background: #0b1e3f;
  color: white;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 14px;
}
.footer-links a {
  font-size: 14px;
  transition: all 0.3s;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i {
  font-size: 11px;
  color: #c32026; /* GÃ¶rseldeki KÄ±rmÄ±zÄ± */
}
.footer-links a:hover {
  color: #0b1e3f;
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.footer-contact-item i {
  margin-top: 4px;
  color: #c32026; /* GÃ¶rseldeki KÄ±rmÄ±zÄ± */
  font-size: 17px;
}
.footer-contact-item b {
  display: block;
  font-size: 14px;
  color: #0b1e3f;
  font-weight: 700;
  margin-bottom: 2px;
}
.footer-contact-item p {
  margin: 0;
  font-size: 13.5px;
  color: #666;
}

.sub-footer {
  padding: 10px 0;
  background: #e9e9e9;
  border-top: 1px solid #ddd;
}
.sub-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.sub-footer p {
  margin: 0;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}
.designer-credit {
  font-size: 13px;
  color: #444;
  font-weight: 500;
}
.designer-credit a {
  color: inherit;
}
.designer-credit span {
  color: #c32026; /* Serdar Åeker KÄ±rmÄ±zÄ± */
  font-weight: 700;
}

@media (max-width: 768px) {
  .sub-footer-inner { justify-content: center; text-align: center; }
}

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 1000;
  width: 55px; height: 55px; border-radius: 50%;
  background: #25D366; color: white; display: grid; place-items: center;
  font-size: 28px; box-shadow: 0 10px 25px rgba(37,211,102,0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wa-float:hover { transform: scale(1.1) rotate(10deg); box-shadow: 0 15px 35px rgba(37,211,102,0.5); }

/* === INTERACTIVE MAP === */
.routes-grid { 
  display: grid; 
  grid-template-columns: 1.6fr 0.9fr; 
  gap: 30px; 
  align-items: start; 
}
@media (max-width: 1024px) {
  .routes-grid { grid-template-columns: 1fr; }
}

.route-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
  max-height: 480px; overflow-y: auto;
  padding-right: 5px;
}
.route-list::-webkit-scrollbar { width: 4px; }
.route-list::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 10px; }

.interactive-map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #081223;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}
.map-svg { width: 100%; height: 100%; opacity: 0.3; filter: grayscale(1) brightness(0.5); }
.map-nodes-layer { position: absolute; inset: 0; z-index: 2; }
.map-node {
  position: absolute; width: 12px; height: 12px;
  background: white; border-radius: 50%;
  box-shadow: 0 0 15px white, 0 0 30px #c32026;
  transform: translateX(-50%);
  z-index: 5; transition: all 0.4s;
}
.map-node::before {
  content: ''; position: absolute; inset: -10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; animation: pulse-node 2s infinite;
}
@keyframes pulse-node { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2.5); opacity: 0; } }
.map-node span {
  position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-size: 11px; font-weight: 700; color: white;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(4px);
}
.map-node.active span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.map-node.active { background: #c32026; transform: translate(-50%, -50%) scale(1.3); }

.map-paths-layer { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.map-path {
  fill: none; stroke: #c32026; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 8px #c32026);
  opacity: 0; transition: opacity 0.3s;
}
.map-path.active { opacity: 0.6; }

.map-truck {
  position: absolute; width: 32px; height: auto;
  z-index: 10; pointer-events: none; opacity: 0;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* === ENHANCED CARDS === */
.svc-card, .contact-card {
  border: 1px solid rgba(11,30,63,0.05);
  backdrop-filter: blur(5px);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.svc-card:hover { border-color: rgba(255,106,26,0.3); background: rgba(255,255,255,0.8); }

.route-list li {
  cursor: pointer; position: relative;
  overflow: hidden; border: 1px solid rgba(11,30,63,0.05) !important;
}
.route-list li.active {
  background: var(--grad) !important; color: white !important;
  border-color: transparent !important; transform: translateX(10px);
}
.route-list li.active i { color: white !important; }

/* === PROCESS SECTION === */
.process-section {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
  z-index: 1;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.step-icon-wrap {
  width: 90px; height: 90px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 80px; color: #c32026;
  box-shadow: 0 15px 35px rgba(11,30,63,0.1);
  position: relative; z-index: 2;
  transition: all .4s ease;
}
.step-num {
  position: absolute; top: -5px; right: -5px;
  width: 28px; height: 28px; background: var(--navy);
  color: white; border-radius: 50%; font-size: 14px;
  font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.process-step h4 { font-size: 20px; margin-bottom: 12px; color: var(--navy); font-weight: 800; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.process-step:not(:last-child)::after {
  content: '\f061'; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; top: 45px; right: -25px;
  font-size: 20px; color: rgba(11,30,63,0.1);
  transform: translateY(-50%);
}

.process-step:hover .step-icon-wrap {
  transform: translateY(-10px);
  background: var(--navy); color: white;
}

/* === SERVICES PAGE EXPANSION === */
.features-band {
  padding: 60px 0 30px;
  background: var(--navy);
  color: white;
}
.features-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feat-item i {
  font-size: 30px;
  color: #c32026;
}
.feat-item h5 { font-size: 16px; margin: 0; font-weight: 700; }
.feat-item p { font-size: 13px; opacity: 0.7; margin: 2px 0 0; }

.sectors {
  padding: 40px 0 40px;
  background: white;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.sector-card {
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 20px;
  text-align: center;
  transition: all .4s;
  border: 1px solid transparent;
}
.sector-card i {
  font-size: 80px;
  color: var(--navy);
  margin-bottom: 15px;
  transition: all .4s;
}
.sector-card span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.sector-card:hover {
  background: white;
  border-color: #c32026;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11,30,63,0.1);
}
.sector-card:hover i { color: #c32026; transform: scale(1.1); }

/* === CONTACT CARDS ANIMATION === */
.contact-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(11,30,63,0.05);
  transition: all .4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(11,30,63,0.03);
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(11,30,63,0.1);
  border-color: #c32026;
}
.contact-card i.fa-location-dot {
  font-size: 80px;
  color: #c32026;
  margin-bottom: 20px;
  display: inline-block;
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.contact-grid .reveal:nth-child(1) { transition-delay: 0.1s; }
.contact-grid .reveal:nth-child(2) { transition-delay: 0.25s; }
.contact-grid .reveal:nth-child(3) { transition-delay: 0.4s; }

.faq-section {
  padding: 40px 0 100px;
  background: #fdfdfd;
}
.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}
.faq-item {
  background: white;
  border: 1px solid rgba(11,30,63,0.06);
  border-radius: 16px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all .3s;
}
.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}
.faq-question i {
  font-size: 14px;
  transition: transform .3s;
}
.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  opacity: 0;
  visibility: hidden;
}
.faq-item input {
  display: none;
}
.faq-item input:checked ~ .faq-answer {
  padding-bottom: 24px;
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}
.faq-item input:checked ~ .faq-question {
  color: #c32026;
}
.faq-item input:checked ~ .faq-question i {
  transform: rotate(180deg);
}
.faq-item:has(input:checked) {
  border-color: #c32026;
  box-shadow: 0 15px 30px rgba(11,30,63,0.05);
}

/* === FLEET SECTION === */
.fleet {
  padding: 40px 0 40px;
  background: white;
}
/* === 3D FLEET POP-OUT === */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}
.fleet-3d-wrap {
  width: 100%;
  height: 400px;
  perspective: 2000px;
  position: relative;
}
.fleet-3d-card {
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}
.fleet-3d-card .wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,106,26,0.1);
}
.fleet-3d-card .wrapper::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(11,30,63,0.8) 100%);
  opacity: 1; transition: 0.5s;
}
.fleet-3d-card .cover-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.fleet-3d-card .character {
  width: 110%;
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) translateZ(0);
  z-index: 2;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.fleet-3d-card .card-info {
  position: absolute;
  bottom: 30px; left: 30px; right: 30px;
  z-index: 3;
  color: white;
  transition: 0.5s;
}
.fleet-3d-card .card-info h4 { color: white; margin-bottom: 5px; font-size: 24px; }
.fleet-3d-card .card-info p { color: rgba(255,255,255,0.8); font-size: 13px; margin: 0; }

.fleet-3d-wrap:hover .fleet-3d-card {
  transform: rotateX(20deg) translateY(-10px);
  box-shadow: 0 50px 100px rgba(11,30,63,0.3);
}
.fleet-3d-wrap:hover .character {
  opacity: 1;
  transform: translateX(-50%) translateY(-25%) translateZ(100px) scale(1.2);
}
.fleet-3d-wrap:hover .wrapper::after { opacity: 0.5; }
.fleet-3d-wrap:hover .card-info { transform: translateZ(50px) translateY(-10px); }

@media (max-width: 992px) {
  .fleet-grid { grid-template-columns: 1fr; max-width: 400px; margin: 60px auto 0; }
  .fleet-3d-wrap { height: 350px; }
}

/* === NEW FLEET CARDS (RELIABLE) === */
.fleet-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.fleet-card-new {
  position: relative;
  border-radius: 24px;
  padding: 40px 32px 36px;
  color: white;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 340px;
}
.fleet-card-tir     { background: linear-gradient(145deg, #0b1e3f 0%, #1a3a6e 100%); box-shadow: 0 20px 50px rgba(11,30,63,0.25); }
.fleet-card-kamyon  { background: linear-gradient(145deg, #111827 0%, #1f2d4e 100%); box-shadow: 0 20px 50px rgba(17,24,39,0.3); }
.fleet-card-kamyonet{ background: linear-gradient(145deg, #0f2027 0%, #203a43 100%); box-shadow: 0 20px 50px rgba(15,32,39,0.3); }
.fleet-card-new::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,106,26,0.25) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s;
}
.fleet-card-new:hover::before { transform: scale(1.5); }
.fleet-card-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.2em; color: #c32026;
  text-transform: uppercase;
}
.fleet-card-icon {
  font-size: 68px; color: white; opacity: 0.12;
  position: absolute; right: 20px; top: 0; bottom: 0;
  transform: translateY(-50%);
  transition: all 0.4s; pointer-events: none;
}
.fleet-card-new:hover .fleet-card-icon { opacity: 0.28; transform: translateY(-50%) scale(1.1) rotate(-5deg); }
.fleet-card-body h4 { font-size: 26px; font-weight: 800; color: white; margin: 0 0 6px; letter-spacing: -0.02em; }
.fleet-card-body > p { font-size: 14px; color: rgba(255,255,255,0.55); margin: 0 0 22px; }
.fleet-specs-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.fleet-specs-list li { display: flex; justify-content: space-between; font-size: 13px; }
.fleet-specs-list li span { color: rgba(255,255,255,0.45); }
.fleet-specs-list li b { color: white; font-weight: 700; }
.fleet-card-new:hover { transform: translateY(-12px); box-shadow: 0 40px 80px rgba(11,30,63,0.35); }
@media (max-width: 992px) {
  .fleet-grid-new { grid-template-columns: 1fr; max-width: 420px; margin: 50px auto 0; }
}

@media (max-width: 992px) {
  .features-band-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .features-band-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .process-step:nth-child(2)::after { display: none; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
}

.timeline {
  padding: 100px 0;
  background: white;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 60px;
}
.timeline-grid::before {
  content: ''; position: absolute; top: 30px; left: 0; right: 0;
  height: 2px; background: rgba(11,30,63,0.05); z-index: 0;
}
.timeline-item { position: relative; z-index: 1; }
.timeline-year {
  width: 60px; height: 60px; background: var(--navy); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: 'Space Grotesk', sans-serif; margin-bottom: 24px;
  border: 4px solid white; box-shadow: 0 10px 20px rgba(11,30,63,0.1);
  transition: all .3s;
}
.timeline-item:hover .timeline-year { background: #c32026; transform: scale(1.1); }
.timeline-item h4 { font-size: 20px; margin-bottom: 12px; color: var(--navy); }
.timeline-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

@media (max-width: 992px) {
  .timeline-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline-grid::before { left: 30px; right: auto; top: 0; bottom: 0; width: 2px; height: 100%; }
  .timeline-item { padding-left: 80px; }
  .timeline-year { position: absolute; left: 0; top: 0; }
}

.cta-banner {
  padding: 120px 0;
  background: linear-gradient(rgba(11,30,63,0.85), rgba(11,30,63,0.85)), url('../images/hero-truck.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  color: white; text-align: center;
}
.cta-banner h2 { font-size: clamp(32px, 5vw, 54px); margin-bottom: 24px; }
.cta-banner p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto 40px; }

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  visibility: hidden;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* === PREMIUM FLEET SECTION === */
.fleet-premium {
  position: relative;
  padding: 40px 0 50px;
  background: var(--navy);
  overflow: hidden;
}
.fleet-premium-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(255,106,26,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(11,30,63,0.5) 0%, transparent 70%);
  pointer-events: none;
}

/* === FLEET CLEAN === */
.fleet-clean {
  padding: 60px 0 80px;
  background: #f8f9fb;
}
.fc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fc-card {
  background: white;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,30,63,0.07);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s;
  padding: 32px 28px 28px;
}
.fc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11,30,63,0.12);
}
.fc-card-featured {
  border: 2px solid #c32026;
  box-shadow: 0 8px 32px rgba(255,106,26,0.15);
}
.fc-card-featured:hover {
  box-shadow: 0 24px 60px rgba(255,106,26,0.3);
}

/* Decorative Background Icon */
.fc-deco {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 60px;
  color: var(--navy);
  opacity: 0.04;
  transition: all 0.5s cubic-bezier(0.2,0.8,0.2,1);
  z-index: 0;
}
.fc-card:hover .fc-deco {
  transform: scale(1.15) rotate(-5deg);
  opacity: 0.08;
  color: #c32026;
}

/* Content & Typography */
.fc-content {
  position: relative;
  z-index: 2;
}
.fc-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: rgba(11,30,63,0.06);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.fc-label.fc-label-hot {
  color: #c32026;
  background: rgba(255,106,26,0.1);
}
.fc-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 20px 0;
  font-weight: 800;
}
.fc-card h3 em {
  font-style: normal;
  font-weight: 400;
  opacity: 0.5;
}


/* Feature list */
.fc-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--navy);
  transition: background 0.3s;
  z-index: 1;
}
.fc-card-featured .fc-accent { background: #c32026; }
.fc-card:hover .fc-accent { background: white; opacity: 0.3; }

.fc-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.fc-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--navy);
}
.fc-features li i {
  font-size: 11px;
  color: #c32026;
  width: 18px; height: 18px;
  background: rgba(255,106,26,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .fc-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* === FLEET V2 (Numbered Cards) === */
.fv2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.fv2-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s;
}
.fv2-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  border-color: rgba(255,106,26,0.3);
}
.fv2-card-mid {
  border-color: rgba(255,106,26,0.25);
  background: rgba(255,106,26,0.06);
}

/* Large watermark number */
.fv2-num {
  position: absolute;
  top: 12px; right: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px; font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
  user-select: none;
  transition: color 0.4s;
}
.fv2-card:hover .fv2-num { color: rgba(255,106,26,0.1); }

/* Top zone: icon centered */
.fv2-top {
  padding: 32px 24px 20px;
  display: flex;
  justify-content: flex-start;
}
.fv2-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(255,106,26,0.15);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #c32026;
  transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.fv2-card:hover .fv2-icon-wrap {
  background: #c32026;
  color: white;
  transform: rotate(-6deg) scale(1.08);
}
.fv2-card-mid .fv2-icon-wrap {
  background: rgba(255,106,26,0.2);
}

/* Body */
.fv2-body {
  padding: 0 24px 24px;
}
.fv2-tag {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.fv2-tag-orange {
  color: #c32026;
  border-color: rgba(255,106,26,0.3);
  background: rgba(255,106,26,0.08);
}
.fv2-body h3 {
  font-size: 28px; font-weight: 900;
  color: white; margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.fv2-body h3 span {
  font-size: 18px; font-weight: 500;
  color: rgba(255,255,255,0.4);
}
.fv2-body p {
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin: 0 0 20px; line-height: 1.6;
}

/* Stats row */
.fv2-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}
.fv2-stat {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
}
.fv2-stat b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 900;
  color: white; line-height: 1;
}
.fv2-stat span {
  font-size: 10px; color: rgba(255,255,255,0.35);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
}
.fv2-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .fv2-grid { grid-template-columns: 1fr; max-width: 420px; margin: 40px auto 0; }
}

/* Fleet Rows (Horizontal Layout) */
.fleet-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 40px auto 0;
}
.fleet-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgba(255,106,26,0.3);
  border-radius: 14px;
  padding: 20px 28px;
  transition: all 0.35s cubic-bezier(0.2,0.8,0.2,1);
}
.fleet-row:hover {
  background: rgba(255,255,255,0.09);
  border-left-color: #c32026;
  transform: translateX(6px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.fleet-row-featured {
  background: rgba(255,106,26,0.07);
  border-left-color: #c32026;
}
.fleet-row-icon {
  width: 52px; height: 52px;
  background: rgba(255,106,26,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #c32026;
  flex-shrink: 0;
  transition: all 0.35s;
}
.fleet-row:hover .fleet-row-icon {
  background: #c32026;
  color: white;
  transform: rotate(-5deg) scale(1.05);
}
.fleet-row-info { flex: 1; }
.fleet-row-info h4 {
  font-size: 18px; font-weight: 800;
  color: white; margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.fleet-row-info h4 span { color: rgba(255,255,255,0.4); font-weight: 500; }
.fleet-row-info p { font-size: 13px; color: rgba(255,255,255,0.45); margin: 0; }
.fleet-row-stats {
  display: flex; align-items: center; gap: 16px;
  flex-shrink: 0;
}
.fleet-stat {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  min-width: 44px;
}
.fleet-stat b { font-size: 22px; font-weight: 800; color: white; line-height: 1; }
.fleet-stat span { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 0.05em; }
.fleet-stat-tag {
  font-size: 11px; font-weight: 700;
  color: #c32026;
  background: rgba(255,106,26,0.12);
  border: 1px solid rgba(255,106,26,0.25);
  border-radius: 6px;
  padding: 5px 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .fleet-row { flex-wrap: wrap; gap: 16px; }
  .fleet-row-stats { width: 100%; justify-content: flex-start; }
}


.fp-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(10px);
  cursor: default;
}
.fp-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 28px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255,106,26,0.4), transparent 50%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.fp-card:hover {
  transform: translateY(-14px) scale(1.02);
  background: rgba(255,255,255,0.07);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,106,26,0.3),
    0 0 60px rgba(255,106,26,0.08);
}
.fp-card:hover::after { opacity: 1; }

/* Featured middle card */
.fp-card-featured {
  background: rgba(255,106,26,0.08);
  border-color: rgba(255,106,26,0.2);
  transform: scale(1.03);
}
.fp-card-featured:hover { transform: translateY(-14px) scale(1.05); }

/* Watermark number */
.fp-watermark {
  position: absolute;
  top: -20px; right: -10px;
  font-size: 160px;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s;
}
.fp-card:hover .fp-watermark { color: rgba(255,106,26,0.06); }

.fp-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.fp-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c32026;
  background: rgba(255,106,26,0.12);
  border: 1px solid rgba(255,106,26,0.25);
  border-radius: 6px;
  padding: 5px 10px;
  line-height: 1.4;
}
.fp-icon {
  font-size: 36px;
  color: rgba(255,255,255,0.15);
  transition: all 0.4s;
}
.fp-card:hover .fp-icon {
  color: #c32026;
  transform: scale(1.15) rotate(-8deg);
}

.fp-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: white;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.fp-title em {
  font-style: normal;
  color: #c32026;
}

.fp-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp-spec-row {
  display: grid;
  grid-template-columns: 90px 1fr 70px;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.fp-spec-row span { color: rgba(255,255,255,0.4); font-weight: 500; }
.fp-spec-row b { color: white; font-weight: 700; text-align: right; }

.fp-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.fp-bar {
  height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(90deg, #c32026, #ff4d4d);
  border-radius: 99px;
  position: relative;
}
.fp-bar::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 20px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5));
  animation: barShimmer 2.5s ease-in-out infinite;
}
@keyframes barShimmer {
  0% { opacity: 0; transform: translateX(-10px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateX(10px); }
}

.fp-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.fp-tag {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fp-tag i { color: #c32026; font-size: 10px; }

@media (max-width: 992px) {
  .fp-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .fp-card-featured { transform: none; }
  .fp-card-featured:hover { transform: translateY(-14px); }
}
.character-wrap {
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}
.truck-logo {
  position: absolute;
  top: 60%; left: 55%;
  transform: translate(-50%, -50%) rotate(-5deg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  color: var(--navy);
  font-size: 14px;
  background: white;
  padding: 2px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  white-space: nowrap;
}
.truck-logo.small { font-size: 10px; padding: 1px 5px; }

.fleet-3d-wrap:hover .truck-logo {
  opacity: 0.9;
  transform: translate(-50%, -80%) rotate(-5deg) translateZ(120px) scale(1.1);
}

.fleet-3d-card .character {
  width: 110%;
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) translateZ(0);
  z-index: 2;
  opacity: 1; /* Reset opacity from faded state */
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}


/* === PROCESS SECTION === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.step-icon {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #c32026;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}
.process-step:hover .step-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(195,32,38,0.15);
}
.step-number {
  position: absolute;
  top: -2px;
  right: -5px;
  width: 26px;
  height: 26px;
  background: #0b1e3f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  border: 2px solid whitesmoke;
}
.process-step h4 {
  font-size: 17px;
  font-weight: 800;
  color: #0b1e3f;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.step-arrow {
  position: absolute;
  top: 32px;
  right: -20px;
  color: #ccc;
  font-size: 16px;
  transform: translateX(50%);
}
@media (max-width: 992px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .step-arrow { display: none; }
}
@media (max-width: 576px) {
  .process-grid { grid-template-columns: 1fr; }
}


/* === TIMELINE SECTION === */
.timeline-container {
  position: relative;
  margin-top: 50px;
}
.timeline-line {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ccc;
  z-index: 1;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.timeline-item {
  text-align: left;
}
.timeline-year {
  width: 70px;
  height: 70px;
  background: #0b1e3f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 25px;
  border: 4px solid whitesmoke;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}
.timeline-item:hover .timeline-year {
  background: #c32026;
  transform: scale(1.05);
}
.timeline-item h4 {
  font-size: 18px;
  font-weight: 800;
  color: #0b1e3f;
  margin-bottom: 12px;
}
.timeline-item p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 992px) {
  .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .timeline-line { display: none; }
  .timeline-year { margin-bottom: 15px; }
}
@media (max-width: 576px) {
  .timeline-grid { grid-template-columns: 1fr; }
}


/* === FEATURES STRIP === */
.features-strip {
  background: var(--navy);
  padding: 40px 0;
  color: white;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-item i {
  font-size: 80px;
  color: #c32026;
}
.feature-text h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 3px;
  color: white;
}
.feature-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 576px) {
  .features-grid { grid-template-columns: 1fr; gap: 25px; }
}


/* === SECTORS SECTION === */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.sector-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 30px 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.sector-card:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(195,32,38,0.1);
}
.sector-card i {
  font-size: 36px;
  color: #0b1e3f;
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s ease;
}
.sector-card:hover i {
  color: #c32026;
}
.sector-card span {
  font-size: 15px;
  font-weight: 800;
  color: #0b1e3f;
}
@media (max-width: 992px) {
  .sectors-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 576px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}


/* === FLEET SECTION === */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.fleet-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  border-top: 4px solid var(--navy);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}
.fleet-card::before {
  content: '\f0d1';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 140px;
  color: rgba(11, 30, 63, 0.02);
  z-index: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fleet-card:nth-child(2)::before { content: '\f0d1'; }
.fleet-card:nth-child(3)::before { content: '\f48b'; }
.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(195,32,38,0.1);
}
.fleet-card:hover::before {
  transform: scale(1.1) rotate(-5deg);
  color: rgba(195,32,38,0.05);
}
.fleet-card.featured {
  border-color: #c32026;
  border-width: 3px;
  transform: scale(1.03);
}
.fleet-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
}
.fleet-badge {
  display: inline-block;
  background: #f1f1f1;
  color: #666;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.featured-badge {
  background: rgba(195,32,38,0.1);
  color: #c32026;
}
.fleet-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0b1e3f;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
.fleet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.fleet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: #555;
  margin-bottom: 15px;
  font-weight: 500;
}
.fleet-list li i {
  color: #c32026;
  font-size: 14px;
}
@media (max-width: 992px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-card.featured { transform: scale(1); }
  .fleet-card.featured:hover { transform: translateY(-10px); }
}
@media (max-width: 768px) {
  .fleet-grid { grid-template-columns: 1fr; }
}


/* === INTERACTIVE MAP SECTION === */
.map-container-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}
.map-left { 
  flex: 2;
  position: relative;
 flex: 1.5; min-width: 0; }
.map-right {
  flex: 1;
}

#interactive-map-wrapper {
  width: 100%;
  position: relative;
}

#svg-map-container svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

#svg-map-container svg path {
  fill: #1e293b;
  stroke: #0f172a;
  stroke-width: 1px;
  transition: fill 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

#svg-map-container svg path:hover,
#svg-map-container svg path.active-region {
  fill: #c32026;
  stroke: white;
  stroke-width: 1.5px;
}

.map-legend { 
  margin-top: 20px;
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  justify-content: center;
 display: flex; gap: 20px; font-size: 13px; color: rgba(255,255,255,0.6); justify-content: center; width: 100%; margin-top: 30px; }
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot-all { background: #1e293b; }
.dot-selected { background: #c32026; }

.region-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  min-height: 350px;
}
.region-icon {
  width: 60px;
  height: 60px;
  background: rgba(195,32,38,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.region-icon i {
  font-size: 24px;
  color: #c32026;
}
.region-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  color: white;
}
.region-badges {
  display: flex;
  gap: 15px;
  margin-top: auto;
}
.rb-badge {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 12px 15px;
  border-radius: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rb-title {
  font-weight: 800;
  font-size: 16px;
  color: white;
}
.rb-sub {
  font-size: 10px;
  color: #ff6a1a;
  letter-spacing: 1px;
  font-weight: 700;
  margin-top: 4px;
}

/* MARQUEE */
.cities-marquee {
  background: #c32026;
  color: white;
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.marquee-content {
  display: inline-block;
  animation: marquee_cities 40s linear infinite;
  -webkit-animation: marquee_cities 40s linear infinite;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}
.marquee-content span {
  margin-right: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.marquee-content span i {
  font-size: 8px;
  color: rgba(255,255,255,0.5);
}

@keyframes marquee_cities {
  0% { transform: translateX(0); -webkit-transform: translateX(0); }
  100% { transform: translateX(-50%); -webkit-transform: translateX(-50%); }
}
@-webkit-keyframes marquee_cities {
  0% { -webkit-transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); }
}

@media (max-width: 992px) {
  .map-container-flex { flex-direction: column; }
  .region-card { min-height: auto; }
}

#svg-map-container { width: 100%; min-height: 400px; display: flex; align-items: center; justify-content: center; }


/* === NEW INTERACTIVE MAP STYLES === */
#interactive-map-wrapper {
    position: relative;
    width: 100%;
    padding: 30px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

#svg-map-container {
    width: 100%;
    height: auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.turkey-svg {
    width: 100%;
    height: auto;
    max-height: 480px;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.4));
}

.province-path {
    fill: rgba(30, 41, 59, 0.8);
    stroke: rgba(255,255,255,0.15);
    stroke-width: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.province-path:hover, .province-path.active {
    fill: #c32026;
    stroke: #ffffff;
    stroke-width: 1.5px;
    filter: drop-shadow(0 0 10px rgba(195,32,38,0.8));
    z-index: 10;
}

/* Animation for panel title */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.active-anim {
    animation: fadeIn 0.5s forwards;
}

/* Map Legend adjustments */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-all { background: #1e293b; border: 1px solid rgba(255,255,255,0.1); }
.dot-selected { background: #c32026; box-shadow: 0 0 8px #c32026; }

@media (max-width: 992px) {
    #interactive-map-wrapper { padding: 10px; }
    #svg-map-container { min-height: 300px; }
    .map-legend { flex-wrap: wrap; gap: 15px; }
}

/* === CONTACT PERSON CARD === */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px auto;
}
.contact-person-card {
  background: white;
  border-radius: 20px;
  padding: 35px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  border-left: 8px solid var(--navy);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none !important;
  color: inherit;
  height: 100%;
}
.contact-person-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.cpc-info h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 5px 0;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.cpc-title {
  color: #3b82f6;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 25px;
}
.cpc-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}
.cpc-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  color: #444;
  font-weight: 600;
  font-size: 16px;
}
.cpc-contact-item i { color: #3b82f6; font-size: 18px; width: 20px; text-align: center; }
.cpc-whatsapp {
  font-size: 70px;
  color: #f1f5f9;
  transition: all 0.3s ease;
  margin-left: 20px;
}
.contact-person-card:hover .cpc-whatsapp {
  color: #25D366;
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .contact-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-person-card { padding: 30px; }
}
/* === CONTACT 3-COLUMN LAYOUT === */
.contact-layout-3col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}
.contact-info-box {
  background: whitesmoke;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid #eee;
  height: 100%;
}
.info-item { margin-bottom: 30px; }
.info-item:last-child { margin-bottom: 0; }
.info-item i { color: var(--navy); font-size: 24px; margin-bottom: 12px; display: block; }
.info-item h4 { color: var(--navy); margin-bottom: 5px; font-weight: 700; }
.info-item p { font-size: 18px; font-weight: 700; color: #333; margin: 0; }

.contact-map-box { height: 100%; min-height: 400px; }

.contact-form-premium {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  height: 100%;
}
.contact-form-premium h3 { margin-bottom: 25px; color: var(--navy); font-weight: 800; }
.contact-form-premium .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.contact-form-premium input, 
.contact-form-premium textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fcfcfc;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.contact-form-premium input:focus, 
.contact-form-premium textarea:focus {
  border-color: var(--navy);
  background: white;
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 30, 63, 0.05);
}

@media (max-width: 1200px) {
  .contact-layout-3col { grid-template-columns: 1fr 1fr; }
  .contact-form-premium { grid-column: span 2; }
}
@media (max-width: 768px) {
  .contact-layout-3col { grid-template-columns: 1fr; }
  .contact-form-premium { grid-column: span 1; }
  .contact-map-box { min-height: 300px; }
}

/* === IMAGE MODAL (LIGHTBOX) === */
.img-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  align-items: center;
    filter: drop-shadow(0 0 10px rgba(195,32,38,0.8));
    z-index: 10;
}

/* Animation for panel title */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.active-anim {
    animation: fadeIn 0.5s forwards;
}

/* Map Legend adjustments */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-all { background: #1e293b; border: 1px solid rgba(255,255,255,0.1); }
.dot-selected { background: #c32026; box-shadow: 0 0 8px #c32026; }

@media (max-width: 992px) {
    #interactive-map-wrapper { padding: 10px; }
    #svg-map-container { min-height: 300px; }
    .map-legend { flex-wrap: wrap; gap: 15px; }
}

/* === CONTACT PERSON CARD === */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px auto;
}
.contact-person-card {
  background: white;
  border-radius: 20px;
  padding: 35px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  border-left: 8px solid var(--navy);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none !important;
  color: inherit;
  height: 100%;
}
.contact-person-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.cpc-info h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 5px 0;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.cpc-title {
  color: #3b82f6;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 25px;
}
.cpc-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}
.cpc-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  color: #444;
  font-weight: 600;
  font-size: 16px;
}
.cpc-contact-item i { color: #3b82f6; font-size: 18px; width: 20px; text-align: center; }
.cpc-whatsapp {
  font-size: 70px;
  color: #f1f5f9;
  transition: all 0.3s ease;
  margin-left: 20px;
}
.contact-person-card:hover .cpc-whatsapp {
  color: #25D366;
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .contact-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-person-card { padding: 30px; }
}
/* === CONTACT 3-COLUMN LAYOUT === */
.contact-layout-3col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}
.contact-info-box {
  background: whitesmoke;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid #eee;
  height: 100%;
}
.info-item { margin-bottom: 30px; }
.info-item:last-child { margin-bottom: 0; }
.info-item i { color: var(--navy); font-size: 24px; margin-bottom: 12px; display: block; }
.info-item h4 { color: var(--navy); margin-bottom: 5px; font-weight: 700; }
.info-item p { font-size: 18px; font-weight: 700; color: #333; margin: 0; }

.contact-map-box { height: 100%; min-height: 400px; }

.contact-form-premium {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  height: 100%;
}
.contact-form-premium h3 { margin-bottom: 25px; color: var(--navy); font-weight: 800; }
.contact-form-premium .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.contact-form-premium input, 
.contact-form-premium textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fcfcfc;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.contact-form-premium input:focus, 
.contact-form-premium textarea:focus {
  border-color: var(--navy);
  background: white;
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 30, 63, 0.05);
}

@media (max-width: 1200px) {
  .contact-layout-3col { grid-template-columns: 1fr 1fr; }
  .contact-form-premium { grid-column: span 2; }
}
@media (max-width: 768px) {
  .contact-layout-3col { grid-template-columns: 1fr; }
  .contact-form-premium { grid-column: span 1; }
  .contact-map-box { min-height: 300px; }
}

/* === CHEVRON GALLERY SLIDER === */
.chevron-slider-section {
  width: 100%;
  overflow: hidden;
  background: #f8f9fa;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.chevron-slider-track {
  display: flex;
  width: max-content;
  animation: scrollRight 60s linear infinite;
}

.chevron-slider-track:hover {
  animation-play-state: paused;
}

.chevron-item {
  width: 300px;
  height: 200px;
  margin-right: -46px; /* Boşluk kalmaması için artırıldı */
  flex-shrink: 0;
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, z-index 0.1s ease;
  z-index: 1;
}

/* Fiziksel Renkli Çizgi (::after ile) */
.chevron-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Sadece sağ uçtaki V kısmını boyayan maske */
  clip-path: polygon(83% 0%, 86% 0%, 100% 50%, 86% 100%, 83% 100%, 97% 50%);
  transition: background 0.3s ease, transform 0.3s ease;
}

.chevron-item:nth-child(odd)::after {
  background: #c32026; /* Kırmızı */
}

.chevron-item:nth-child(even)::after {
  background: #0b1e3f; /* Lacivert */
}

.chevron-item:hover {
  transform: scale(1.05) translateY(-5px);
  z-index: 10;
  overflow: visible;
}

.chevron-item:hover::after {
  background: #fff; /* Hoverda çizgi parlasın */
  transform: scale(1.02);
}

.chevron-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.chevron-item:hover img {
  transform: scale(1.1);
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (max-width: 768px) {
  .chevron-item {
    width: 180px;
    height: 120px;
    margin-right: -28px;
  }
  @keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }
}

/* === IMAGE MODAL (LIGHTBOX) UPDATED === */
.img-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80%;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 85%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
  animation: zoomInModal 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(255,255,255,0.1);
}

@keyframes zoomInModal {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#caption {
  margin-top: 20px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 10001;
}

.close-modal:hover {
  background: #c32026;
  transform: rotate(90deg);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
  display: grid;
  place-items: center;
  z-index: 10001;
}

.modal-nav:hover {
  background: #c32026;
  transform: translateY(-50%) scale(1.1);
}

.modal-prev { left: 40px; }
.modal-next { right: 40px; }

@media (max-width: 768px) {
  .modal-nav { width: 45px; height: 45px; font-size: 18px; }
  .modal-prev { left: 15px; }
  .modal-next { right: 15px; }
  .close-modal { top: 20px; right: 20px; width: 40px; height: 40px; font-size: 30px; }
  .modal-content { max-width: 95%; }
}
@media (max-width: 768px) {
  .mv-cards { grid-template-columns: 1fr !important; }
}

/* === TESTIMONIALS GRID === */
.testimonials-section {
  padding: 40px 0 !important; /* Diğer bölümlerle aradaki boşluğu azalttık */
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(11,30,63,0.05);
  border: 1px solid rgba(11,30,63,0.06);
  transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(11,30,63,0.1);
  border-color: #c32026;
}

.t-stars {
  color: #ffb300;
  font-size: 13px;
  display: flex;
  gap: 3px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  font-style: italic;
  margin: 0;
}

.t-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(11,30,63,0.06);
}

.t-avatar {
  width: 44px;
  height: 44px;
  background: rgba(195,32,38,0.1);
  color: #c32026;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.t-info {
  display: flex;
  flex-direction: column;
}

.t-info b {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.t-info span {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 15px; }
  .testimonial-card { padding: 25px; }
  .testimonial-card p { font-size: 14px; }
  .t-stars { font-size: 12px; }
}

/* === CONTACT PAGE UPDATED (2 COL) === */
.contact-layout-2col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(11,30,63,0.05);
  border: 1px solid rgba(11,30,63,0.06);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(10px);
  border-color: #c32026;
  box-shadow: 0 15px 40px rgba(11,30,63,0.1);
}

.cic-icon {
  width: 60px;
  height: 60px;
  background: rgba(195,32,38,0.1);
  color: #c32026;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cic-text h4 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 5px;
  font-weight: 700;
}

.cic-text p {
  font-size: 16px;
  color: #444;
  font-weight: 600;
  margin: 0;
}

.cic-sub {
  font-size: 13px !important;
  color: #888 !important;
  font-weight: 500 !important;
}

.contact-map-full {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Bounce Animation */
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.bounce-icon i {
  animation: iconBounce 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .contact-layout-2col { grid-template-columns: 1fr; gap: 30px; }
  .contact-map-full iframe { min-height: 400px; }
}
@media (max-width: 768px) { .page-header { padding: 85px 0 15px; } .page-header h1 { font-size: 22px; } }
