:root {
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --primary: #ff6b35;
  --primary-ink: #ffffff;
  --container: 1120px;
  --radius: 12px;
  --header-h: 96px;
  /* Always dark theme as default - ignore system preference */
  --bg: #0b0f16;
  --surface: #121723;
  --text: #e9eef9;
  --muted: #9aa3b2;
  --border: #253045;
}

/* Force dark theme by default - only change if explicitly set to light */
html:not([data-theme="light"]) {
  --bg: #0b0f16;
  --surface: #121723;
  --text: #e9eef9;
  --muted: #9aa3b2;
  --border: #253045;
}

[data-theme="light"] {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
}

html, body {
  margin: 0;
  padding: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 107, 53, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 50% 120%, rgba(255, 107, 53, 0.06), transparent),
    /* repeating-linear-gradient animation removed for performance */
    linear-gradient(180deg, #0a0e15 0%, #0b0f16 50%, #0d1117 100%);
  background-attachment: fixed;
  background-size: 100% 100%, 100% 100%, 100% 100%;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1, 'clig' 1, 'calt' 1;
  position: relative;
  min-height: 100vh;
}

/* Static background mesh overlay (animations removed for performance) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

/* Light theme body background */
[data-theme="light"] body {
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 107, 53, 0.06), transparent),
    radial-gradient(ellipse 60% 50% at 50% 120%, rgba(255, 107, 53, 0.04), transparent),
    /* repeating-linear-gradient animation removed for performance */
    linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
}

[data-theme="light"] body::before {
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Info Bar - Orange gradient background with contact info */
.top-info-bar {
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  color: #ffffff;
  padding: 10px 0;
  font-size: 14px;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.top-info-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-icon {
  font-size: 16px;
  line-height: 1;
}

.top-info-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.top-info-item a:hover {
  opacity: 0.7;
}

.top-separator {
  color: rgba(0, 0, 0, 0.3);
  margin: 0 4px;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.top-social-label {
  font-weight: 600;
  color: #ffffff;
}

.top-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  transition: transform 0.2s, opacity 0.2s;
}

.top-social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.top-social-icon svg {
  width: 18px;
  height: 18px;
}

/* Mobile responsive for top info bar */
@media (max-width: 720px) {
  .top-info-bar {
    padding: 8px 0;
    font-size: 11px;
    line-height: 1.4;
  }
  
  .top-info-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .top-separator {
    display: none;
  }
  
  .top-info-item {
    flex-wrap: wrap;
    gap: 4px;
  }
  
  .top-info-item span:first-child {
    flex-shrink: 0;
  }
  
  .top-info-item span:last-child,
  .top-info-item a {
    word-break: break-word;
    font-size: 10px;
  }
  
  .top-social {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .top-social-label {
    font-size: 11px;
  }
  
  .top-icon {
    font-size: 14px;
    flex-shrink: 0;
  }
  
  .top-social-icons {
    gap: 6px;
  }
  
  .top-social-icon {
    width: 22px;
    height: 22px;
  }
  
  .top-social-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .top-info-bar {
    font-size: 11px;
    padding: 6px 0;
  }
  
  .top-info-item {
    gap: 4px;
  }
  
  .top-social-icons {
    gap: 6px;
  }
  
  .top-social-icon {
    width: 20px;
    height: 20px;
  }
  
  .top-social-icon svg {
    width: 16px;
    height: 16px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15,17,21,0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

[data-theme="light"] .site-header { background: rgba(255,255,255,0.8); }

/* subtle gradient divider for a premium look */
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  pointer-events: none;
}

[data-theme="light"] .site-header { background: rgba(255,255,255,0.8); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { display: inline-block; border-radius: 6px; width: 96px; height: 96px; }
.brand span { font-family: var(--font-heading); font-weight: 800; letter-spacing: .2px; }

.nav { position: relative; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 6px 10px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0; padding: 0;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-list li {
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .2px;
  position: relative;
  transition: color .2s ease;
  white-space: nowrap;
  display: block;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #ff8c5a);
  transition: width .25s ease;
}

.nav-list a:hover::after { width: 100%; }
.nav-list a.active::after { width: 100%; }

.cta-inline { 
  display: none; 
  gap: 8px; 
  align-items: center;
  flex-shrink: 0;
}

/* Header button sizing for a clean right-side CTA group */
.site-header .btn {
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
}
.site-header .btn.btn-lg { height: 44px; padding: 0 16px; }

/* Floating CTA (mobile) */
.fab-cta {
  position: fixed; 
  right: 20px; 
  bottom: 80px;
  display: none; 
  flex-direction: column; 
  gap: 12px;
  z-index: 2200;
  padding: 0;
  margin: 0;
  /* Safe area support for notched devices */
  padding-bottom: env(safe-area-inset-bottom, 0);
  bottom: calc(80px + env(safe-area-inset-bottom, 0));
}
.fab-btn {
  width: 60px; 
  height: 60px; 
  border-radius: 50%;
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  background: var(--surface); 
  color: var(--text);
  border: 2px solid var(--border);
  box-shadow: 0 8px 20px rgba(0,0,0,.4), 0 0 0 0 rgba(255,107,53,.4);
  text-decoration: none;
  font-size: 0;
  transition: transform .25s cubic-bezier(.4,0,.2,1), filter .2s ease, background .2s ease, box-shadow .3s ease;
  overflow: hidden;
  position: relative;
}
.fab-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.fab-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity .2s ease;
}
.fab-btn:active::before {
  opacity: 1;
}
.fab-btn:active {
  transform: scale(0.95);
}
.fab-btn:hover { 
  transform: translateY(-3px) scale(1.05); 
  filter: brightness(1.1);
  box-shadow: 0 12px 28px rgba(0,0,0,.5), 0 0 0 4px rgba(255,107,53,.25);
}
.fab-call { 
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%); 
  color: var(--primary-ink);
  border-color: rgba(255,107,53,.4);
}
.fab-call::after {
  content: "📞";
  font-size: 28px;
  line-height: 1;
}
.fab-whatsapp { 
  background: linear-gradient(135deg, #25d366, #1ebe5d); 
  color: #fff;
  border-color: rgba(37,211,102,.3);
}
.fab-whatsapp img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.fab-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border-color: rgba(188,24,136,.3);
}
.fab-instagram:hover {
  box-shadow: 0 12px 28px rgba(188,24,136,.45), 0 0 0 0 rgba(188,24,136,.4);
  animation: btnInstagramGlow .6s ease-out;
}
.fab-instagram img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@keyframes btnInstagramGlow {
  0% { box-shadow: 0 12px 28px rgba(188,24,136,.45), 0 0 0 0 rgba(188,24,136,.4); }
  50% { box-shadow: 0 12px 28px rgba(188,24,136,.45), 0 0 0 8px rgba(188,24,136,0); }
  100% { box-shadow: 0 12px 28px rgba(188,24,136,.45), 0 0 0 0 rgba(188,24,136,0); }
}

.hero {
  padding: 56px 0 32px;
  position: relative;
  background: 
    radial-gradient(ellipse 1200px 600px at 10% -10%, rgba(255, 107, 53, 0.15), transparent 65%),
    radial-gradient(ellipse 1000px 500px at 90% 10%, rgba(255, 107, 53, 0.1), transparent 60%),
    radial-gradient(ellipse 800px 400px at 50% 50%, rgba(255, 255, 255, 0.08), transparent 70%),
    linear-gradient(135deg, rgba(11, 15, 22, 0.95) 0%, rgba(13, 17, 23, 0.98) 100%);
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
}

/* Static gradient overlay for hero (animation removed for performance) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.12), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

[data-theme="light"] .hero {
  background: 
    radial-gradient(ellipse 1200px 600px at 10% -10%, rgba(255, 107, 53, 0.2), transparent 65%),
    radial-gradient(ellipse 1000px 500px at 90% 10%, rgba(255, 107, 53, 0.12), transparent 60%),
    radial-gradient(ellipse 800px 400px at 50% 50%, rgba(0, 0, 0, 0.06), transparent 70%),
    linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
}

[data-theme="light"] .hero::before {
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.15), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.12), transparent 50%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  will-change: transform;
  transform: translateY(calc(var(--parallax, 0px) * -1));
  transition: transform .2s ease;
}

.hero-text h1 {
  margin: 16px 0 12px;
  font-size: clamp(28px, 5.2vw, 56px);
  line-height: 1.15;
  background: linear-gradient(90deg, #ffffff, #ff6b35 60%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  background-size: 200% 100%;
  /* Animation removed for performance */
}

.hero-text p { color: var(--muted); margin: 0 0 16px; }

.hero-cta { display: flex; gap: 12px; margin: 12px 0 8px; flex-wrap: wrap; }

.trust-points { 
  margin: 12px 0 0; 
  padding: 0; 
  list-style: none; 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
  color: var(--muted);
}
.trust-points li {
  position: relative;
  padding-left: 20px;
  transition: transform .2s ease, color .2s ease;
}
.trust-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  opacity: 0;
  transform: scale(0);
  transition: opacity .3s ease, transform .3s cubic-bezier(.68,-0.55,.265,1.55);
}
.trust-points li:hover {
  transform: translateX(4px);
  color: var(--text);
}
.trust-points li:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Esawei logo above hero title */
.esawei-logo {
  width: 100%;
  height: auto;
  margin: 0 0 12px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.35));
  /* Animation removed for performance */
  transition: transform .3s ease, filter .3s ease;
}
.esawei-logo:hover {
  transform: translateY(-8px) scale(1.05) rotate(2deg);
  filter: drop-shadow(0 10px 24px rgba(255,107,53,.4));
}

/* Title spacing under the logo (no overlap) */
.esawei-logo + .hero-title {
  margin-top: clamp(8px, 2vw, 16px);
}

@media (max-width: 720px) {
  .esawei-logo + .hero-title { margin-top: clamp(6px, 2vw, 12px); }
}

.hero-card {
  background:
    linear-gradient(180deg, #1b2029, #151922) padding-box,
    linear-gradient(120deg, rgba(255,107,53,.4), rgba(255,107,53,0)) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s ease;
  /* Animation removed for performance */
}
.hero-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(255,107,53,.25);
}

.hero-card-inner {
  border-radius: 12px;
  background: var(--surface);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.section { padding: 48px 0; }
.section.alt { 
  background: 
    linear-gradient(180deg, rgba(18, 22, 29, 0.95) 0%, rgba(15, 19, 26, 0.98) 100%);
  border-top: 1px solid var(--border); 
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section.alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(255, 107, 53, 0.03), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.section.alt > * {
  position: relative;
  z-index: 1;
}

[data-theme="light"] .section.alt { 
  background: 
    linear-gradient(180deg, rgba(241, 245, 249, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
}

[data-theme="light"] .section.alt::before {
  background: 
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(255, 107, 53, 0.05), transparent 60%);
}
.section h2 { 
  margin: 0 0 16px; 
  font-size: 28px;
  position: relative;
  display: inline-block;
}
.section h2::after { 
  content: ""; 
  display: block; 
  width: 56px; 
  height: 3px; 
  background: linear-gradient(90deg, var(--primary), #ff8c5a); 
  border-radius: 2px; 
  margin-top: 6px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.js .reveal.is-visible .section h2::after,
.section h2.reveal.is-visible::after {
  transform: scaleX(1);
}
.section h2::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), #ff8c5a);
  border-radius: 2px;
  transition: height .6s cubic-bezier(.4,0,.2,1) .2s;
}
.js .reveal.is-visible .section h2::before,
.section h2.reveal.is-visible::before {
  height: 60%;
}

h1, h2, h3 { font-family: var(--font-heading); }
h2 { font-weight: 700; letter-spacing: -0.01em; }
h3 { font-weight: 700; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { 
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02)) , var(--surface); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 16px; 
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1), border-color .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,107,53,.1), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover { 
  transform: translateY(-8px) scale(1.02); 
  box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(255,107,53,.25); 
  border-color: color-mix(in srgb, var(--primary) 50%, var(--border));
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.04)) , var(--surface);
}

/* Tilt effect */
.tilt { transform-style: preserve-3d; perspective: 800px; }
.tilt-inner { transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .15s ease; }
.tilt:hover .tilt-inner { transition: none; }

/* Blog covers */
.post-cover { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 10px; }

/* Vehicles */
.vehicles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* Durağımız Bölümü */
.durak-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.durak-image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.durak-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.durak-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (max-width: 720px) {
  .durak-gallery {
    gap: 16px;
  }
  
  .durak-image {
    border-radius: 8px;
  }
  
  .durak-image img {
    border-radius: 8px;
  }
}
.vehicle-card { 
  background: var(--surface); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 12px; 
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1), border-color .3s ease;
  position: relative;
}
.vehicle-card:hover { 
  transform: translateY(-8px) scale(1.01); 
  box-shadow: 0 20px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(255,107,53,.2); 
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
}
.vehicle-photo { 
  width: 100%; 
  aspect-ratio: 9 / 16; 
  border-radius: 10px; 
  overflow: hidden; 
  border: 1px solid var(--border); 
  background: #0b0f16; 
  position: relative;
  transition: border-color .3s ease;
}
.vehicle-card:hover .vehicle-photo {
  border-color: color-mix(in srgb, var(--primary) 50%, var(--border));
}
.vehicle-photo img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center; 
  display: block; 
  position: absolute; 
  inset: 0; 
  opacity: 0; 
  transition: opacity .6s ease, transform .6s cubic-bezier(.4,0,.2,1);
  transform: scale(1);
}
.vehicle-photo img:first-child { opacity: 1; }
.vehicle-photo img.active { opacity: 1; }
.vehicle-card:hover .vehicle-photo img.active {
  transform: scale(1.08);
}
.vehicle-photo::after { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.2)); 
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.vehicle-card:hover .vehicle-photo::after {
  opacity: 1;
}
.vehicle-info { padding: 10px 2px 4px; }
.vehicle-info h3 { margin: 8px 0 4px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.price-title { color: var(--muted); font-weight: 600; }
.price-value { font-size: 22px; font-weight: 700; margin: 4px 0; }
.price-note { color: var(--muted); font-size: 14px; }

.contact { display: grid; gap: 12px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.contact-list li { padding: 6px 8px; border-radius: 8px; transition: transform .2s ease, background .2s ease; }
.contact-list li:hover { transform: translateY(-2px); background: rgba(255,255,255,0.03); }
[data-theme="light"] .contact-list li:hover { background: rgba(0,0,0,0.04); }
.contact-list span { color: var(--muted); margin-right: 8px; }
.contact-cta { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }

.socials { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.socials img { width: 18px; height: 18px; border-radius: 4px; display: inline-block; }
.socials .insta { color: #ff6b35; text-decoration: none; font-weight: 700; }
.socials .insta:hover { text-decoration: underline; }

/* Instagram row inside card */
.insta-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px; padding: 10px 12px;
  border: 1px solid var(--border); border-radius: 10px;
  background: #0f131a;
}
.insta-row img { width: 22px; height: 22px; border-radius: 6px; }
.insta-row .insta-link { font-weight: 800; text-decoration: none; color: #c084fc; }
.insta-row .insta-link:hover { text-decoration: underline; }

.faq { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 10px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.faq:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(0,0,0,.35); border-color: color-mix(in srgb, var(--primary) 30%, var(--border)); }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin: 8px 0 0; }

.site-footer { border-top: 1px solid var(--border); padding: 22px 0; background: #10141a; }
[data-theme="light"] .site-footer { background: #ffffff; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.back-to-top { color: var(--muted); text-decoration: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, filter .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn-lg { padding: 12px 16px; font-size: 16px; }
.w-100 { width: 100%; }

.btn-primary { 
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%); 
  color: var(--primary-ink); 
  box-shadow: 0 6px 18px rgba(255,107,53,.3);
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, filter .2s ease;
  position: relative;
}
.btn-primary:hover { 
  filter: brightness(1.1); 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 12px 28px rgba(255,107,53,.5), 0 0 0 0 rgba(255,107,53,.4);
  animation: btnGlow .6s ease-out;
}
.btn-primary:active {
  transform: translateY(-1px) scale(1);
}
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

@keyframes btnGlow {
  0% { box-shadow: 0 12px 28px rgba(255,107,53,.5), 0 0 0 0 rgba(255,107,53,.4); }
  50% { box-shadow: 0 12px 28px rgba(255,107,53,.5), 0 0 0 8px rgba(255,107,53,0); }
  100% { box-shadow: 0 12px 28px rgba(255,107,53,.5), 0 0 0 0 rgba(255,107,53,0); }
}

.btn-secondary { 
  background: #242a35; 
  color: var(--text); 
  border: 1px solid var(--border);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-secondary:hover { 
  filter: brightness(1.1); 
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
}
[data-theme="light"] .btn-secondary { background: #f1f5f9; color: #0f172a; }

.btn-whatsapp { 
  background: linear-gradient(135deg, #25d366, #1ebe5d); 
  color: #ffffff; 
  border: 1px solid #1ebe5d;
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, filter .2s ease;
}
.btn-whatsapp:hover { 
  filter: brightness(1.08); 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4);
  animation: btnWhatsAppGlow .6s ease-out;
}
.btn-whatsapp:active {
  transform: translateY(-1px) scale(1);
}

@keyframes btnWhatsAppGlow {
  0% { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

.btn-outline { 
  background: transparent; 
  color: var(--text); 
  border: 1px solid var(--border);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn-outline:hover { 
  background: #1c212b; 
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  border-color: color-mix(in srgb, var(--primary) 20%, var(--border));
}
[data-theme="light"] .btn-outline:hover {
  background: rgba(0,0,0,.04);
}

.text-whatsapp { color: #25d366 !important; }
.btn-outline.text-whatsapp:hover { 
  background: rgba(37,211,102,.15); 
  border-color: rgba(37,211,102,.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37,211,102,.25);
}

.muted { color: var(--muted); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.8); display: none; align-items: center; justify-content: center; z-index: 3000; }
.lightbox.open { display: flex; }
.lightbox-image { max-width: 90vw; max-height: 84vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 40px; height: 40px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* Theme toggle */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.theme-toggle:hover { background: var(--surface); transform: translateY(-1px); }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: transparent;
  z-index: 2000;
}
.scroll-progress__bar {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--primary), #ff8c5a);
  box-shadow: 0 0 10px rgba(255,107,53,.6);
  transition: width .08s linear;
}

/* Page fade transitions */
html.js:not(.page-loaded) body { opacity: 0; }
html.page-leave body { opacity: 0; transition: opacity .25s ease; }
html.page-loaded body { transition: opacity .4s ease; }

/* Header scrolled state */
.site-header.scrolled { background: rgba(15,17,21,0.92); box-shadow: 0 6px 24px rgba(0,0,0,.35); }
[data-theme="light"] .site-header.scrolled { background: rgba(255,255,255,0.95); }

/* Reveal on scroll (only if JS active) */
.js .reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1) var(--delay, 0s), 
              transform .8s cubic-bezier(.2,.8,.2,1) var(--delay, 0s);
  will-change: opacity, transform;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger animation for cards */
.cards .card:nth-child(1) { --delay: .05s; }
.cards .card:nth-child(2) { --delay: .1s; }
.cards .card:nth-child(3) { --delay: .15s; }
.cards .card:nth-child(4) { --delay: .2s; }

/* Stagger animation for vehicles */
.vehicles .vehicle-card:nth-child(1) { --delay: .05s; }
.vehicles .vehicle-card:nth-child(2) { --delay: .15s; }

/* Pulse for CTA */
.pulse { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53, .6); }
  50% { box-shadow: 0 0 0 10px rgba(255,107,53, 0); }
}

.pulse-green { animation: pulseGreen 2.2s ease-in-out infinite; }
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* Button ripple */
.btn { 
  position: relative; 
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}
.ripple {
  position: absolute; border-radius: 999px;
  background: rgba(255,255,255,.35);
  transform: translate(-50%,-50%) scale(0);
  animation: ripple .6s ease-out forwards; pointer-events: none;
  width: 10px; height: 10px; opacity: .9;
}
@keyframes ripple {
  to { transform: translate(-50%,-50%) scale(16); opacity: 0; }
}

/* Hero floating orbs - using ::after for additional floating element */
.hero::after {
  content: ""; 
  position: absolute; 
  inset: -15% 60% auto auto; 
  height: 400px; 
  width: 400px;
  background: radial-gradient(closest-side, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0));
  border-radius: 50%; 
  filter: blur(50px); 
  z-index: 0; 
  pointer-events: none;
  /* Animation removed for performance */
}

.hero > * { position: relative; z-index: 2; }

/* Insta banner under card */
.insta-banner { grid-column: 2; }
.insta-banner-inner {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  border-radius: 14px; padding: 18px 20px;
  background:
    linear-gradient(180deg, #1b2029, #151922) padding-box,
    linear-gradient(120deg, rgba(255,107,53,.4), rgba(255,107,53,0)) border-box;
  border: 1px solid transparent;
  min-height: 120px;
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
}
.insta-banner-inner img { width: 42px; height: 42px; border-radius: 8px; }
.insta-banner-inner span { font-size: 32px; font-weight: 800; letter-spacing: .3px; }
@media (max-width: 980px) {
  .insta-banner { grid-column: 1; }
  .insta-banner-inner span { font-size: 28px; }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

@media (max-width: 980px) {
  .container {
    padding: 0 20px;
  }
  .hero-inner { 
    grid-template-columns: 1fr; 
    gap: 28px;
  }
  .cards { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 14px;
  }
  .vehicles { 
    grid-template-columns: 1fr; 
    gap: 14px;
  }
  .price-grid { 
    grid-template-columns: 1fr; 
  }
  .section {
    padding: 40px 0;
  }
}

/* Tablet portrait (481px - 720px) */
@media (min-width: 481px) and (max-width: 720px) {
  .container {
    padding: 0 20px;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  :root { 
    --header-h: 72px;
    --container: 100%;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute;
    top: 52px; right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: none;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
  }
  .nav-list.open { display: flex; }
  .nav-list a {
    padding: 10px 12px;
    font-size: 15px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .cta-inline { display: none; }
  .brand img { width: 64px; height: 64px; }
  .esawei-logo { width: 100%; }
  .fab-cta { 
    display: flex;
    right: 16px;
    /* Android navigation bar için daha fazla bottom padding (genellikle 48-56px) */
    bottom: calc(110px + env(safe-area-inset-bottom, 0px));
    gap: 14px;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .fab-btn {
    width: 56px;
    height: 56px;
    box-shadow: 0 6px 16px rgba(0,0,0,.45), 0 0 0 0 rgba(255,107,53,.35);
  }
  .fab-btn img {
    width: 30px;
    height: 30px;
  }
  .fab-call::after {
    font-size: 26px;
  }
  .fab-whatsapp img {
    width: 30px;
    height: 30px;
    filter: none;
  }
  .fab-instagram img {
    width: 30px;
    height: 30px;
  }
  
  /* Mobile typography */
  .hero-text h1 { font-size: clamp(24px, 7vw, 40px); }
  .section h2 { font-size: 24px; }
  .section { padding: 32px 0; }
  
  /* Mobile buttons - touch-friendly */
  .btn {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 15px;
  }
  .btn-lg {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 16px;
  }
  
  /* Mobile cards */
  .cards { 
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .card { padding: 14px; }
  
  /* Mobile hero */
  .hero {
    padding: 32px 0 24px;
    min-height: auto;
  }
  .hero-inner { gap: 24px; }
  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Mobile trust points */
  .trust-points {
    flex-direction: column;
    gap: 10px;
  }
  
  /* Mobile contact */
  .contact-list li {
    padding: 10px;
    min-height: 44px;
  }
  .contact-cta {
    flex-direction: column;
  }
  .contact-cta .btn {
    width: 100%;
  }
  
  /* Mobile map */
  .map-actions {
    flex-direction: column;
  }
  .btn-map {
    width: 100%;
    min-width: auto;
  }
  .map-embed iframe {
    height: 280px;
  }
  
  /* Mobile fare calculator - compact horizontal layout */
  .fare-form {
    gap: 8px;
  }
  .fare-row {
    flex-direction: row;
    gap: 8px;
    align-items: stretch;
  }
  .fare-input {
    flex: 1 1 auto;
    min-height: 38px;
    max-height: 38px;
    padding: 7px 9px;
    font-size: 12px;
    width: auto;
  }
  .fare-input::placeholder {
    font-size: 12px;
  }
  .fare-form .btn {
    min-height: 38px;
    max-height: 38px;
    padding: 7px 10px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  #useLocation {
    min-width: auto;
    padding: 7px 8px;
    font-size: 11px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fare-result {
    padding: 8px 10px;
    margin-top: 6px;
  }
  .fare-result strong {
    font-size: 15px;
  }
  .fare-result p {
    margin: 3px 0;
    font-size: 13px;
  }
  .fare-result small {
    font-size: 11px;
    line-height: 1.4;
  }
  #fareStatus {
    font-size: 12px;
    margin-bottom: 4px;
  }
  
  /* Mobile vehicle cards */
  .vehicles {
    gap: 12px;
  }
  
  /* Mobile section spacing */
  .section.alt {
    margin: 0;
  }
  
  /* Mobile taksimetre section */
  #taksimetre.section {
    padding: 20px 0;
  }
  #taksimetre .section h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #taksimetre .section h2::after {
    width: 48px;
    height: 2px;
    margin-top: 4px;
  }
  
  /* Mobile-specific animations */
  
  /* Smooth slide-in for mobile menu */
  .nav-list {
    animation: slideInRight 0.3s cubic-bezier(.4,0,.2,1);
    transform-origin: top right;
  }
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(20px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }
  
  /* Mobile card touch animations */
  .card:active,
  .vehicle-card:active,
  .faq:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  /* Mobile button tap animation */
  .btn:active {
    transform: scale(0.96);
    transition: transform 0.1s ease;
  }
  
  /* Mobile reveal animations with stagger */
  .js .reveal {
    animation: mobileReveal 0.6s cubic-bezier(.2,.8,.2,1) var(--delay, 0s) both;
  }
  @keyframes mobileReveal {
    from {
      opacity: 0;
      transform: translateY(20px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  /* Mobile hero text animation */
  .hero-text {
    animation: fadeInUp 0.8s cubic-bezier(.2,.8,.2,1) 0.2s both;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Mobile hero card bounce */
  .hero-card {
    animation: mobileBounce 0.8s cubic-bezier(.68,-0.55,.265,1.55) 0.4s both;
  }
  @keyframes mobileBounce {
    0% {
      opacity: 0;
      transform: translateY(40px) scale(0.9);
    }
    60% {
      transform: translateY(-10px) scale(1.02);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  /* Mobile FAB entrance */
  .fab-cta {
    animation: fabEntrance 0.5s cubic-bezier(.68,-0.55,.265,1.55) 1s both;
  }
  @keyframes fabEntrance {
    from {
      opacity: 0;
      transform: translateY(20px) scale(0.8);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  /* Mobile section slide-in */
  .section {
    animation: sectionSlide 0.6s ease-out both;
    animation-delay: calc(var(--section-index, 0) * 0.1s);
  }
  @keyframes sectionSlide {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Mobile scroll indicator */
  .scroll-hint {
    display: block !important;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: rgba(255,107,53,.8);
    opacity: 0.8;
    animation: scrollBounce 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 100;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
  }
  @keyframes scrollBounce {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
      opacity: 0.8;
    }
    50% {
      transform: translateX(-50%) translateY(12px);
      opacity: 1;
    }
  }
  
  /* Mobile touch ripple effect */
  .card,
  .vehicle-card,
  .btn,
  .faq summary {
    position: relative;
    overflow: hidden;
  }
  .card::after,
  .vehicle-card::after,
  .btn::after,
  .faq summary::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s, opacity 0.6s;
    pointer-events: none;
    opacity: 0;
  }
  .card:active::after,
  .vehicle-card:active::after,
  .btn:active::after,
  .faq summary:active::after {
    width: 200px;
    height: 200px;
    opacity: 1;
    transition: width 0s, height 0s, opacity 0.6s;
  }
  
  /* Mobile smooth scroll indicator */
  .scroll-progress {
    height: 3px;
    background: rgba(255,107,53,.25);
  }
  .scroll-progress__bar {
    background: linear-gradient(90deg, var(--primary), #ff8c5a);
    box-shadow: 0 0 10px rgba(255,107,53,.5);
  }
  
  /* Mobile header scroll animation */
  .site-header {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .site-header.scrolled {
    transform: translateY(0);
    animation: headerSlideDown 0.3s ease;
  }
  @keyframes headerSlideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  /* Mobile image loading animation */
  img {
    animation: imageFadeIn 0.5s ease-out;
  }
  @keyframes imageFadeIn {
    from {
      opacity: 0;
      transform: scale(1.05);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* Mobile loading skeleton */
  @keyframes skeletonLoading {
    0% {
      background-position: -200px 0;
    }
    100% {
      background-position: calc(200px + 100%) 0;
    }
  }
  
  /* Mobile swipe hint - only for sliders */
  .vehicle-photo.slider::before {
    content: "👆 Kaydır";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.7);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    z-index: 10;
    pointer-events: none;
    animation: swipeHint 3s ease-in-out infinite;
    opacity: 0;
  }
  @keyframes swipeHint {
    0%, 70%, 100% { opacity: 0; transform: translateX(-50%) translateY(5px); }
    85% { opacity: 0.9; transform: translateX(-50%) translateY(0); }
  }
  
  /* Mobile parallax reduction for performance */
  .hero-inner {
    transform: none !important;
  }
}

@media (min-width: 721px) {
  .nav-toggle { display: none; }
  .nav-list { display: flex; position: static; background: transparent; border: 0; padding: 0; animation: none; }
  .cta-inline { display: flex; }
  .scroll-hint { display: none; }
  /* Disable mobile-specific animations on desktop */
  .hero-text,
  .hero-card,
  .section {
    animation: none;
  }
}

.map-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.btn-map { min-width: 220px; }
.map-embed { margin-top: 12px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

/* Fare calculator */
.fare-form { display: grid; gap: 10px; margin-bottom: 8px; }
.fare-row { display: flex; gap: 8px; flex-wrap: wrap; }
.fare-input {
  flex: 1 1 320px;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0f131a; color: var(--text);
  font-size: 15px;
  pointer-events: auto;
  -webkit-user-select: text;
  user-select: text;
}
.fare-input:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-color: var(--primary);
}
.fare-result { margin-top: 6px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; }
.fare-result strong { font-size: 18px; }

/* Google Places dropdown (z-index fix + dark theme) */
.pac-container { z-index: 4000 !important; background: #0f131a; border: 1px solid var(--border); border-radius: 10px; }
.pac-item { color: var(--text); }
.pac-item-query { color: #ff6b35; }
.pac-matched { color: #ff6b35; }
.pac-item:hover { background: #151a22; }

/* OSM autocomplete */
.suggest-box { position: absolute; background: #0f131a; border: 1px solid var(--border); border-radius: 10px; margin-top: 2px; width: 100%; z-index: 4000; max-height: 220px; overflow: auto; }
.suggest-item { padding: 8px 10px; cursor: pointer; color: var(--text); }
.suggest-item:hover { background: #151a22; }
.fare-row { position: relative; }

/* Hero gallery */
.hero-gallery { position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: #0b0f16; box-shadow: 0 12px 32px rgba(0,0,0,.35); max-width: 520px; margin: 0 auto; }
.hero-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease; }
.hero-gallery img.active { opacity: 1; }
.gal-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.4); color: #fff; border: 1px solid rgba(255,255,255,.25); width: 42px; height: 42px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.gal-prev { left: 12px; }
.gal-next { right: 12px; }
@media (max-width: 720px) {
  .hero-gallery { max-width: none; }
}

/* ============================================
   ENHANCED ANIMATIONS FOR BETTER UX
   ============================================ */

/* Page Load Fade-In Animation */
@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  animation: pageFadeIn 0.6s ease-out;
}

/* Enhanced Card Hover Animations */
.card,
.vehicle-card,
.faq {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover,
.vehicle-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 107, 53, 0.15);
}

.faq:hover {
  transform: translateX(4px);
}

/* Smooth Button Hover Effects - Enhanced */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

.btn:active {
  transform: translateY(0);
}

/* Icon Bounce Animation - Removed for performance */

/* Text Typing Animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--primary);
  }
}

/* Smooth Scroll Indicator Animation */
.scroll-hint {
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.7;
  }
}

/* Enhanced Reveal Animation with Stagger */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered Animation for Lists */
.trust-points li {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.6s ease-out forwards;
}

.trust-points li:nth-child(1) {
  animation-delay: 0.1s;
}

.trust-points li:nth-child(2) {
  animation-delay: 0.2s;
}

.trust-points li:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Contact List Item Animation */
.contact-list li {
  transition: all 0.3s ease;
  padding: 8px 0;
}

.contact-list li:hover {
  transform: translateX(8px);
  padding-left: 8px;
}

.contact-list li a {
  transition: color 0.3s ease;
}

.contact-list li:hover a {
  color: var(--primary);
}

/* Social Media Icon Hover Animation */
.top-social-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-social-icon:hover {
  transform: scale(1.2) rotate(5deg);
}

/* Loading Spinner Animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading {
  animation: spin 1s linear infinite;
}

/* Gradient Text Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), #ffed4e, var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

/* Smooth Scale on Click */
@keyframes scaleClick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.btn:active,
.fab-btn:active {
  animation: scaleClick 0.2s ease;
}

/* Floating Animation - Removed for performance */

/* Shimmer Effect - Removed for performance */

/* Smooth Nav Link Hover */
.nav-list a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

/* FAQ Details Animation */
.faq summary {
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq summary:hover {
  color: var(--primary);
  padding-left: 8px;
}

.faq[open] summary {
  color: var(--primary);
}

.faq[open] p {
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Top Info Bar Slide In */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.top-info-bar {
  animation: slideDown 0.5s ease-out;
}

/* Header Fade In on Scroll */
.site-header {
  transition: all 0.3s ease;
}

.site-header.scrolled {
  animation: headerSlideDown 0.3s ease-out;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Mobile Optimizations */
@media (max-width: 720px) {
  .card:hover,
  .vehicle-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .btn:hover {
    transform: translateY(-1px);
  }
  
  .trust-points li {
    animation-delay: 0s;
  }
  
  .hero-title,
  .hero-card {
    animation: none;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===========================
   Hakkında (About) Section
   =========================== */
.about-content {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02)), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff8c5a, var(--primary));
  border-radius: 2px 2px 0 0;
}

.about-content p {
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 16px;
  font-size: 16px;
}

.about-content p:last-of-type {
  margin-bottom: 12px;
}

.about-content strong {
  color: var(--primary);
  font-weight: 700;
}

.about-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
}

.about-trust li {
  padding: 10px 16px;
  background: rgba(255, 107, 53, 0.06);
  border: 1px solid rgba(255, 107, 53, 0.12);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.about-trust li::before {
  display: none;
}

.about-trust li:hover {
  transform: translateX(6px);
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.25);
}

.about-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

[data-theme="light"] .about-content {
  background: linear-gradient(180deg, rgba(0,0,0,0.01), rgba(0,0,0,0.02)), var(--surface);
}

[data-theme="light"] .about-trust li {
  background: rgba(255, 107, 53, 0.04);
  border-color: rgba(255, 107, 53, 0.15);
}

@media (max-width: 720px) {
  .about-content {
    padding: 24px 16px;
  }

  .about-trust li {
    font-size: 14px;
    padding: 8px 12px;
  }

  .about-cta {
    flex-direction: column;
  }

  .about-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


