:root {
  --bg: #07111f;
  --bg-soft: #0b1b31;
  --panel: rgba(11, 27, 49, 0.72);
  --panel-strong: rgba(12, 34, 61, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --text: #eaf2ff;
  --muted: #a7bbd8;
  --accent: #f5a623;
  --accent-2: #23c483;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 166, 35, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(35, 196, 131, 0.12), transparent 26%),
    linear-gradient(180deg, #07111f 0%, #08182c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

img, svg {
  max-width: 100%;
  display: block;
}

.site-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(5, 12, 24, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #ffcc66);
  color: #0a1020;
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.28);
  flex: 0 0 auto;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text span {
  font-size: 1.1rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  padding: 0;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle:focus-visible,
.back-to-top:focus-visible,
.mobile-contact a:focus-visible {
  outline: 2px solid #f5a623;
  outline-offset: 2px;
}

.nav a {
  padding: 10px 14px;
  border: 1px solid transparent;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  padding: 34px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  padding: 20px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(35, 196, 131, 0.12);
  color: #aef3cf;
  border: 1px solid rgba(35, 196, 131, 0.24);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  line-height: 1.02;
  margin: 18px 0 14px;
  letter-spacing: -0.05em;
}

.hero-lead {
  color: #d6e4f7;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  position: relative;
  z-index: 6;
  pointer-events: auto;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ffbf4d);
  color: #0a1020;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent), #ffbf4d);
  color: #0a1020;
  border-color: rgba(245, 166, 35, 0.35);
}

.hero-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.24), transparent 70%);
  pointer-events: none;
}

.route-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.mini-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(8, 16, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-stat strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 18px 0 30px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2,
.content h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  letter-spacing: -0.04em;
}

.section-head p,
.content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  padding: 18px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 166, 35, 0.34);
}

.service-card h3 {
  margin: 14px 0 8px;
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.18), rgba(35, 196, 131, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.content p + p {
  margin-top: 12px;
}

.page-hero {
  padding: 34px 0 22px;
}

.page-hero-card {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.page-hero-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

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

.route-card {
  padding: 20px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.route-card h3 {
  margin: 0 0 8px;
}

.route-card p {
  margin: 0;
}

.floating-contact {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-pill {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease;
}

.contact-pill:hover {
  transform: translateX(4px);
}

.contact-whatsapp {
  background: linear-gradient(135deg, #25d366, #1fb354);
}

.contact-call {
  background: linear-gradient(135deg, var(--accent), #ffbf4d);
  color: #0a1020;
}

.contact-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  align-self: center;
}

.mobile-contact {
  display: none;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 18, 33, 0.92);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 45;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  padding: 24px 0 36px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 20px;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.site-footer a {
  color: var(--text);
}

.route-lines path,
.route-lines circle,
.route-lines polyline {
  vector-effect: non-scaling-stroke;
}

.float {
  animation: float 5s ease-in-out infinite;
}

.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

.drive {
  stroke-dasharray: 10 10;
  animation: dash 3.5s linear infinite;
}

.fade-in {
  animation: fadeIn 0.8s ease both;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes dash {
  to { stroke-dashoffset: -80; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .content-blocks,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 20px, 1200px);
  }

  .section-head,
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
  }

  .brand {
    min-width: 0;
    gap: 10px;
    flex: 1 1 auto;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-text small {
    font-size: 0.68rem;
  }

  .brand-text span {
    font-size: 0.98rem;
    white-space: nowrap;
  }

  .nav-wrap {
    width: auto;
    margin-left: 0;
    flex: 0 0 auto;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: min(92vw, 320px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 12px;
    margin-top: 0;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 17, 31, 0.96);
    box-shadow: var(--shadow);
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 50;
  }

  .nav-wrap.open .nav {
    display: flex;
  }

  .hero-grid,
  .content-blocks,
  .service-grid,
  .routes,
  .route-stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 20px;
  }

  .floating-contact {
    display: none;
  }

  .mobile-contact {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    gap: 10px;
    z-index: 44;
    padding: 10px;
    background: rgba(5, 12, 24, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
  }

  .mobile-contact a {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-contact .contact-call-mobile {
    background: linear-gradient(135deg, var(--accent), #ffbf4d);
    color: #0a1020;
  }

  .mobile-contact svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .contact-label {
    display: none;
  }

  .back-to-top {
    right: 10px;
    bottom: 78px;
    width: 48px;
    height: 48px;
  }
}
