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

:root {
  --gold: #c9a227;
  --gold-light: #f0c040;
  --gold-dim: #a07c1a;
  --black: #080808;
  --dark: #0f0f0f;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --text: #e8e0d0;
  --text-muted: #8a8070;
  --border: rgba(201,162,39,0.2);
  --radius: 12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.gold-text { color: var(--gold); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(8,8,8,0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-logo img { height: 38px; width: 38px; object-fit: contain; }

.nav-logo span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  transition: color var(--transition);
}

.nav-links a:hover, .nav-links a.nav-active { color: var(--gold); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
  font-size: 0.9rem !important;
  transition: opacity var(--transition), transform var(--transition) !important;
}

.btn-gold:hover { opacity: 0.88; transform: translateY(-1px); color: var(--black) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover, .mobile-link.gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(201,162,39,0.3);
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,162,39,0.5);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  padding: 13px 32px;
  border-radius: 8px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-transform: uppercase;
}

.btn-outline:hover { background: var(--gold); color: var(--black); }

.btn-full { width: 100%; text-align: center; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 10px;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-whatsapp svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-whatsapp:hover { opacity: 0.9; transform: translateY(-2px); }

/* ===== HOMEPAGE HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(201,162,39,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 70% at 10% 50%, rgba(201,162,39,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #080808 0%, #0c0c0c 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1, .page-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.page-hero-short { min-height: 45vh; }

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,162,39,0.07) 0%, transparent 70%),
    linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
}

.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero .container { position: relative; z-index: 2; width: 100%; }

.page-hero-content {
  max-width: 640px;
}

.page-hero-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 520px;
}

/* ===== SECTIONS ===== */
.section { padding: 100px 24px; }
.section-dark { background: var(--dark2); }

.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SERVICES GRID (homepage) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(201,162,39,0.55);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.45);
}

.service-card:hover::before { opacity: 1; }

.sc-icon { font-size: 2.2rem; margin-bottom: 12px; }

.sc-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.8;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.sc-highlight {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 16px;
}

.sc-arrow {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.service-card:hover .sc-arrow { opacity: 1; transform: translateX(0); }

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.why-item:hover { border-color: rgba(201,162,39,0.4); }

.why-icon { font-size: 2rem; margin-bottom: 14px; }

.why-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.why-item p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover { border-color: rgba(201,162,39,0.5); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }

.card-icon { font-size: 2rem; margin-bottom: 16px; }

.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }

.card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== PRICE HERO (ridic.html) ===== */
.price-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.price-box {
  text-align: center;
  padding: 48px 32px;
  background: rgba(201,162,39,0.06);
  border: 2px solid var(--gold);
  border-radius: 16px;
}

.price-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}

.price-note {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

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

.vs-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.vs-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.vs-value small { display: block; font-size: 0.8rem; font-weight: 400; margin-top: 4px; color: var(--text-muted); }

.vs-value.bad { color: #e55; }
.vs-value.good { color: var(--gold); }

.vs-sep {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== COMMISSION HERO (bolt-food.html) ===== */
.commission-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.comm-box {
  text-align: center;
  padding: 48px 40px;
  background: rgba(201,162,39,0.06);
  border: 2px solid var(--gold);
  border-radius: 16px;
  min-width: 220px;
}

.comm-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.comm-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 8px;
}

.comm-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.comm-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cs-item {
  padding: 24px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--transition);
}

.cs-item:hover { border-color: rgba(201,162,39,0.4); }

.cs-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.cs-label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* ===== REQUIREMENTS ===== */
.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.req-item:hover { border-color: rgba(201,162,39,0.35); }

.req-check {
  min-width: 32px;
  height: 32px;
  background: rgba(201,162,39,0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

.req-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 3px;
}

.req-item span { font-size: 0.82rem; color: var(--text-muted); }

/* ===== DOCS GRID (ridic.html) ===== */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.doc-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
  width: 100%;
}

.doc-item:hover { border-color: rgba(201,162,39,0.4); }

.doc-num {
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-item strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 3px; }
.doc-item span { font-size: 0.82rem; color: var(--text-muted); }

/* ===== PROCESS LIST (ridic.html) ===== */
.process-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(201,162,39,0.1);
  position: relative;
}

.process-item-last { border-bottom: none; }

.process-num {
  min-width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background var(--transition), border-color var(--transition);
}

.process-num.gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  border-color: transparent;
}

.process-item:hover .process-num { background: rgba(201,162,39,0.18); border-color: rgba(201,162,39,0.45); }
.process-item:hover .process-num.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

.process-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.process-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.process-sublist {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.process-sublist li {
  font-size: 0.87rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.process-sublist li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.process-note {
  font-size: 0.78rem;
  color: rgba(138,128,112,0.7);
  font-style: italic;
}

/* ===== UPFRONT COSTS (pronajem.html) ===== */
.upfront-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.upfront-item {
  padding: 32px 28px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}

.upfront-item:hover {
  border-color: rgba(201,162,39,0.5);
  transform: translateY(-3px);
}

.upfront-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.upfront-icon { font-size: 2rem; }

.upfront-amount {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.upfront-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.upfront-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.upfront-note {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Weekly fee box */
.weekly-fee-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: rgba(201,162,39,0.05);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.wf-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.wf-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }

.wf-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.wf-left h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.wf-left p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
}

.wf-price {
  text-align: right;
  flex-shrink: 0;
}

.wf-amount {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.wf-per {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 8px;
}

.wf-note {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

.installment-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(201,162,39,0.05);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.installment-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }

.installment-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.installment-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== COSTS GRID (ridic.html) ===== */
.costs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.cost-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.cost-item:hover { border-color: rgba(201,162,39,0.4); }

.cost-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cost-item strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 5px; }
.cost-item span { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CONCEPT GRID (odkup.html) ===== */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.concept-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.concept-item:hover { border-color: rgba(201,162,39,0.4); }

.concept-num {
  min-width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.concept-body p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ===== CONDITION BOX (odkup.html) ===== */
.condition-box {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 40px;
  background: rgba(201,162,39,0.06);
  border: 2px solid rgba(201,162,39,0.4);
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.condition-icon { font-size: 2.5rem; flex-shrink: 0; }

.condition-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.condition-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* ===== STEPS ===== */
.steps {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

.step-arrow { font-size: 1.4rem; color: var(--gold); opacity: 0.35; flex-shrink: 0; }

/* ===== CTA ===== */
.cta-section { padding: 80px 24px; }

.cta-box {
  text-align: center;
  padding: 72px 40px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,162,39,0.07), transparent 70%),
    var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.cta-box p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT CHANNELS ===== */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--dark2);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.channel-wa { border-color: rgba(37,211,102,0.3); }
.channel-wa::before { background: radial-gradient(ellipse at 0% 0%, rgba(37,211,102,0.07), transparent 60%); }
.channel-wa:hover { border-color: rgba(37,211,102,0.6); }

.channel-phone { border-color: rgba(201,162,39,0.3); }
.channel-phone::before { background: radial-gradient(ellipse at 0% 0%, rgba(201,162,39,0.07), transparent 60%); }
.channel-phone:hover { border-color: rgba(201,162,39,0.6); }

.channel-fb { border-color: rgba(66,103,178,0.35); }
.channel-fb::before { background: radial-gradient(ellipse at 0% 0%, rgba(66,103,178,0.07), transparent 60%); }
.channel-fb:hover { border-color: rgba(66,103,178,0.6); }

.channel-card:hover::before { opacity: 1; }

.channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.channel-wa .channel-icon { background: rgba(37,211,102,0.15); color: #25d366; }
.channel-wa .channel-icon svg { width: 26px; height: 26px; }
.channel-phone .channel-icon { background: rgba(201,162,39,0.12); }
.channel-fb .channel-icon { background: rgba(66,103,178,0.15); color: #4267b2; }
.channel-fb .channel-icon svg { width: 22px; height: 22px; }

.channel-body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.channel-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.channel-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.channel-value {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.channel-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
  position: relative;
  z-index: 1;
}

.channel-card:hover .channel-arrow { opacity: 1; transform: translateX(0); }

/* ===== FORM WRAPPER ===== */
.form-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-form-new {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-block-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Service picker */
.service-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sp-option { cursor: pointer; }
.sp-option input { display: none; }

.sp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 10px;
  transition: border-color var(--transition), background var(--transition);
}

.sp-option:hover .sp-card {
  border-color: rgba(201,162,39,0.4);
  background: rgba(201,162,39,0.05);
}

.sp-option input:checked + .sp-card {
  border-color: var(--gold);
  background: rgba(201,162,39,0.1);
  box-shadow: 0 0 0 1px rgba(201,162,39,0.3);
}

.sp-icon { font-size: 1.3rem; flex-shrink: 0; }

.sp-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

/* Form fields grid */
.form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.btn-submit-big {
  padding: 16px 32px;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  padding: 12px 15px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a227' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}

.form-group select option { background: var(--dark2); color: var(--text); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: rgba(52,211,84,0.1);
  border: 1px solid rgba(52,211,84,0.3);
  border-radius: 8px;
  color: #34d354;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-success.show { display: block; }

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.contact-item a { color: var(--text-muted); transition: color var(--transition); }
.contact-item a:hover { color: var(--gold); }
.ci-icon { font-size: 1.15rem; }

.service-quick-links { margin-top: 28px; }

.service-quick-links p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.quick-link {
  display: block;
  padding: 11px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.quick-link:hover {
  border-color: rgba(201,162,39,0.4);
  color: var(--gold);
  background: rgba(201,162,39,0.05);
}

/* ===== FOOTER ===== */
#footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 28px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-logo img { height: 34px; width: 34px; object-fit: contain; }

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 24px;
  font-style: italic;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.83rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-copy { color: rgba(138,128,112,0.45); font-size: 0.76rem; }

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .price-hero { grid-template-columns: 1fr; }
  .commission-hero { grid-template-columns: 1fr; }
  .comm-box { width: 100%; min-width: auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .req-grid { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .concept-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .upfront-grid { grid-template-columns: 1fr; }
  .weekly-fee-box { flex-direction: column; align-items: flex-start; }
  .wf-price { text-align: left; }
  .installment-box { flex-direction: column; gap: 12px; }
  .doc-item:last-child:nth-child(odd) { grid-column: auto; max-width: none; }
  .costs-grid { grid-template-columns: 1fr; }
  .condition-box { flex-direction: column; gap: 16px; padding: 28px 24px; }

  .steps {
    flex-direction: column;
    align-items: stretch;
  }

  .step { max-width: none; }
  .step-arrow { transform: rotate(90deg); text-align: center; }
}

@media (max-width: 640px) {
  .section { padding: 72px 20px; }
  .page-hero { padding: 100px 20px 64px; }
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .comm-stats { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .price-vs { flex-direction: column; gap: 16px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 80%; height: 1px; }
  .contact-form-new { padding: 28px 20px; }
  .service-picker { grid-template-columns: 1fr; }
  .form-fields { grid-template-columns: 1fr; }
}

/* ===== VOZIDLA PAGE ===== */
.voz-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.voz-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.voz-filter-btn {
  background: transparent;
  border: 1px solid #333;
  color: #aaa;
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}

.voz-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.voz-filter-btn.active { background: var(--gold); border-color: var(--gold); color: #000; }

.voz-count {
  color: #555;
  font-size: .85rem;
}

/* vehicle card as anchor */
.voz-card {
  display: flex;
  flex-direction: column;
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.voz-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(201,162,39,.14);
  transform: translateY(-3px);
}

.voz-card.voz-unavail { opacity: .65; }

.voz-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #0a0a0a;
  overflow: hidden;
}

.voz-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}

.voz-card:hover .voz-img { transform: scale(1.04); }

.voz-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.voz-type-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.voz-type-badge.pronajem { background: rgba(201,162,39,.9); color: #000; }
.voz-type-badge.odkup    { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }

.voz-badge-unavail {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.voz-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.voz-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.voz-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.voz-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.voz-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: #888;
  font-size: .82rem;
}

.voz-specs-row span::before { content: ''; }

.voz-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.voz-badges span {
  background: rgba(201,162,39,.1);
  border: 1px solid rgba(201,162,39,.3);
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 2px 8px;
  border-radius: 20px;
}

.voz-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.voz-price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.voz-price-lbl {
  font-size: .75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.voz-price-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
}

.voz-detail-link {
  margin-top: auto;
  padding-top: 8px;
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: letter-spacing .2s;
}

.voz-card:hover .voz-detail-link { letter-spacing: .08em; }

/* ===== VOZIDLO DETAIL PAGE ===== */
.vd-back-bar {
  background: #0d0d0d;
  border-bottom: 1px solid #1a1a1a;
  padding: 14px 0;
}

.vd-back {
  color: #888;
  font-size: .88rem;
  text-decoration: none;
  transition: color .2s;
}

.vd-back:hover { color: var(--gold); }

.vd-section { padding-top: 48px; }

.vd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* gallery reuses existing .vc-* classes, add sizing */
.vd-gallery .vd-main-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #0a0a0a;
}

.vd-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-gallery .vc-thumbs {
  margin-top: 8px;
  border-radius: 8px;
  overflow: hidden;
}

/* right column */
.vd-header { margin-bottom: 20px; }

.vd-type-badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.vd-type-badge.pronajem { background: rgba(201,162,39,.2); color: var(--gold); border: 1px solid rgba(201,162,39,.4); }
.vd-type-badge.odkup    { background: rgba(255,255,255,.08); color: #ccc; border: 1px solid #333; }

.vd-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.1;
}

.vd-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.vd-specs { margin-bottom: 16px; }
.vd-desc  { margin-bottom: 20px; }

.vd-options-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 12px;
}

.vd-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vd-option-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s;
}

.vd-option-card:hover { border-color: var(--gold); }

.vd-opt-icon { font-size: 1.6rem; }

.vd-option-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.vd-info-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0 8px;
}

.vd-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid #1e1e1e;
}

.vd-info-row:last-child { border-bottom: none; }

.vd-info-lbl {
  font-size: .8rem;
  color: #777;
}

.vd-info-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #ccc;
}

.vd-info-val.gold { color: var(--gold); }

.vd-option-card p {
  color: #888;
  font-size: .82rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.vd-opt-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.vd-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .88rem;
  padding: 9px 14px;
}

.vd-wa svg { width: 16px; height: 16px; }

.vd-more {
  display: block;
  text-align: center;
  font-size: .82rem;
  padding: 8px 14px;
}

@media (max-width: 960px) {
  .vd-layout { grid-template-columns: 1fr; gap: 32px; }
  .vd-options { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .vd-options { grid-template-columns: 1fr; }
  .vd-title { font-size: 1.6rem; }
}

/* ===== VEHICLE LISTINGS (pronajem / odkup public cards) ===== */
.vehicle-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.vehicle-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}

.vehicle-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201,162,39,.12);
}

.vehicle-card.vc-unavail {
  opacity: .7;
}

/* --- gallery --- */
.vc-gallery { position: relative; }

.vc-gallery-main {
  position: relative;
  aspect-ratio: 16/9;
  background: #0a0a0a;
  overflow: hidden;
}

.vc-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.vehicle-card:hover .vc-main-img { transform: scale(1.03); }

.vc-overlay-unavail {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-nav:hover { background: var(--gold); color: #000; }
.vc-prev { left: 8px; }
.vc-next { right: 8px; }

.vc-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.vc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background .2s;
}

.vc-dot.active { background: var(--gold); }

.vc-thumbs {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: #0a0a0a;
  overflow-x: auto;
  scrollbar-width: none;
}

.vc-thumbs::-webkit-scrollbar { display: none; }

.vc-thumb {
  width: 56px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: .5;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: opacity .2s, border-color .2s;
}

.vc-thumb.active,
.vc-thumb:hover { opacity: 1; border-color: var(--gold); }

.vc-no-photo {
  aspect-ratio: 16/9;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}

/* --- body --- */
.vc-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.vc-top { display: flex; flex-direction: column; gap: 6px; }

.vc-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.vc-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.vc-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.vc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vc-badges span {
  background: rgba(201,162,39,.12);
  border: 1px solid rgba(201,162,39,.35);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 2px 9px;
  border-radius: 20px;
}

/* --- specs --- */
.vc-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #aaa;
  font-size: .82rem;
}

.spec-icon { font-size: .9rem; }

/* --- desc / footer --- */
.vc-desc {
  color: #888;
  font-size: .88rem;
  line-height: 1.55;
  margin: 0;
}

.vc-footer { margin-top: auto; padding-top: 4px; }

.vc-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  width: 100%;
  justify-content: center;
}

.vc-cta:hover { background: #1ebe5d; transform: translateY(-1px); }
.vc-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

.vc-unavail-msg {
  color: #888;
  font-size: .85rem;
  font-style: italic;
  text-align: center;
  padding: 8px 0;
}

/* --- empty state --- */
.vcg-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 20px;
  color: #555;
}

.vcg-empty-icon { font-size: 2.5rem; margin-bottom: 12px; }

/* --- responsive --- */
@media (max-width: 860px) {
  .vehicle-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .vc-title-row { flex-direction: column; gap: 4px; }
  .vc-body { padding: 16px 16px; }
}
