:root {
    --gold: #D4AF37;
    --gold-light: #f5e9c8;
    --gold-dark: #a8842a;
    --black: #14141a;
    --white: #ffffff;
    --grey-50: #fafafa;
    --grey-100: #f4f4f5;
    --grey-200: #e4e4e7;
    --grey-400: #a1a1aa;
    --grey-600: #52525b;
    --grey-800: #27272a;
    --radius: 14px;
    --shadow: 0 1px 3px rgba(20,20,26,0.08), 0 1px 2px rgba(20,20,26,0.04);
    --shadow-lg: 0 12px 32px rgba(20,20,26,0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0; color: var(--black); background: var(--white); -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { margin: 0 0 10px; letter-spacing: -0.01em; }
.eyebrow { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-dark); font-weight: 700; margin-bottom: 10px; display:flex; align-items:center; gap:8px; }
.eyebrow::before { content:''; width:8px; height:8px; background:var(--gold); border-radius:50%; }

/* ===== Nav ===== */
.site-nav { position: sticky; top: 0; z-index: 100; background: rgba(20,20,26,0.97); backdrop-filter: blur(6px); }
.site-nav .container { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
.site-nav .logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 800; font-size: 18px; }
.site-nav .logo img { height: 34px; }
.site-nav .logo .dot { width: 9px; height: 9px; background: var(--gold); border-radius: 50%; }
.site-nav nav { display: flex; gap: 28px; }
.site-nav nav a { color: #d4d4d8; font-size: 14.5px; font-weight: 500; }
.site-nav nav a:hover, .site-nav nav a.active { color: var(--gold); }
.site-nav .nav-cta { background: var(--gold); color: var(--black); padding: 10px 18px; border-radius: 8px; font-weight: 700; font-size: 14px; }
.nav-hamburger { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }
.mobile-nav { display: none; flex-direction: column; background: var(--black); padding: 6px 20px 20px; gap: 4px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: #d4d4d8; padding: 10px 0; font-size: 15px; border-top: 1px solid #2a2a33; }
@media (max-width: 820px) { .site-nav nav, .site-nav .nav-cta { display: none; } .nav-hamburger { display: block; } }

/* ===== Hero ===== */
.hero { background: var(--black); color: var(--white); padding: 90px 0 100px; position: relative; overflow: hidden; }
.hero::after { content:''; position:absolute; right:-120px; top:-120px; width:420px; height:420px; background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%); }
.hero .container { position: relative; }
.hero h1 { font-size: 44px; max-width: 640px; line-height: 1.12; }
.hero p.lead { font-size: 17px; color: #cbd5e1; max-width: 520px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 9px; font-weight: 700; font-size: 14.5px; border: none; cursor: pointer; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 600px) { .hero h1 { font-size: 30px; } .hero { padding: 60px 0 70px; } }

/* ===== Sections ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--grey-50); }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.section-head h2 { font-size: 30px; }
.section-head p { color: var(--grey-600); font-size: 15.5px; }

/* ===== How it works ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.step-card .step-num { width: 38px; height: 38px; border-radius: 50%; background: var(--black); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 16px; }
.step-card h3 { font-size: 17px; }
.step-card p { color: var(--grey-600); font-size: 14px; margin: 0; }

/* ===== Fleet cards ===== */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.vehicle-card { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.15s, box-shadow 0.15s; }
.vehicle-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.vehicle-card .photo { width: 100%; height: 180px; object-fit: cover; background: var(--grey-100); }
.vehicle-card .photo-placeholder { width: 100%; height: 180px; background: var(--grey-100); display: flex; align-items: center; justify-content: center; color: var(--grey-400); font-size: 13px; }
.vehicle-card .body { padding: 18px; }
.vehicle-card .avail-chip { display: inline-block; background: #dcfce7; color: #15803d; font-size: 11.5px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.vehicle-card h3 { font-size: 17px; margin-bottom: 4px; }
.vehicle-card .price { font-size: 20px; font-weight: 800; color: var(--black); margin: 10px 0 14px; }
.vehicle-card .price span { font-size: 12px; font-weight: 500; color: var(--grey-600); }
.vehicle-card .btn { width: 100%; justify-content: center; }
.empty-fleet { text-align: center; color: var(--grey-600); padding: 40px 0; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.value-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.value-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--grey-800); }
.value-list li .check { flex-shrink:0; width:22px; height:22px; border-radius:50%; background:var(--gold-light); color:var(--gold-dark); display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; }

/* ===== Contact ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-form { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.contact-form label { display: block; font-size: 13px; font-weight: 700; margin: 14px 0 6px; color: var(--grey-800); }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 11px 13px; border: 1.5px solid var(--grey-200); border-radius: 8px; font-size: 14.5px; font-family: inherit;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-light); }
.contact-form button { margin-top: 20px; width: 100%; justify-content: center; }
.contact-info-card { background: var(--black); color: var(--white); border-radius: var(--radius); padding: 30px; }
.contact-info-card .info-row { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; font-size: 14.5px; color: #d4d4d8; }
.contact-info-card .info-row svg { flex-shrink: 0; color: var(--gold); }
.success-msg { background: #dcfce7; color: #15803d; padding: 12px 16px; border-radius: 8px; margin-bottom: 18px; font-size: 14px; }
.error-msg { background: #fee2e2; color: #b91c1c; padding: 12px 16px; border-radius: 8px; margin-bottom: 18px; font-size: 14px; }

/* ===== Footer ===== */
.site-footer { background: var(--black); color: #a1a1aa; padding: 46px 0 24px; font-size: 13.5px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 34px; margin-bottom: 34px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.site-footer a { color: #a1a1aa; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #26262e; padding-top: 20px; text-align: center; font-size: 12.5px; }

/* ===== Lang switch ===== */
.lang-switch-public a { color: #a1a1aa; font-size: 13px; }
.lang-switch-public a.active { color: var(--gold); font-weight: 700; }
