/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #f97316;
  --primary-dark: #ea6c0a;
  --bg: #0f0f0f;
  --bg2: #171717;
  --bg3: #1e1e1e;
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --text-secondary: #d4d4d4;
  --border: #2a2a2a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--alt { background: var(--bg2); }
.text-primary { color: var(--primary); }
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.45); }
.btn--outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); box-shadow: none; }
.btn--outline:hover { background: var(--primary); color: #fff; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-weight: 800; font-size: 1.1rem; color: var(--primary); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-tel {
  display: flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-weight: 700; font-size: 0.85rem;
  padding: 8px 16px; border-radius: 8px;
  transition: background 0.2s;
}
.nav-tel:hover { background: var(--primary-dark); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; color: var(--text); }
.nav-mobile { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-mobile.open {
    display: flex; flex-direction: column; gap: 16px;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(15,15,15,0.98); backdrop-filter: blur(12px);
    padding: 24px; border-top: 1px solid var(--border);
    z-index: 99;
  }
  .nav-mobile a { font-size: 1rem; font-weight: 600; color: var(--text-muted); padding: 4px 0; }
  .nav-mobile .nav-tel { justify-content: center; margin-top: 8px; font-size: 1rem; padding: 12px; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(15,15,15,0.82);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 860px; width: 100%;
  animation: fadeUp 0.8s ease both;
}
.hero-card {
  background: rgba(30,30,30,0.8);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 20px;
  padding: 56px 56px;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 60px rgba(249,115,22,0.08), var(--shadow);
}
.hero-card h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.1;
  color: var(--text);
}
.hero-card p.hero-sub {
  margin-top: 16px;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary); font-weight: 300;
}
.hero-card p.hero-cities {
  margin-top: 12px;
  font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
}
.hero-card .btn { margin-top: 40px; font-size: 1.1rem; padding: 16px 40px; }
.hero-note { margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 600px) {
  .hero-card { padding: 36px 24px; }
}

/* ===== SECTION HEADINGS ===== */
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 16px;
}
.section-lead {
  color: var(--text-muted); max-width: 640px;
  margin: 0 auto; font-size: 1rem;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
  margin-top: 64px;
}
.service-item { text-align: center; }
.service-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(249,115,22,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s;
}
.service-icon:hover { transform: scale(1.1); }
.service-icon svg { width: 32px; height: 32px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.service-item h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.service-item p { font-size: 0.9rem; color: var(--text-muted); max-width: 260px; margin: 0 auto; line-height: 1.65; }
.service-item p strong { color: var(--text-secondary); font-weight: 600; }
.services-cta { text-align: center; margin-top: 48px; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover { border-color: rgba(249,115,22,0.4); transform: translateY(-3px); }
.why-card-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 10px;
  background: rgba(249,115,22,0.1);
  display: flex; align-items: center; justify-content: center;
}
.why-card-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.why-card p strong { color: var(--text-secondary); }
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== FLEET ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px; margin: 56px auto 0;
}
.fleet-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.fleet-img img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.5s;
}
.fleet-img:hover img { transform: scale(1.04); }
@media (max-width: 620px) { .fleet-grid { grid-template-columns: 1fr; } }

/* ===== REASONS & TESTIMONIALS ===== */
.reasons-list {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 800px; margin: 48px auto 0;
}
.reason-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.reason-check {
  flex-shrink: 0; margin-top: 4px;
  width: 24px; height: 24px;
}
.reason-check svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 2; }
.reason-item p { font-size: 1rem; color: var(--text-secondary); line-height: 1.65; }

.testimonials-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; text-align: center;
  margin-top: 80px; margin-bottom: 40px;
}
.testimonials-list {
  display: flex; flex-direction: column; gap: 32px;
  max-width: 800px; margin: 0 auto;
}
.testimonial { border-left: 3px solid var(--primary); padding-left: 20px; }
.testimonial p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px; margin-top: 10px;
}
.testimonial-author span { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: var(--primary); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px; margin: 48px auto 0;
}
.contact-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: rgba(249,115,22,0.4); }
.contact-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.contact-card-header svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.contact-card-header h3 { font-size: 1.1rem; font-weight: 700; }
.contact-card p { color: var(--text-secondary); font-size: 0.95rem; }
.contact-card a {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-secondary); font-size: 1.05rem; font-weight: 600;
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--primary); }
.contact-card a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.contact-cta { text-align: center; margin-top: 40px; }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.faq-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 120px 0 64px;
  background: var(--bg2);
  text-align: center;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.step { text-align: center; }
.step-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(249,115,22,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 640px) { .steps-grid { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid var(--border);
  text-align: center; font-size: 0.75rem; color: var(--text-muted);
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 56px;
}
.stat { text-align: center; }
.stat-value { font-size: 2.5rem; font-weight: 900; color: var(--primary); letter-spacing: -0.03em; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== ADVANTAGES (o-nas style) ===== */
.advantages-list {
  display: flex; flex-direction: column; gap: 32px;
  max-width: 860px; margin: 56px auto 0;
}
.advantage-item {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 32px;
  transition: border-color 0.2s;
}
.advantage-item:hover { border-color: rgba(249,115,22,0.3); }
.advantage-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 10px; background: rgba(249,115,22,0.1);
  display: flex; align-items: center; justify-content: center;
}
.advantage-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.advantage-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.advantage-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.advantage-item p strong { color: var(--text-secondary); }

/* ===== CHECKLIST ===== */
.checklist {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 16px;
}
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9rem; color: var(--text-secondary);
}
.checklist li::before {
  content: '';
  flex-shrink: 0; margin-top: 5px;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.6s ease both; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 16px;
  display: flex; gap: 8px; justify-content: center; align-items: center;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* ===== ACTIVE NAV ===== */
.page-nav-link.active { color: var(--text) !important; }
