/* Elite Rose Limo Luxury Transport LLC — Dubai */

:root {
  --green: #0b5c39;
  --green-dark: #063f27;
  --green-light: #0e7a4b;
  --gold: #c9a227;
  --gold-light: #e3c65c;
  --ink: #0b0f0d;
  --ink-soft: #141a17;
  --line: rgba(255, 255, 255, 0.1);
  --text: #e8ece9;
  --muted: #9aa5a0;
  --white: #ffffff;
  --radius: 14px;
  --wrap: 1200px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 .6em;
  color: var(--white);
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1.1em; color: var(--muted); }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .93rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a1405; }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-light); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-wa { background: #25d366; color: #04310f; }
.btn-wa:hover { background: #3ee07a; }

/* ---------- header ---------- */
.topbar {
  background: var(--green-dark);
  font-size: .82rem;
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar a:hover { color: var(--gold-light); }
.topbar-links { display: flex; gap: 1.4rem; align-items: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 15, 13, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}
.brand img { height: 38px; width: auto; }

.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: .3rem 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .22s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--gold); }

.has-drop { position: relative; }
.drop {
  position: absolute;
  top: calc(100% + .9rem);
  left: -1rem;
  min-width: 250px;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
  box-shadow: 0 22px 50px rgba(0,0,0,.5);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a {
  display: block;
  padding: .6rem .85rem;
  border-radius: 8px;
  font-size: .89rem;
}
.drop a::after { display: none; }
.drop a:hover { background: rgba(201,162,39,.12); color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: .7rem; }

.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .5rem .6rem;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  margin: 4px 0;
  transition: .25s;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 78% 12%, rgba(11,92,57,.42), transparent 62%),
    radial-gradient(680px 400px at 12% 82%, rgba(201,162,39,.13), transparent 65%),
    var(--ink);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-lead { font-size: clamp(1rem, 1.25vw, 1.12rem); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero-stats b {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1.1;
}
.hero-stats span { font-size: .82rem; color: var(--muted); }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  height: clamp(320px, 40vw, 500px);
  object-fit: cover;
  object-position: center 62%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
}
.hero-badge {
  position: absolute;
  left: -14px;
  bottom: -18px;
  background: var(--green);
  color: #fff;
  padding: .9rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.hero-badge b { display: block; font-family: var(--display); font-size: 1.25rem; color: var(--gold-light); }
.hero-badge span { font-size: .78rem; color: rgba(255,255,255,.8); }

/* ---------- sections ---------- */
section { padding: clamp(3.2rem, 6.5vw, 5.5rem) 0; }
.section-head { max-width: 46rem; margin-bottom: 2.8rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: 1.4rem; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(201,162,39,.42); }
.card h3 { margin-bottom: .5rem; }
.card p { margin-bottom: 0; font-size: .93rem; }
.card .ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: rgba(11,92,57,.34);
  border: 1px solid rgba(201,162,39,.26);
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.1rem;
  font-size: .86rem;
  font-weight: 600;
  color: var(--gold);
}
.card-link:hover { gap: .7rem; }

/* ---------- fleet ---------- */
.fleet-card {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, border-color .22s ease;
}
.fleet-card:hover { transform: translateY(-5px); border-color: rgba(201,162,39,.42); }
.fleet-img {
  aspect-ratio: 16 / 10;
  background: #fff;
  overflow: hidden;
}
.fleet-img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.fleet-body h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.fleet-cat { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.fleet-specs {
  display: flex;
  gap: 1.3rem;
  padding: .85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.fleet-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; }
.price b { font-family: var(--display); font-size: 1.5rem; color: var(--white); }
.price span { font-size: .8rem; color: var(--muted); }

/* ---------- split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.split img { border-radius: var(--radius); border: 1px solid var(--line); }
.ticks { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.ticks li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: .8rem;
  color: var(--muted);
  font-size: .95rem;
}
.ticks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(201,162,39,.15);
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
}

/* ---------- steps ---------- */
.step { position: relative; padding-top: 1rem; }
.step-num {
  font-family: var(--display);
  font-size: 3rem;
  color: rgba(201,162,39,.24);
  line-height: 1;
  margin-bottom: .5rem;
}

/* ---------- faq ---------- */
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-weight: 600;
  color: var(--white);
  position: relative;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: .4rem; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform .2s;
}
.faq[open] summary::after { content: "−"; }
.faq p { padding-bottom: 1.2rem; margin: 0; font-size: .94rem; }

/* ---------- cta band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, var(--green-dark), rgba(11,15,13,.9));
  padding: clamp(2.2rem, 4vw, 3.4rem);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 2rem;
  align-items: center;
}
.cta-band h2 { margin-bottom: .5rem; }
.cta-band p { margin-bottom: 0; color: rgba(255,255,255,.78); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; }

/* ---------- page hero ---------- */
.page-hero {
  padding: clamp(3rem, 6vw, 4.6rem) 0 clamp(2.2rem, 4vw, 3rem);
  background:
    radial-gradient(700px 340px at 70% 20%, rgba(11,92,57,.4), transparent 65%),
    var(--ink);
  border-bottom: 1px solid var(--line);
}
.crumb { font-size: .84rem; color: var(--muted); }
.crumb a:hover { color: var(--gold); }
.page-hero h1 { margin-bottom: .3rem; }
.page-hero p { max-width: 44rem; margin-bottom: 0; }

/* ---------- contact ---------- */
.info-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.info-item .ico {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(11,92,57,.34);
  border: 1px solid rgba(201,162,39,.26);
}
.info-item h4 { margin: 0 0 .2rem; font-family: var(--font); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.info-item p { margin: 0; color: var(--text); font-size: .96rem; }

form.contact-form { display: grid; gap: 1rem; }
.field label {
  display: block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 10px;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- footer ---------- */
.site-footer {
  background: #070a08;
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 5vw, 4rem) 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.site-footer h4 {
  font-family: var(--font);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: var(--muted); font-size: .92rem; }
.site-footer a:hover { color: var(--gold); }
.foot-logo { height: 40px; margin-bottom: 1.1rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.1rem; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: .2s;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .84rem;
  color: var(--muted);
}

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .cta-band { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-media { order: -1; }
}

@media (max-width: 760px) {
  .fleet-specs { gap: .9rem; font-size: .78rem; }
}

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 76px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-soft);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    transform: translateY(-120%);
    transition: transform .28s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
  }
  .nav-cta .btn-ghost { display: none; }
  .topbar-links { display: none; }
}

@media (max-width: 620px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .btn { white-space: nowrap; }
  .nav-cta .btn-gold { padding: .7rem 1rem; font-size: .85rem; }
  .site-header .wrap { gap: .75rem; }
  .brand img { height: 32px; }
  .topbar .wrap { min-height: 0; padding-block: .45rem; }
  .topbar span { font-size: .74rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}
