@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --navy: #071521;
  --navy-2: #0c2232;
  --gold: #d7a84b;
  --gold-light: #f0ca76;
  --white: #ffffff;
  --text: #17232d;
  --muted: #65727d;
  --light: #f5f7f9;
  --border: #e3e8ec;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(7, 21, 33, .10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 21, 33, .97);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: white;
  margin-right: auto;
}

.logo-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: Manrope, sans-serif;
  font-size: 21px;
  font-weight: 800;
  transform: skew(-7deg);
}

.logo strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.logo small {
  display: block;
  margin-top: 5px;
  color: #9baab4;
  font-size: 8px;
  letter-spacing: 3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 23px;
}

nav a {
  color: #d9e1e6;
  font-size: 13px;
  font-weight: 500;
  transition: .25s;
}

nav a:hover {
  color: var(--gold-light);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 700;
  transition: .25s;
}

.nav-button {
  background: var(--gold);
  color: var(--navy);
  padding: 12px 18px;
  font-size: 13px;
}

.nav-button:hover {
  background: var(--gold-light);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 85% 40%, rgba(215,168,75,.16), transparent 28%),
    linear-gradient(135deg, #06131e 0%, #0b2435 100%);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(90deg, transparent 49%, white 50%, transparent 51%),
    linear-gradient(transparent 49%, white 50%, transparent 51%);
  background-size: 80px 80px;
  transform: perspective(500px) rotateX(55deg) scale(1.8);
  transform-origin: bottom;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

.hero h1 {
  max-width: 720px;
  margin: 17px 0 22px;
  font-family: Manrope, sans-serif;
  font-size: clamp(43px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -2.5px;
}

.hero h1 span,
.section-heading h2 span,
.about-text h2 span,
.cta h2 span,
.quote-intro h2 span,
.contact h2 span {
  color: var(--gold);
}

.hero p {
  max-width: 590px;
  color: #bdc9d1;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  gap: 13px;
  margin-top: 33px;
}

.button {
  min-height: 50px;
  padding: 0 23px;
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

.button-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.button-outline {
  color: white;
  border: 1px solid rgba(255,255,255,.25);
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-trust {
  display: flex;
  gap: 35px;
  margin-top: 55px;
}

.hero-trust div {
  padding-left: 13px;
  border-left: 1px solid rgba(215,168,75,.6);
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  font-size: 14px;
}

.hero-trust span {
  color: #81909b;
  font-size: 11px;
  margin-top: 2px;
}

.hero-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #aab8c2;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4bd477;
  box-shadow: 0 0 14px #4bd477;
}

.route {
  margin: 45px 0;
}

.route-point {
  display: flex;
  align-items: center;
  gap: 17px;
}

.point {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pickup {
  border: 4px solid var(--gold);
}

.dropoff {
  background: var(--gold);
}

.route-point small {
  display: block;
  color: #81909b;
  font-size: 9px;
  letter-spacing: 2px;
}

.route-point strong {
  display: block;
  margin-top: 3px;
  font-size: 19px;
}

.route-line {
  width: 1px;
  height: 50px;
  margin: 0 0 0 7px;
  border-left: 1px dashed rgba(215,168,75,.5);
}

.delivery-badge {
  padding: 18px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--navy);
}

.delivery-badge strong,
.delivery-badge span {
  display: block;
}

.delivery-badge strong {
  font-size: 17px;
}

.delivery-badge span {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 600;
  opacity: .75;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 55px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.about-text h2,
.quote-intro h2,
.contact h2 {
  margin-top: 15px;
  font-family: Manrope, sans-serif;
  font-size: clamp(35px, 4vw, 53px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.section-heading p {
  margin-top: 20px;
  color: var(--muted);
  max-width: 560px;
}

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

.service-card {
  padding: 31px;
  min-height: 310px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  background: var(--navy);
  color: white;
}

.service-icon {
  color: var(--gold);
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 12px;
}

.service-card h3 {
  margin: 48px 0 13px;
  font-family: Manrope, sans-serif;
  font-size: 20px;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
}

.featured p {
  color: #aab7c0;
}

.service-card a {
  display: inline-block;
  margin-top: 25px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.about-visual {
  min-height: 500px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background:
    linear-gradient(rgba(7,21,33,.65), rgba(7,21,33,.85)),
    linear-gradient(135deg, #1c3d51, #071521);
  box-shadow: var(--shadow);
}

.about-box {
  width: 70%;
  padding: 45px 25px;
  text-align: center;
  border: 1px solid rgba(215,168,75,.5);
}

.about-box span,
.about-box strong,
.about-box small {
  display: block;
}

.about-box span {
  color: var(--gold);
  font-family: Manrope, sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 5px;
}

.about-box strong {
  margin-top: 5px;
  color: white;
  font-size: 12px;
  letter-spacing: 7px;
}

.about-box small {
  margin-top: 35px;
  color: #81909b;
  font-size: 9px;
  letter-spacing: 3px;
}

.about-text p {
  margin-top: 22px;
  color: var(--muted);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 35px;
}

.about-points div {
  padding-top: 16px;
  border-top: 1px solid #d8dee2;
}

.about-points strong {
  color: var(--gold);
  font-size: 11px;
}

.about-points span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
}

.why-us {
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.why-card {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-card > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.why-card h3 {
  margin-top: 50px;
  font-family: Manrope, sans-serif;
  font-size: 21px;
}

.why-card p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
}

.cta {
  padding: 80px 0;
  background: var(--navy);
  color: white;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta h2 {
  margin-top: 12px;
  font-family: Manrope, sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

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

.button-light:hover {
  background: var(--gold);
}

.quote {
  background: var(--light);
}

.quote-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.quote-intro p {
  max-width: 420px;
  margin-top: 22px;
  color: var(--muted);
}

.quote-contact {
  margin-top: 45px;
  padding-left: 15px;
  border-left: 2px solid var(--gold);
}

.quote-contact strong,
.quote-contact a {
  display: block;
}

.quote-contact strong {
  font-size: 12px;
}

.quote-contact a {
  margin-top: 5px;
  color: var(--navy);
  font-family: Manrope, sans-serif;
  font-size: 20px;
}

.quote-form {
  padding: 35px;
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 19px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  outline: none;
  font: inherit;
  font-size: 13px;
  background: #fafbfc;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
}

.full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-message {
  margin-top: 12px;
  color: #357a4b;
  font-size: 12px;
  text-align: center;
}

.payment {
  padding: 65px 0;
  background: #ecf0f3;
}

.payment-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.payment h2 {
  margin-top: 10px;
  font-family: Manrope, sans-serif;
  font-size: 28px;
}

.payment p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.payment-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.payment-button {
  border: 0;
  padding: 15px 24px;
  border-radius: 7px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.etransfer {
  padding-left: 20px;
  border-left: 1px solid #cbd3d9;
}

.etransfer strong,
.etransfer span {
  display: block;
}

.etransfer strong {
  font-size: 13px;
}

.etransfer span {
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.contact {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact p {
  max-width: 430px;
  margin-top: 20px;
  color: var(--muted);
}

.contact-details {
  border-top: 1px solid var(--border);
}

.contact-item {
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 800;
}

.contact-item a,
.contact-item strong {
  display: block;
  margin-top: 7px;
  font-family: Manrope, sans-serif;
  font-size: 18px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 70px 0;
}

.footer-brand p {
  margin-top: 22px;
  color: #8797a2;
  font-size: 12px;
}

.footer-links h4 {
  margin-bottom: 17px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
}

.footer-links a,
.footer-links span {
  display: block;
  margin: 9px 0;
  color: #aebbc3;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #71828d;
  font-size: 10px;
}

@media (max-width: 1000px) {
  nav {
    display: none;
  }

  .hero-content,
  .about-grid,
  .quote-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero {
    padding: 90px 0;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .payment-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .nav {
    min-height: 70px;
  }

  .nav-button {
    display: none;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-trust {
    gap: 17px;
    flex-wrap: wrap;
  }

  .hero-card {
    padding: 22px;
  }

  .section {
    padding: 75px 0;
  }

  .service-grid,
  .why-grid,
  .form-row,
  .about-points {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .about-visual {
    min-height: 350px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-form {
    padding: 22px;
  }

  .payment-buttons {
    align-items: flex-start;
    flex-direction: column;
  }

  .etransfer {
    padding-left: 0;
    padding-top: 15px;
    border-left: 0;
    border-top: 1px solid #cbd3d9;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    gap: 10px;
    flex-direction: column;
  }
}
