:root {
  --bg: #0b0f19;
  --panel: #131a29;
  --panel-soft: rgba(19, 26, 41, 0.88);
  --text: #f5f7fb;
  --muted: #b8c0d4;
  --gold: #d4af37;
  --gold-dark: #b89328;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  --success: #7dd3a8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #0b0f19 0%, #111827 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 6vw;
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

main section,
footer {
  padding: 5rem 6vw;
}

.hero {
  min-height: calc(92vh - 80px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(11, 15, 25, 0.76), rgba(11, 15, 25, 0.88)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.request-copy h2,
.contact-section h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-heading h2,
.request-copy h2,
.contact-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.hero p,
.section-heading p,
.request-copy p,
.contact-text,
.highlight-card p,
.process-card p,
.fleet-card p {
  color: var(--muted);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.gold {
  background: var(--gold);
  color: #111;
}

.btn.gold:hover,
.btn.gold:focus-visible {
  background: var(--gold-dark);
}

.btn.outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn.outline:hover,
.btn.outline:focus-visible {
  background: rgba(212, 175, 55, 0.12);
}

.highlights-section,
.process-grid,
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.highlight-card,
.process-card,
.fleet-card,
.request-form,
.contact-box {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.highlight-card,
.process-card,
.fleet-card {
  padding: 1.5rem;
}

.highlight-card h3,
.process-card h3,
.fleet-card h3 {
  margin-bottom: 0.7rem;
}

.fleet-section .section-heading,
.process-section .section-heading {
  margin-bottom: 2rem;
}

.fleet-card {
  position: relative;
  overflow: hidden;
  padding: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
}

.fleet-card.featured {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-4px);
}

.fleet-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

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

.fleet-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: 1.5rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fleet-card ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-inline: 1.5rem;
}

.fleet-card h3,
.fleet-card p {
  padding-inline: 1.5rem;
}

.fleet-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1.25rem 1.5rem 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fleet-action:hover,
.fleet-action:focus-visible {
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.fleet-card li::before {
  content: "•";
  color: var(--gold);
  margin-right: 0.45rem;
}

.process-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.request-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.request-form {
  padding: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
}

label span {
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(11, 15, 25, 0.72);
  color: var(--text);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(184, 192, 212, 0.7);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(212, 175, 55, 0.28);
  border-color: rgba(212, 175, 55, 0.4);
}

.full-width {
  margin-top: 1rem;
}

.checkbox-line {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: flex-start;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.form-feedback {
  margin-top: 1rem;
  min-height: 1.5rem;
  color: var(--success);
  font-weight: 600;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-box {
  padding: 1.5rem;
}

.contact-line {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.contact-line a:hover,
.contact-line a:focus-visible {
  color: var(--gold);
}

footer {
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
}

.footer-content {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.55rem;
}

.footer-brand {
  color: var(--gold);
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(37, 211, 102, 0.34);
}

.whatsapp-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .request-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  main section,
  footer {
    padding: 4rem 1.25rem;
  }

  .hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }
}
