﻿:root {
  --ink: #18202b;
  --muted: #5b6573;
  --line: #dde3eb;
  --brand: #d72638;
  --brand-dark: #a81726;
  --gold: #f5b841;
  --green: #168a4a;
  --bg: #f7f9fc;
  --panel: #ffffff;
  --shadow: 0 18px 48px rgba(24, 32, 43, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}

.topbar .wrap,
.nav .wrap,
.section .wrap,
.footer .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  color: var(--brand);
  font-size: 24px;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: #2f3845;
  flex-wrap: wrap;
}

.menu a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
}

.btn.primary:hover {
  background: var(--brand-dark);
}

.btn.light {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

.btn.outline {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 18, 28, 0.86), rgba(12, 18, 28, 0.44), rgba(12, 18, 28, 0.18)),
    url("https://blogger.googleusercontent.com/img/a/AVvXsEiQMmGz23I_65Gqtsy11Oi8XOu8bYMVktOVSsJrSLpRQZ9PnRnbXO9zn9wW6svQchFKiuPPlZvrwwn4jvud1fobLgWBLNl3HQuyqKOIIUpn5aWKCO6gsfZRwi_gRcwBa6qSFeQrcE0HtyZrU76bPGTKQ6slSTagCEwrPYtW7hW4ybX5KxX21vzaSErprGx_=s1200") center/cover;
}

.hero .wrap {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 54px 18px 70px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 184, 65, 0.18);
  color: #ffe19b;
  border: 1px solid rgba(245, 184, 65, 0.45);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  line-height: 1.18;
  margin: 0 0 14px;
}

h1 {
  font-size: 50px;
  max-width: 760px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 14px;
}

.hero p {
  font-size: 19px;
  max-width: 660px;
  color: #eef3f8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.hero-points div,
.stat,
.card,
.rate,
.faq details,
.form-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-points div {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  padding: 13px 14px;
  font-weight: 800;
}

.section {
  padding: 64px 0;
}

.section.white {
  background: #fff;
}

.section.dark {
  background: #151d29;
  color: #fff;
}

.intro {
  max-width: 800px;
  margin-bottom: 28px;
}

.intro p {
  color: var(--muted);
  font-size: 17px;
}

.dark .intro p {
  color: #cad3dd;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(24, 32, 43, 0.06);
}

.card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.price {
  display: inline-flex;
  background: #fff4d8;
  color: #8a5c00;
  padding: 5px 9px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 12px;
}

.list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 7px 0 7px 26px;
  position: relative;
}

.list li::before {
  content: "";
  width: 7px;
  height: 13px;
  border: solid var(--green);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  position: absolute;
  left: 3px;
  top: 10px;
}

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

.stat {
  padding: 22px;
}

.stat strong {
  display: block;
  font-size: 28px;
  color: var(--brand);
}

.rate {
  padding: 20px;
}

.rate strong {
  font-size: 27px;
  color: var(--brand);
}

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

.route-list a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font-weight: 800;
  color: #2f3845;
}

.route-list a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.cta-band {
  background: var(--brand);
  color: #fff;
  padding: 42px 0;
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.faq details {
  padding: 16px 18px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.form-box {
  padding: 24px;
  box-shadow: var(--shadow);
}

label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 13px;
  font: inherit;
}

textarea {
  min-height: 110px;
}

.footer {
  background: #0f1621;
  color: #d9e0e8;
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
  gap: 28px;
}

.footer h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}

.footer a {
  display: block;
  color: #d9e0e8;
  margin: 9px 0;
}

.footer a:hover {
  color: #fff;
}

.footer .footer-badge {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 5px 9px;
  border: 1px solid rgba(245, 184, 65, 0.45);
  border-radius: 999px;
  color: #ffe19b;
  font-size: 13px;
  font-weight: 800;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer small {
  color: #aeb8c4;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 18px;
  color: #aeb8c4;
  font-size: 14px;
}

.page-hero {
  background: #151d29;
  color: #fff;
  padding: 70px 0;
}

.page-hero .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.breadcrumb {
  color: #ffe19b;
  font-weight: 800;
  margin-bottom: 10px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 860px) {
  .nav .wrap {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .menu {
    gap: 12px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-points,
  .grid.three,
  .grid.two,
  .stats,
  .route-list,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 46px 0;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  }

  .mobile-cta a {
    padding: 13px 8px;
    text-align: center;
    font-weight: 900;
    color: #fff;
  }

  .mobile-cta a:first-child {
    background: var(--brand);
  }

  .mobile-cta a:last-child {
    background: var(--green);
  }

  body {
    padding-bottom: 50px;
  }
}
