:root {
  --navy: #06172d;
  --blue: #0c315d;
  --blue-2: #164a80;
  --gold: #c9a24d;
  --gold-2: #efd27c;
  --white: #ffffff;
  --paper: #f4f7fb;
  --ink: #102033;
  --muted: #667385;
  --line: rgba(16, 32, 51, 0.12);
  --shadow: 0 24px 70px rgba(6, 23, 45, 0.18);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 38px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 162, 77, 0.22), transparent 30%),
    radial-gradient(circle at 88% 34%, rgba(72, 137, 205, 0.28), transparent 34%),
    linear-gradient(135deg, #061225 0%, #0c315d 57%, #06172d 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 460px;
  height: 460px;
  right: -180px;
  top: 120px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero::after {
  width: 220px;
  height: 220px;
  left: -75px;
  bottom: 70px;
  background: rgba(201, 162, 77, 0.12);
  filter: blur(4px);
}

.nav {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #111827;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 42px;
  align-items: center;
  padding: 50px 0 88px;
}

.tag,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(201, 162, 77, 0.13);
  border: 1px solid rgba(201, 162, 77, 0.28);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.subtitle {
  max-width: 700px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.primary {
  color: #101827;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 36px rgba(201, 162, 77, 0.25);
}

.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.dark {
  color: var(--white);
  background: var(--navy);
}

.hero-panel {
  position: relative;
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.26);
}

.panel-title {
  position: relative;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 26px;
}

.panel-line {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-line span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.panel-line strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.section {
  padding: 88px 0;
}

.intro {
  padding-top: 0;
  margin-top: -58px;
  position: relative;
  z-index: 3;
}

.intro-card,
.contact-card {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.intro-card .section-kicker,
.contact-card .section-kicker,
.section-head .section-kicker {
  color: var(--blue);
  background: rgba(12, 49, 93, 0.08);
  border-color: rgba(12, 49, 93, 0.14);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-head {
  margin-bottom: 42px;
}

.center {
  text-align: center;
  display: grid;
  justify-items: center;
}

.section-head p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted);
}

.light,
.light p:not(.section-kicker) {
  color: var(--white);
}

.light .section-kicker {
  color: var(--gold-2);
  background: rgba(201, 162, 77, 0.12);
  border-color: rgba(201, 162, 77, 0.25);
}

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

.service-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(6, 23, 45, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(6, 23, 45, 0.13);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 16px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(239, 210, 124, 0.55), rgba(201, 162, 77, 0.22));
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--muted);
}

.vehicles {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 162, 77, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

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

.vehicle-card {
  padding: 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.image-box {
  min-height: 320px;
  padding: 24px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.image-box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.vehicle-card h3 {
  margin-top: 18px;
  text-align: center;
  font-size: 1.4rem;
}

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

.city-card {
  min-height: 140px;
  padding: 26px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 20px 54px rgba(6, 23, 45, 0.14);
  font-weight: 900;
  font-size: 1.18rem;
}

.contact {
  background: linear-gradient(180deg, var(--paper), #ffffff);
}

.contact-card {
  grid-template-columns: 0.9fr 1.05fr;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #f8fafc;
}

.contact-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-list strong {
  overflow-wrap: anywhere;
}

.contact-actions {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.footer {
  color: var(--white);
  background: #050e1c;
  padding: 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.footer-grid p:nth-child(2) {
  text-align: center;
}

.footer-grid p:nth-child(3) {
  text-align: right;
  overflow-wrap: anywhere;
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #101827;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 42px rgba(6, 23, 45, 0.28);
  font-size: 1.35rem;
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 22px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
  }

  .hero-grid,
  .intro-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 34px;
  }

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

  .vehicle-grid,
  .city-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid p,
  .footer-grid p:nth-child(2),
  .footer-grid p:nth-child(3) {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 68px 0;
  }

  .nav {
    width: min(100% - 24px, 1180px);
  }

  .logo {
    font-size: 0.92rem;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 17vw, 4.2rem);
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-panel,
  .intro-card,
  .contact-card {
    padding: 26px;
    border-radius: 22px;
  }

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

  .service-card {
    min-height: 176px;
  }

  .image-box {
    min-height: 230px;
    padding: 16px;
  }

  .image-box img {
    max-height: 220px;
  }
}
