:root {
  --bg1: #f8fdff;
  --bg2: #eefbff;
  --card: #ffffff;
  --text: #163042;
  --muted: #66839a;
  --line: #dbe9f2;
  --cyan: #14b8d4;
  --cyan-dark: #0891b2;
  --hero1: #083344;
  --hero2: #0c4a6e;
  --hero3: #115e59;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg1), var(--bg2));
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 16px; }
.topbar { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.5); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.logo { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--cyan); color: white; box-shadow: 0 6px 18px rgba(20,184,212,.25); }
.brand-title { font-weight: 700; font-size: 20px; }
.brand-sub, .muted { color: var(--muted); font-size: 13px; }
.nav-links { display: flex; gap: 22px; }
.nav-links a { text-decoration: none; color: #567287; }
.nav-links a:hover { color: var(--cyan-dark); }
.lang-switch { display: flex; gap: 8px; }
.lang-btn, .primary-btn, .secondary-btn, .outline-btn { border: 0; border-radius: 14px; padding: 12px 16px; cursor: pointer; font-weight: 700; }
.lang-btn { background: white; color: #51687a; border: 1px solid var(--line); }
.lang-btn.active { background: var(--cyan); color: white; }
.hero { position: relative; overflow: hidden; color: white; background: linear-gradient(90deg, var(--hero1), var(--hero2), var(--hero3)); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,51,68,.95), rgba(12,74,110,.82), rgba(17,94,89,.55)); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; padding: 70px 16px; }
.hero h1 { font-size: 54px; line-height: 1.05; margin: 18px 0; max-width: 680px; }
.hero-text { color: #d9eef5; max-width: 650px; font-size: 18px; }
.pill { display: inline-block; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.16); backdrop-filter: blur(8px); }
.feature-card { margin: 22px 0; padding: 22px; border-radius: 24px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px); }
.primary-btn { display: inline-block; background: var(--cyan); color: white; text-decoration: none; }
.primary-btn:hover, .secondary-btn:hover { background: var(--cyan-dark); }
.secondary-btn { background: var(--cyan); color: white; }
.outline-btn { background: white; color: var(--text); border: 1px solid var(--line); }
.full { width: 100%; }
.hero-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-self: end; }
.hero-gallery img { width: 100%; height: 190px; object-fit: cover; border-radius: 24px; border: 1px solid rgba(255,255,255,.12); }
.section { padding: 34px 0; }
.filter-box, .info-card, .contact-card, .admin-box { background: var(--card); border-radius: 24px; box-shadow: 0 12px 28px rgba(15,23,42,.08); }
.filter-box { margin-top: 28px; padding: 20px; }
.filter-grid, .form-grid { display: grid; gap: 16px; }
.filter-grid { grid-template-columns: repeat(5, 1fr); }
.form-grid { grid-template-columns: repeat(2, 1fr); }
label { display: block; font-size: 14px; margin-bottom: 8px; }
input, textarea, select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; font: inherit; }
textarea { min-height: 110px; resize: vertical; }
.filter-actions, .admin-actions, .modal-actions, .footer-row, .section-head { display: flex; gap: 12px; align-items: center; }
.filter-actions { align-items: end; }
.section-head { justify-content: space-between; margin-bottom: 18px; }
.section-head h2, h3 { margin: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { overflow: hidden; background: white; border-radius: 24px; box-shadow: 0 12px 28px rgba(15,23,42,.08); }
.card-image-wrap { position: relative; }
.card-image { width: 100%; height: 260px; object-fit: cover; display: block; }
.card-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.badge { display: inline-block; padding: 8px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge.featured { background: rgba(255,255,255,.2); color: white; backdrop-filter: blur(8px); }
.badge.available { background: #0891b2; color: white; }
.badge.reserved { background: #5eead4; color: #123; }
.badge.sold { background: #dc2626; color: white; }
.card-body { padding: 18px; }
.card-title-row { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.card-title { font-size: 28px; font-weight: 700; }
.price { font-size: 28px; font-weight: 800; color: var(--cyan-dark); text-align: right; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; color: #597286; font-size: 14px; margin: 14px 0 16px; }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-card, .contact-card, .admin-box { padding: 24px; }
.contact-card { background: linear-gradient(135deg, #0891b2, #0c4a6e); color: white; }
.contact-card p { color: #e9fbff; }
.form-stack { display: grid; gap: 12px; }
.hidden { display: none !important; }
.admin-cars-list { display: grid; gap: 14px; margin-top: 18px; }
.admin-car-item { display: flex; justify-content: space-between; gap: 18px; align-items: center; border: 1px solid var(--line); border-radius: 20px; padding: 14px; }
.admin-car-main { display: flex; gap: 14px; align-items: center; }
.admin-car-main img { width: 130px; height: 90px; object-fit: cover; border-radius: 16px; }
.footer { margin-top: 24px; background: linear-gradient(90deg, var(--hero1), var(--hero2), var(--hero3)); color: white; }
.footer-row { justify-content: space-between; padding: 22px 16px; }
.modal { position: fixed; inset: 0; background: rgba(2,8,23,.55); display: grid; place-items: center; padding: 20px; }
.modal-content { width: min(900px, 100%); max-height: 92vh; overflow: auto; background: white; border-radius: 26px; padding: 22px; position: relative; }
.modal-content.large { width: min(1050px, 100%); }
.close-modal { position: absolute; top: 12px; right: 14px; border: 0; background: #0f172a; color: white; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; }
.car-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.car-detail-gallery { display: grid; gap: 12px; }
.car-detail-gallery img { width: 100%; border-radius: 20px; }
.detail-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; background: #f3f8fb; padding: 16px; border-radius: 20px; }
.image-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.preview-item { position: relative; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.preview-item img { width: 100%; height: 100px; object-fit: cover; }
.remove-image { position: absolute; top: 6px; right: 6px; border: 0; background: rgba(0,0,0,.65); color: white; border-radius: 999px; padding: 2px 8px; cursor: pointer; }
.full-span { grid-column: 1 / -1; }
@media (max-width: 980px) {
  .hero-grid, .two-cols, .car-detail-grid, .filter-grid, .cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .nav-links { display: none; }
  .form-grid { grid-template-columns: 1fr; }
}

.selection-card{background:#fff;border-radius:24px;box-shadow:0 12px 28px rgba(15,23,42,.08);overflow:hidden}
.selection-card img{width:100%;height:280px;object-fit:cover;display:block}
.selection-text{padding:20px}
.service-list{display:grid;gap:10px;padding-left:0;list-style:none;margin:14px 0 0}
.small-note{margin-top:14px}
.card.realized{border:1px dashed var(--line)}
.card.realized .price{font-size:22px}
