:root {
  --ink: #0b1b33;
  --accent: #ff5a3c;
  --accent-dark: #e8432a;
  --gold: #ffc24b;
  --sky: #0e2a52;
  --soft: #f4f7fb;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(11, 27, 51, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e6ecf5;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark {
  font-size: 26px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border-radius: 14px;
  color: #fff;
}
.brand-name { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; }
.brand-name span { color: var(--accent); }
.nav { display: flex; gap: 26px; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--accent); }
.btn {
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 800;
  border-radius: 999px;
  font-size: 15px;
  padding: 12px 22px;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-cta { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(255,90,60,.4); }
.btn-cta:hover { background: var(--accent-dark); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; color: #fff; }
.hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(8,20,40,.55), rgba(8,20,40,.65)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&q=80") center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(1200px 500px at 80% 20%, rgba(255,90,60,.35), transparent 60%);
}
.hero-content {
  position: relative;
  padding: 130px 0 110px;
  max-width: 780px;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero-title span {
  background: linear-gradient(90deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub { font-size: 1.2rem; margin: 22px 0 34px; max-width: 560px; opacity: .95; }
.search {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background: #fff;
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.search input {
  flex: 1;
  min-width: 140px;
  border: 1px solid #e6ecf5;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
}
.search input:focus { outline: 2px solid var(--accent); }
.btn-search { background: var(--ink); color: #fff; padding: 14px 26px; }
.btn-search:hover { background: var(--accent); }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-stats strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.hero-stats span { font-size: 14px; opacity: .85; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.05;
}
.section-title span { color: var(--accent); }
.section-dark .section-title span { color: var(--gold); }
.section-sub { margin-top: 10px; font-size: 1.05rem; opacity: .8; margin-bottom: 40px; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.card:hover { transform: translateY(-6px); }
.card-img { width: 100%; height: 170px; object-fit: cover; display: block; }
.card-body { padding: 18px; }
.card-body h3 { font-size: 1.3rem; font-weight: 800; }
.card-body .route { color: #667; font-size: 14px; margin: 4px 0 12px; }
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price { font-size: 1.5rem; font-weight: 900; color: var(--accent); }
.price small { font-size: 13px; color: #667; font-weight: 600; }
.tag {
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
}

/* ---------- Offices ---------- */
.offices { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.office {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid #e6ecf5;
}
.office h3 { font-size: 1.2rem; font-weight: 800; }
.office p { margin: 6px 0; color: #445; }
.office a { color: var(--accent); font-weight: 700; text-decoration: none; }
.office a:hover { text-decoration: underline; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.contact .section-title { color: #fff; }
.contact-info p { margin: 10px 0; opacity: .95; }
.phone-big {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  margin: 14px 0;
}
.phone-big:hover { color: var(--gold); }
.reg { font-size: 13px; opacity: .85; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.18);
  color: #fff;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  transition: background .15s;
}
.socials a:hover { background: var(--ink); }
.contact-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #e6ecf5;
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--accent); }
.contact-form .btn-cta { justify-self: start; }

/* ---------- Footer ---------- */
.footer { background: var(--sky); color: #fff; padding: 26px 0; font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; opacity: .9; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav { display: none; }
  .hero-content { padding: 90px 0; }
  .contact { grid-template-columns: 1fr; }
  .phone-big { font-size: 1.6rem; }
  .hero-stats { gap: 24px; }
}