/* ============ VAGAR — Easy Rental ============ */
:root {
  --bg: #07070a;
  --bg-2: #0e0d10;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(214, 162, 74, 0.18);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #f4ecdc;
  --muted: #a39a89;
  --gold: #d6a24a;
  --gold-2: #f0c878;
  --gold-deep: #8a6320;
  --grad-gold: linear-gradient(135deg, #f0c878 0%, #d6a24a 50%, #8a6320 100%);
  --grad-text: linear-gradient(180deg, #fff6e1 0%, #d6a24a 100%);
  --shadow-gold: 0 18px 40px -18px rgba(214, 162, 74, 0.55);
  --shadow-soft: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
  --radius: 18px;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(214,162,74,0.12), transparent 60%),
    radial-gradient(900px 600px at 0% 30%, rgba(214,162,74,0.06), transparent 60%),
    var(--bg);
}

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

/* ===== Background orbs ===== */
.bg-orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.orb-1 { width: 520px; height: 520px; background: #d6a24a; top: -160px; right: -120px; }
.orb-2 { width: 420px; height: 420px; background: #8a6320; bottom: -120px; left: -120px; animation-delay: -6s; }
.orb-3 { width: 320px; height: 320px; background: #f0c878; top: 40%; left: 45%; opacity: 0.18; animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 4vw, 56px);
  backdrop-filter: blur(14px);
  background: rgba(7,7,10,0.65);
  border-bottom: 1px solid var(--border-soft);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 200px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 22px; letter-spacing: 0.08em;
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name small {
  font-family: 'Inter', sans-serif; font-weight: 400;
  font-size: 10px; letter-spacing: 0.32em; color: var(--gold);
  margin-top: 4px; text-transform: uppercase;
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 14px; color: var(--muted); font-weight: 500;
  letter-spacing: 0.04em; position: relative; transition: color .25s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  height: 1px; width: 0; background: var(--gold); transition: width .3s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-switch button {
  background: none; border: none; color: var(--muted);
  font-family: inherit; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; cursor: pointer; padding: 6px 8px;
  transition: color .2s;
}
.lang-switch button.active { color: var(--gold); }
.lang-switch button:hover { color: var(--text); }
.lang-switch .divider { color: var(--border-soft); }

/* ===== Layout helpers ===== */
main { position: relative; z-index: 1; }
section { max-width: var(--container); margin: 0 auto; padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 40px); }

/* ===== Hero ===== */
.hero {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center;
  padding-top: clamp(50px, 8vw, 90px);
  padding-bottom: clamp(60px, 10vw, 120px);
}
.hero-inner { display: flex; flex-direction: column; gap: 28px; }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(214, 162, 74, 0.08);
  border: 1px solid var(--border);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 600;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(214,162,74,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(214,162,74,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(214,162,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,162,74,0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.05; letter-spacing: -0.02em;
}
.hero-title .line {
  display: block; opacity: 0; transform: translateY(20px);
  animation: lineUp .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: .15s; }
.hero-title .line:nth-child(2) { animation-delay: .35s; }
.hero-title .line:nth-child(3) { animation-delay: .55s; }
.hero-title .accent {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}

.sub {
  color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.125rem);
  max-width: 540px;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  background: var(--grad-gold);
  color: #1a1206; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: var(--shadow-gold);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -18px rgba(214,162,74,0.7); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary svg { transition: transform .25s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary.small { padding: 12px 22px; font-size: 14px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 22px; border-radius: 999px;
  border: 1px solid var(--border-soft);
  color: var(--text); font-weight: 500;
  transition: border-color .25s, background .25s;
}
.btn-ghost:hover { border-color: var(--gold); background: var(--surface); }

.stats {
  display: flex; gap: 36px; margin-top: 12px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold-2);
}
.stat span { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* Hero art */
.hero-art { display: flex; justify-content: center; }
.card-glass {
  width: 100%; max-width: 560px; aspect-ratio: 5/4;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 28px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  animation: floaty 6s ease-in-out infinite;
}
.card-glass::before {
  content: ''; position: absolute; inset: -1px; border-radius: 28px;
  background: linear-gradient(135deg, rgba(214,162,74,0.5), transparent 40%, transparent 60%, rgba(214,162,74,0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px; pointer-events: none;
}
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.car-svg { width: 100%; height: auto; filter: drop-shadow(0 30px 30px rgba(0,0,0,.5)); }
.speed-lines {
  position: absolute; left: 0; bottom: 60px; width: 60%;
  display: flex; flex-direction: column; gap: 10px;
}
.speed-lines i {
  display: block; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  animation: dash 1.6s linear infinite;
}
.speed-lines i:nth-child(1) { width: 60%; }
.speed-lines i:nth-child(2) { width: 80%; animation-delay: .2s; }
.speed-lines i:nth-child(3) { width: 50%; animation-delay: .4s; }
@keyframes dash {
  0% { transform: translateX(-100%); opacity: 0; }
  20%, 80% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* ===== Section heads ===== */
.section-head { text-align: center; margin-bottom: 60px; }
.kicker {
  display: inline-block; font-size: 12px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-head h2, .about h2, .contact h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em;
}

/* ===== Features ===== */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.feature {
  padding: 32px 26px; border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  transition: transform .35s ease, border-color .35s, background .35s;
  position: relative; overflow: hidden;
}
.feature::after {
  content: ''; position: absolute; inset: auto -40% -60% auto;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,162,74,0.18), transparent 70%);
  opacity: 0; transition: opacity .35s;
}
.feature:hover { transform: translateY(-6px); border-color: var(--border); background: var(--surface-2); }
.feature:hover::after { opacity: 1; }
.feature .icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(214,162,74,0.1);
  color: var(--gold-2);
  margin-bottom: 18px;
}
.feature .icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: 1.25rem; margin-bottom: 8px;
}
.feature p { color: var(--muted); font-size: 0.95rem; }

/* ===== About ===== */
.about-card {
  max-width: 820px; margin: 0 auto; text-align: center;
  padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(160deg, rgba(214,162,74,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.about-card p {
  color: var(--muted); font-size: 1.05rem;
  max-width: 620px; margin: 22px auto 28px;
}

/* ===== Contact ===== */
.contact { text-align: center; }
.contact p { color: var(--muted); margin: 14px 0 24px; }
.mail {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
  transition: opacity .25s;
}
.mail:hover { opacity: 0.85; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 30px clamp(20px, 4vw, 56px);
  margin-top: 40px;
  position: relative; z-index: 1;
  background: rgba(7,7,10,0.6);
}
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; }
.footer-brand img { width: 28px; height: 28px; border-radius: 6px; }
.footer small { color: var(--muted); font-size: 13px; }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; }
  .card-glass { max-width: 440px; }
  .nav { display: none; }
}
@media (max-width: 540px) {
  .header { padding: 14px 18px; }
  .brand-name { font-size: 18px; }
  .stats { gap: 22px; }
  .stat strong { font-size: 1.4rem; }
  .cta-row { width: 100%; }
  .btn-primary, .btn-ghost { flex: 1; justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Social icons */
.socials{
  list-style:none;
  padding:0;
  margin:1.6rem 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:.85rem;
  justify-content:center;
}
.socials a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:50%;
  color:var(--gold, #d6a24a);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(214,162,74,.35);
  transition:transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.socials a:hover{
  transform:translateY(-3px);
  color:#0a0a0a;
  background:linear-gradient(135deg,#f0c46a,#d6a24a);
  box-shadow:0 10px 24px -10px rgba(214,162,74,.7);
}
