*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blue: #1a3a6e;
  --blue-mid: #1e4a8a;
  --blue-dark: #0f2347;
  --red: #d32f2f;
  --accent: #2979d5;
  --green: #27ae60;
  --green-wa: #25d366;
  --white: #ffffff;
  --light: #f4f6fb;
  --gray: #6c7a8d;
  --text: #1a2636;
  --border: #dde3ee;
  --shadow: 0 4px 24px rgba(26, 58, 110, 0.1);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: #fff;
  color: rgb(44 82 135);
  font-size: 15px;
  line-height: 1.6;
}

/* [data-lang] {
  display: none;
}
.lang-ru [data-lang="ru"] {
  display: inline;
}
.lang-uk [data-lang="uk"] {
  display: inline;
}
.lang-ru [data-lang-block="ru"] {
  display: block;
}
.lang-uk [data-lang-block="uk"] {
  display: block;
}
[data-lang-block] {
  display: none;
} */

main {
}

header {
  background-color: rgb(44 82 135);
  position: sticky;
  top: 0;
  z-index: 100;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3); */
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 15px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 28px;
}
.lang-dropdown {
  position: relative;
}

.lang-trigger {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  user-select: none;
  letter-spacing: 0.5px;
  transition: background 0.2s, border-color 0.2s;
  height: 34px;
}
.lang-trigger:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}
.lang-trigger .arrow {
  font-size: 9px;
  opacity: 0.7;
  transition: transform 0.22s ease;
  margin-left: 2px;
}
.lang-trigger.open .arrow {
  transform: rotate(180deg);
}

/* flag inside trigger */
.lang-trigger .flag {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

/* ── DROPDOWN MENU ── */
.lang-menu {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  background: #1b2d52;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  min-width: 200px;
  overflow: hidden;
  display: none;
  z-index: 200;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
  animation: menuIn 0.18s ease;
}
.lang-menu.open {
  display: block;
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-menu-label {
  padding: 10px 14px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #c5d3ec;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.lang-option:last-child {
  border-bottom: none;
}
.lang-option:hover:not(.disabled) {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.lang-option.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.lang-option.disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.lang-option .flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-option .lang-name {
  flex: 1;
}
.lang-option .lang-code {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  letter-spacing: 0.5px;
}
.lang-option .check {
  font-size: 13px;
  color: #5ba4f5;
}
.soon-badge {
  font-size: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.logo-img {
  width: 46px;
  height: 46px;
  background: var(--blue-mid);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.5px;
  overflow: hidden;
  position: relative;
}
.logo-ship {
  font-size: 22px;
  line-height: 1;
}
.logo-text {
  color: #fff;
  line-height: 1.1;
}
.logo-text .brand {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 1px;
}
.logo-text .sub {
  font-size: 9px;
  font-weight: 300;
  opacity: 0.75;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.lang-switcher {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  position: relative;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.lang-btn.active {
  background: #fff;
  color: var(--blue-dark);
  border-color: #fff;
}
.lang-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.border-r {
  border-right: 1px solid #fff;
}
.orders-btn {
  border: 1px solid #fff !important;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.orders-btn:hover {
  background: #1b60c0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 520px;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: flex-start;

  /* background: linear-gradient(135deg, #1a3a6e 0%, #2265b0 50%, #3a80c0 100%); */
  background-size: cover;
  background-position: center;
  padding-bottom: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 90% 110%,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.5) 30%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;

  /* background: linear-gradient(
          to right,
          rgba(10, 22, 48, 0.92) 0%,
          rgba(10, 22, 48, 0.82) 25%,
          rgba(10, 22, 48, 0.45) 50%,
          rgba(10, 22, 48, 0.1) 75%,
          rgba(10, 22, 48, 0) 100%
        ); */
  background: linear-gradient(
    to right,
    rgb(41 66 120 / 80%) 0%,
    rgb(26 48 89 / 34%) 25%,
    rgb(10 22 48 / 24%) 50%,
    rgba(10, 22, 48, 0.1) 75%,
    rgba(10, 22, 48, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-placeholder .ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.22);
  width: 65%;
  height: 100%;
}
.hero-bg-placeholder .ph-ship {
  font-size: 120px;
  opacity: 0.22;
  line-height: 1;
}
.hero-bg-placeholder .ph-truck {
  font-size: 60px;
  opacity: 0.15;
  margin-top: -24px;
}
.hero-bg-placeholder .ph-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 10px 20px 0;
  display: flex;
  align-items: flex-start;
  margin-bottom: 150px;
}
.hero-text {
  /* max-width: 480px; */
}
.hero-text h1 {
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 350px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background-color: rgb(14 59 122);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 40px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.btn-primaryCenter {
  padding: 8px 10px !important;
  width: 290px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}
.btn-primary:hover {
  background-color: rgb(95, 140, 202);
  transform: translateY(-1px);
}
.btn-outline-main {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap;
}
.btn-outline-main:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

.hero {
  padding: 60px 20px;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 6px;
  text-align: center;
}
.section-sub {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 32px;
}

.services {
  background: transparent;
  padding: 0 0 48px;
  position: relative;
  z-index: 10;
  margin-top: -72px;
  padding: 0 15px;
  padding-bottom: 48px;
}

.services-wrap {
  max-width: 1400px;
  margin: 0 auto;
  /* padding: 0 20px; */
  position: relative;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding-bottom: 18px;
  border-radius: 15px;
}

.services-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;

  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0.8) 75%,
    rgba(0, 0, 0, 0.4) 88%,
    rgba(0, 0, 0, 0) 100%
  );

  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0.8) 75%,
    rgba(0, 0, 0, 0.4) 88%,
    rgba(0, 0, 0, 0) 100%
  );
}

.services-header {
  background: #fff;
  padding: 18px 28px 14px;
  border-bottom: 1px solid var(--border);
  max-width: 490px;
}
.services-header h2 {
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 4px;
}
.services-header p {
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}
.services-header a {
  color: var(--accent);
  text-decoration: underline;
}
.sh-divider {
  display: none;
}
.services-header-left {
  display: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  border-top: none;
  padding: 18px 28px 14px;
}
.service-card {
  background: #fff;
  border: 1px solid rgb(224 224 224) !important;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.15s;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.service-card:last-child {
  border-right: none;
}
.service-card:hover {
  background: #f8fbff;
}

.service-card-header {
  padding: 16px 20px 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: none;
}
.service-num {
  width: 26px;
  height: 26px;
  border-radius: 15px;
  /* background: var(--blue-dark); */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  color: #17418d;
  border: 1px solid gray;
  padding: 18px;
}
.service-title-price {
  flex: 1;
}
.service-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a496e;
  line-height: 1.3;
  margin-bottom: 3px;
}
.service-price {
  font-size: 15px;
  font-weight: 900;
  color: var(--red);
}

.service-desc {
  padding: 0 20px 14px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  flex: 1;
}

.service-img {
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* border-top: 1px solid #e0eaf4; */
}
.service-img img {
  width: 66%;
}
/* .service-card:nth-child(1) .service-img {
  background: #d8e8f5;
}
.service-card:nth-child(2) .service-img {
  background: #d2e4f2;
}
.service-card:nth-child(3) .service-img {
  background: #ccdff0;
} */

.payment-bar {
  background: #fff;
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 28px 14px;
}
.payment-bar .pay-col {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 15px;
  border: 1px solid rgb(224 224 224) !important;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
/* .payment-bar .divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
} */
.pay-icon {
  font-size: 24px;
  color: var(--blue-mid);
}
.pay-text {
  font-size: 13px;
  color: var(--gray);
}
.payIcons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.pay-cards {
  display: flex;
  gap: 8px;
  align-items: center;
}
.visa-logo {
  background: #1a1f71;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.mc-logo {
  display: flex;
  gap: -4px;
  align-items: center;
  position: relative;
}
.mc-logo span:first-child {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eb001b;
  display: block;
}
.mc-logo span:last-child {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f79e1b;
  display: block;
  margin-left: -8px;
}
.wa-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}
.wa-contact a {
  color: var(--blue-mid);
  font-weight: 600;
  text-decoration: none;
}
.wa-icon {
  font-size: 23px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 48px;
}

.schedule-section {
  background: #fff;
}
#booking {
  padding: 0 15px;
  padding-bottom: 48px;
}
.schedule-cont {
  border-radius: 15px;
  border: 1px solid rgb(224 224 224) !important;
  padding: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
/* Контейнер розкладу */
.schedule-container {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.schedule-header {
  display: flex;
  background: #00000012;
}

.schedule-th {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  сolor: rgb(44 82 135) !important;
}

.schedule-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row:nth-child(even) {
  background: var(--light);
}

/* Комірки */
.schedule-td {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
  color: #000;
  gap: 5px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.schedule-td:hover {
  color: rgb(0, 13, 134);
  opacity: 0.8;
}
/* ── checkbox ── */
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 28px 20px;
  font-size: 12.5px;
  color: var(--gray-dark);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}
.checkbox-wrap a {
  color: var(--blue);
  text-decoration: none;
}
.checkbox-wrap a:hover {
  text-decoration: underline;
}

.btn-submit-reg {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  transition: background 0.18s;
  letter-spacing: 0.3px;
}
.btn-submit-reg:hover {
  background: #243547;
}

.faq-hero {
  text-align: center;
}
.faq-hero h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.faq-hero p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 2px 12px rgba(26, 74, 138, 0.1);
}
.faq-item.open {
  border-color: #b8cff0;
  box-shadow: 0 2px 16px rgba(26, 74, 138, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.faq-question-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.faq-item.open .faq-question-text {
  color: var(--blue);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #2563b0;
  color: #2563b0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: background 0.2s, color 0.2s, transform 0.25s;
}
.faq-item.open .faq-icon {
  background: #2563b0;
  color: #fff;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.3s ease;
  padding: 0 20px;
}
.faq-item.open .faq-body {
  max-height: 2000px;
  padding: 0 20px 20px;
}

.faq-body-inner {
  border-top: 1px solid var(--accent);
  padding-top: 16px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}
.faq-body-inner p {
  margin-bottom: 10px;
}
.faq-body-inner p:last-child {
  margin-bottom: 0;
}
.faq-body-inner ul {
  margin: 6px 0 12px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.faq-body-inner ol {
  margin: 6px 0 12px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-body-inner li {
  line-height: 1.6;
}
.faq-body-inner ul li {
  list-style: disc;
}
.faq-body-inner ol li {
  list-style: decimal;
}
.faq-body-inner strong {
  color: var(--text);
  font-weight: 600;
}
.faq-body-inner a {
  color: #2563b0;
  text-decoration: none;
}
.faq-body-inner a:hover {
  text-decoration: underline;
}

/* Alert boxes */
.alert {
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.6;
  margin: 10px 0;
}
.alert-orange {
  background: var(--orange-bg);
  border: 1px solid var(--orange-border);
  color: #7a4a00;
}
.alert-orange strong {
  color: #c47000;
}
.alert-green {
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  color: #1a5c38;
}
.alert code {
  background: rgba(0, 0, 0, 0.07);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 13px;
}

@media (max-width: 768px) {
  /* .schedule-header {
    display: none; 
  }

  .schedule-row {
    flex-direction: column; 
    padding: 12px 0;
  }

  .schedule-td {
    padding: 6px 16px;
    display: flex;
    justify-content: space-between; 
    text-align: right;
    color: rgb(44 82 135) !important;
  }

  
  .schedule-td::before {
    content: attr(data-label);
    font-weight: 600;
    
    margin-right: 10px;
    text-align: left;
  } */
}
.ferry-name {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 4px;
}
.status-open {
  background: #e8f5e9;
  color: var(--green);
  border: 1px solid #a5d6a7;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  display: inline-block;
}
.view-all-btn {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  background: transparent;
  border: 1.5px solid var(--blue-dark);
  color: var(--blue-dark);
  border-radius: 6px;
  padding: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 14px;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
}
.view-all-btn:hover {
  background: var(--blue-dark);
  color: #fff;
}

.cargo-categories {
  background: #fff;
}
.cargo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cargo-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text);
  padding: 12px 0px;
}
.cargo-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #e67e22;
}
.cargo-contact {
  border-radius: 10px;
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray);
}
.cargo-contact a {
  color: var(--blue-mid);
  font-weight: 600;
  text-decoration: none;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 38px;
  margin: 32px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  display: flex;
  align-items: baseline;
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(44 82 135);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
  flex-shrink: 0;
  position: absolute;
  top: 16px;
  left: 30%;
}
.step-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.step-icon-wrap {
  background: #57575717;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  border-radius: 50%;
  padding: 30px;
}
.step-text {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.5;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 48px;
  font-size: 22px;
  color: var(--blue-mid);
  flex-shrink: 0;
}
.how-to-center {
  text-align: center;
}
.how-to {
  padding-bottom: 48px;
}

.managers {
  background: #fff;
  padding-bottom: 48px;
  padding: 0 15px;
  padding-bottom: 48px;
}
.managers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}
.manager-card {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.managers-titles {
  text-align: center;
}
.manager-icon {
  width: 119px;
  height: 114px;
  border-radius: 10px;
  background: #57575717;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  flex-shrink: 0;
  color: #fff;
  border: 3px solid var(--light);
}
.manager-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #14a349;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-btn:hover {
  background: #1cb855;
  opacity: 0.9;
}
.link-mail:hover {
  opacity: 0.8;
}
.contacts {
  padding-bottom: 48px;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: stretch;
}
.contact-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 20px;
}
.contact-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgb(44 82 135);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
}
.contact-card a {
  color: var(--blue-mid);
  text-decoration: none;
}
.contact-card strong {
  color: var(--blue-dark);
}
.contact-ship-img {
  width: 160px;
  min-width: 140px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  /* background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark)); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  padding: 20px;
  aspect-ratio: 4/3;
}
.loc-icon {
  font-size: 18px;
}
.email-link {
  text-decoration: none;
  position: relative;
}
.email-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #0066cc, #0066cc);
  transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.email-link:hover::after {
  width: 100%;
}

.email-link:hover {
  color: #004499;
}

footer {
  background: rgb(44 82 135);
  color: #fff;
}
.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 24px;
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand .logo-text .brand {
  font-size: 19px;
}
.footer-brand .logo-text .sub {
  font-size: 10px;
}
.footer-tagline {
  color: rgb(255 255 255 / 76%);
  font-size: 12.5px;
  margin-top: 10px;
  line-height: 1.6;
}
.footer-col h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link:hover {
  color: rgba(107, 95, 95, 0.76);
}
.footer-col ul li a {
  color: rgb(255 255 255 / 76%);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #f3f3f3;
  text-decoration: underline;
  opacity: 0.8;
}
.footer-pay {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
  flex-wrap: wrap;
}
.footer-visa {
  background: #fff;
  color: #1a1f71;
  font-weight: 900;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
}
.footer-mc {
  display: flex;
  align-items: center;
}
.footer-mc span:first-child {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #eb001b;
  display: block;
}
.footer-mc span:last-child {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f79e1b;
  display: block;
  margin-left: -7px;
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--blue-dark);
  flex-direction: column;
  padding: 20px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu .close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 20px;
}
.mobile-menu a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-section {
  padding: 20px 15px;
}
:root {
  --navy: #1c2b3a;
  --blue: #2563a8;
  --blue-hover: #1e509a;
  --gray-bg: #f4f6f8;
  --gray-mid: #e2e5ea;
  --gray-dark: #6b7280;
  --text: #222;
  --white: #fff;
  --border: #d1d5db;
  --green: #16a34a;
  --yellow: #e3ca29;
  --red: #ff3636;
  --row-label-bg: #fafbfc;
  --row-border: #eef0f3;
}

.page-header {
  max-width: 960px;
  margin: 0 auto 20px;
}
.page-header h1 {
  font-size: 19px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 7px;
}
.title-line {
  width: 44px;
  height: 2px;
  background: var(--blue);
}
.content {
  top: 54px;
  margin-bottom: 32px;
  /* padding: 20px; */
  /* background: #fff; */
  padding: 20px;
  background-color: rgba(248, 248, 248, 0.9);
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 63, 114, 0.5);
}
.content {
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.block-head {
  background: #e8edf3;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 700;
  color: #1a2a3a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
}
.block-head .order-num {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-dark);
  white-space: nowrap;
}

/* ══════════════════════════
     DIV-TABLE  (desktop: two columns, mobile: stacked)
  ══════════════════════════ */
.dtable {
  width: 100%;
}

.drow {
  display: flex;
  border-bottom: 1px solid var(--row-border);
}
.drow:last-child {
  border-bottom: none;
}
.drow.sep {
  border-top: 2px solid var(--gray-mid);
}

.dlabel {
  flex: 0 0 200px;
  padding: 9px 16px;
  font-size: 13.5px;
  color: var(--gray-dark);
  background: var(--row-label-bg);
  border-right: 1px solid var(--row-border);
  display: flex;
  align-items: flex-start;
}

.dval {
  flex: 1;
  padding: 9px 16px;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  word-break: break-word;
}

/* ══════════════════════════
     STATUS
  ══════════════════════════ */
.status-paid {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
}
.status-paid::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.status-booked {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow);
  font-weight: 600;
  font-size: 13px;
}
.status-booked::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.status-canceled {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: 13px;
}
.status-canceled::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ══════════════════════════
     ACTIONS
  ══════════════════════════ */
.actions-row {
  background: #f0f4f8;
  border-top: 1px solid var(--gray-mid);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 3px;
  font-size: 12.5px;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.btn-primary-ord {
  background: #2563a8;
  color: #fff;
  transition: all 0.3s ease;
}
.btn-primary-ord:hover {
  background: #1c2b3a;
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}
.btn-outline:hover img {
  filter: brightness(0) invert(1);
}

/* ══════════════════════════
     RESPONSIVE
  ══════════════════════════ */
.dt-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 37px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  background: #fff;
  padding: 0 12px;
  cursor: pointer;
  transition: box-shadow 0.15s, border-color 0.15s;
  user-select: none;
}

.dt-input:hover {
  border-color: #9ca3af;
}

.dt-input.open {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.dt-value {
  font-size: 14px;
  color: #9ca3af;
}

.dt-value.selected {
  color: #111827;
}

.dt-input svg {
  color: #9ca3af;
  flex-shrink: 0;
}

/* ── picker panel ── */
.picker {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 200;
  overflow: hidden;
}

.picker.open {
  display: block;
}

.picker-top {
  display: flex;
  flex-direction: column;
}

/* ── calendar ── */
.cal {
  flex: 1;
  padding: 14px;
  min-width: 0;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cal-header span {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 4px 6px;
  border-radius: 6px;
  line-height: 1;
  transition: background 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav:hover {
  background: #f3f4f6;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-dow {
  text-align: center;
  font-size: 11px;
  color: #9ca3af;
  padding: 4px 0;
  font-weight: 500;
}

.cal-day {
  text-align: center;
  font-size: 13px;
  padding: 6px 0;
  border-radius: 6px;
  cursor: pointer;
  color: #111827;
  transition: background 0.1s;
  line-height: 1.4;
}

.cal-day:hover:not(.empty):not(.sel):not(.today-sel) {
  background: #f3f4f6;
}

.cal-day.other-month {
  color: #d1d5db;
}

.cal-day.today {
  font-weight: 600;
  color: #3b82f6;
}

.cal-day.sel,
.cal-day.today-sel {
  background: #3b82f6;
  color: #fff;
  font-weight: 500;
}

.cal-day.empty {
  cursor: default;
}

/* ── time column ── */
.time-col {
  flex-shrink: 0;
  border-left: 1px solid #f3f4f6;
  padding: 14px 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.time-col .t-label {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.time-col input[type="number"] {
  width: 100%;
  height: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  font-size: 14px;
  color: #111827;
  outline: none;
  font-family: inherit;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.time-col input[type="number"]:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* hide number spinners */
.time-col input[type="number"]::-webkit-inner-spin-button,
.time-col input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.time-col input[type="number"] {
  -moz-appearance: textfield;
}

/* ── footer ── */
.picker-footer {
  border-top: 1px solid #f3f4f6;
  padding: 10px 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.btn-cancel {
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  cursor: pointer;
  color: #6b7280;
  font-family: inherit;
  transition: background 0.1s;
}

.btn-cancel:hover {
  background: #f9fafb;
}

.btn-apply {
  background: #08487e;
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  font-family: inherit;
  transition: background 0.1s;
}

.btn-apply:hover {
  background: #2563eb;
}

/* ── responsive ── */
@media (max-width: 400px) {
  .picker-top {
    flex-direction: column;
  }

  .time-col {
    width: 100%;
    border-left: none;
    border-top: 1px solid #f3f4f6;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .time-col > div {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .time-col .t-label {
    margin-bottom: 0;
  }

  .time-col input[type="number"] {
    width: 60px;
  }
}

.btn-myorders {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 12.5px;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s;
  white-space: nowrap;
}
.btn-myorders:hover {
  background: var(--blue-hover);
}

.lang-btn {
  background: transparent;
  color: #b8c8d8;
  border: 1px solid #3a5070;
  padding: 5px 11px;
  border-radius: 3px;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color 0.18s, border-color 0.18s;
}
.lang-btn:hover {
  border-color: #6a90b8;
}
.lang-btn::after {
  content: "▾";
  font-size: 9px;
}

/* ══ BREADCRUMB ══ */
.breadcrumb {
  max-width: 720px;
  margin: 20px auto 4px;
  padding: 0 16px;
  font-size: 12px;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .sep {
  color: #9ca3af;
}

/* ══ PAGE TITLE ══ */

.page-header .step-label {
  font-size: 12.5px;
  color: var(--gray-dark);
  margin-bottom: 2px;
}
.page-header h1 {
  font-size: 19px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 7px;
}
.title-line {
  width: 44px;
  height: 2px;
  background: var(--blue);
}

/* ══ MAIN CARD ══ */
.content {
  max-width: 720px;
  margin: 20px auto 60px;
  padding: 16px 16px;
}

.form-card {
  border-radius: 4px;
  overflow: hidden;
}

.form-card-head {
  padding: 24px 28px 0;
}

.form-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a2a3a;
  margin-bottom: 8px;
}

.form-card-divider {
  width: 44px;
  height: 2px;
  background: var(--blue);
  border: none;
  margin: 0;
  margin-bottom: 28px;
}

/* ══ TRUCK BLOCK (repeatable) ══ */
.truck-block {
  padding: 0 28px;
}

.truck-block + .truck-block {
  border-top: 2px solid var(--gray-mid);
  padding-top: 24px;
  margin-top: 4px;
}

.truck-block-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.remove-truck {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--red);
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  padding: 2px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.18s;
}
.remove-truck:hover {
  opacity: 0.7;
}

/* ══ FORM FIELDS ══ */
.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 12.5px;
  color: var(--text);
  margin-bottom: 5px;
}

.field label .req {
  color: var(--red);
  margin-left: 2px;
}

.error {
  color: var(--red);
  margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--input-border);

  border-radius: 3px;
  padding: 8px 11px;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none;
  -webkit-appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--placeholder);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(37, 99, 168, 0.12);
}

/* select arrow */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 0;
}
.select-wrap select {
  padding-right: 11px;
  cursor: pointer;
  cursor: pointer;
}
.select-wrap-geo select {
  padding-right: 11px;
  cursor: pointer;
  border: none;
  cursor: pointer;
  background: none;
}
.select-wrap-geo {
  position: relative;
}
.select-wrap-geo::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 0;
}
/* disabled / readonly */
.field input[readonly],
.field input[disabled] {
  background: #f3f5f7;
  color: var(--gray-dark);
  cursor: default;
}

.field select[readonly],
.field select[disabled] {
  background: #f3f5f7;
  color: var(--gray-dark);
  cursor: default;
}

/* wrapper */
.phone-wrap {
  display: flex;
  align-items: center;

  height: 42px;

  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;

  overflow: hidden;
}

/* left part */
.phone-flag {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 0 10px;

  border-right: 1px solid #d9d9d9;

  min-width: 58px;
  height: 100%;

  cursor: pointer;
}

.phone-flag .flag {
  font-size: 16px;
  line-height: 1;
}

/* arrow */
.phone-flag .arrow {
  width: 6px;
  height: 6px;

  border-right: 1.5px solid #9b9b9b;
  border-bottom: 1.5px solid #9b9b9b;

  transform: rotate(45deg) translateY(-1px);

  margin-left: 2px;
}

/* input */
.phone-wrap input {
  border: none;
  outline: none;

  flex: 1;
  height: 100%;

  padding: 0 12px;

  font-size: 14px;
  color: #555;

  background: transparent;
}

.phone-wrap input::placeholder {
  color: #9c9c9c;
}

/* focus */
.phone-wrap:focus-within {
  /* border-color: #c4c4c4; */
}

/* two-col grid */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* textarea */
.field textarea {
  resize: vertical;
  min-height: 68px;
}

/* ══ ACTIONS ══ */
.form-actions {
  padding: 20px 28px 28px;
  display: flex;
  gap: 10px;
}

.btn-submit {
  width: 100%;
  background: #08487e;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  transition: background 0.18s;
  letter-spacing: 0.3px;
}
.btn-submit:hover {
  background: #243547;
}

.btn-add-truck {
  width: 100%;
  background: transparent;
  color: #08487e;
  border: 1.5px solid #08487e;
  border-radius: 3px;
  padding: 11px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.btn-add-truck:hover {
  background: var(--blue);
  color: #fff;
}
.btn-add-truck .plus {
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
}

:root {
  --navy: #1c2b3a;
  --blue: #2563a8;
  --blue-hover: #1e509a;
  --blue-light: #e8f0fb;
  --gray-bg: #f4f6f8;
  --gray-mid: #e2e5ea;
  --gray-dark: #6b7280;
  --text: #222;
  --white: #fff;
  --border: #d1d5db;
  --input-border: #c8cdd5;
  --input-focus: #2563a8;
  --placeholder: #9ca3af;
  --red: #dc2626;
}

/* ══ BREADCRUMB ══ */

/* ══ PAGE TITLE ══ */
.page-header {
  max-width: 720px;
  margin: 0 auto 6px;
  /* padding: 0 16px; */
}
.page-header .step-label {
  font-size: 12.5px;
  color: var(--gray-dark);
  margin-bottom: 2px;
}
.page-header h1 {
  font-size: 19px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 7px;
}
.title-line {
  width: 44px;
  height: 2px;
  background: var(--blue);
}

/* ══ MAIN CARD ══ */
.content {
  max-width: 720px;
  margin: 20px auto 60px;
  padding: 16px 16px;
}

.form-card {
  border-radius: 4px;
  overflow: hidden;
}

.form-card-head {
  padding: 24px 28px 0;
}

.form-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a2a3a;
  margin-bottom: 8px;
}

/* ══ TRUCK BLOCK (repeatable) ══ */
.truck-block {
  padding: 0 28px;
}

.truck-block + .truck-block {
  border-top: 2px solid var(--gray-mid);
  padding-top: 24px;
  margin-top: 4px;
}

.truck-block-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.remove-truck {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--red);
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  padding: 2px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.18s;
}
.remove-truck:hover {
  opacity: 0.7;
}

/* ══ FORM FIELDS ══ */
.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 12.5px;
  color: var(--text);
  margin-bottom: 5px;
}

.field label .req {
  color: var(--red);
  margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--input-border);

  border-radius: 3px;
  padding: 8px 11px;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none;
  -webkit-appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--placeholder);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(37, 99, 168, 0.12);
}

/* select arrow */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 0;
}
.select-wrap select {
  padding-right: 11px;
  cursor: pointer;
  cursor: pointer;
}
.select-wrap-geo select {
  padding-right: 11px;
  cursor: pointer;
  border: none;
  cursor: pointer;
  background: none;
}
.select-wrap-geo {
  position: relative;
}
.select-wrap-geo::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 0;
}
/* disabled / readonly */
.field input[readonly],
.field input[disabled] {
  background: #f3f5f7;
  color: var(--gray-dark);
  cursor: default;
}

/* wrapper */
.phone-wrap {
  display: flex;
  align-items: center;

  height: 42px;

  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;

  overflow: hidden;
}

/* left part */
.phone-flag {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 0 10px;

  border-right: 1px solid #d9d9d9;

  min-width: 58px;
  height: 100%;

  cursor: pointer;
}

.phone-flag .flag {
  font-size: 16px;
  line-height: 1;
}

/* arrow */
.phone-flag .arrow {
  width: 6px;
  height: 6px;

  border-right: 1.5px solid #9b9b9b;
  border-bottom: 1.5px solid #9b9b9b;

  transform: rotate(45deg) translateY(-1px);

  margin-left: 2px;
}

/* input */
.phone-wrap input {
  border: none;
  outline: none;

  flex: 1;
  height: 100%;

  padding: 0 12px;

  font-size: 14px;
  color: #555;

  background: transparent;
}

.phone-wrap input::placeholder {
  color: #9c9c9c;
}

/* focus */
.phone-wrap:focus-within {
  /* border-color: #c4c4c4; */
}

/* two-col grid */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* textarea */
.field textarea {
  resize: vertical;
  min-height: 68px;
}

/* ══ ACTIONS ══ */

.btn-submit {
  width: 100%;
  background: #08487e;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  transition: background 0.18s;
  letter-spacing: 0.3px;
}
.btn-submit:hover {
  background: #243547;
}

.btn-add-truck {
  width: 100%;
  background: transparent;
  color: #08487e;
  border: 1.5px solid #08487e;
  border-radius: 3px;
  padding: 11px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.btn-add-truck:hover {
  background: var(--blue);
  color: #fff;
}
.btn-add-truck .plus {
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

.phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  overflow: visible;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.phone-wrap:focus-within {
  border-color: #3b82f6;
  /* box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); */
}

.country-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 10px;
  height: 42px;
  cursor: pointer;
  /* border-right: 1px solid #e5e7eb; */
  flex-shrink: 0;
  transition: background 0.12s;
  border-radius: 8px 0 0 8px;
}

/* .country-selector:hover {
  background: #f9fafb;
} */

.flag {
  font-size: 18px;
  line-height: 1;
}

.arrow {
  color: #9ca3af;
  flex-shrink: 0;
}

.dial-code {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  padding: 0 10px;
  border-right: 1px solid #e5e7eb;
  height: 42px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.phone-wrap input[type="tel"] {
  border: none;
  outline: none;
  background: transparent;
  padding: 0 12px;
  height: 42px;
  font-size: 14px;
  color: #111827;
  width: 100%;
  min-width: 0;
}

.phone-wrap input::placeholder {
  color: #9ca3af;
}

.dropdown-leng {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
}

.dropdown-leng.open {
  display: block;
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  cursor: pointer;
  font-size: 13px;
  color: #111827;
  transition: background 0.1s;
}

.dd-item:hover {
  background: #f9fafb;
}

.dd-item .dd-flag {
  font-size: 17px;
}

.dd-item .dd-dial {
  font-size: 12px;
  color: #9ca3af;
  margin-left: auto;
}
/* ── field ── */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.field label {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

/* ── trigger ── */
.dt-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 37px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  background: #fff;
  padding: 0 12px;
  cursor: pointer;
  transition: box-shadow 0.15s, border-color 0.15s;
  user-select: none;
}

.dt-input:hover {
  border-color: #9ca3af;
}

.dt-input.open {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.dt-value {
  font-size: 14px;
  color: #9ca3af;
}

.dt-value.selected {
  color: #111827;
}

.dt-input svg {
  color: #9ca3af;
  flex-shrink: 0;
}

/* ── picker panel ── */
.picker {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 200;
  overflow: hidden;
}

.picker.open {
  display: block;
}

.picker-top {
  display: flex;
  flex-direction: column;
}

/* ── calendar ── */
.cal {
  flex: 1;
  padding: 14px;
  min-width: 0;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cal-header span {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 4px 6px;
  border-radius: 6px;
  line-height: 1;
  transition: background 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav:hover {
  background: #f3f4f6;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-dow {
  text-align: center;
  font-size: 11px;
  color: #9ca3af;
  padding: 4px 0;
  font-weight: 500;
}

.cal-day {
  text-align: center;
  font-size: 13px;
  padding: 6px 0;
  border-radius: 6px;
  cursor: pointer;
  color: #111827;
  transition: background 0.1s;
  line-height: 1.4;
}

.cal-day:hover:not(.empty):not(.sel):not(.today-sel) {
  background: #f3f4f6;
}

.cal-day.other-month {
  color: #d1d5db;
}

.cal-day.today {
  font-weight: 600;
  color: #3b82f6;
}

.cal-day.sel,
.cal-day.today-sel {
  background: #3b82f6;
  color: #fff;
  font-weight: 500;
}

.cal-day.empty {
  cursor: default;
}

/* ── time column ── */
.time-col {
  flex-shrink: 0;
  border-left: 1px solid #f3f4f6;
  padding: 14px 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.time-col .t-label {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.time-col input[type="number"] {
  width: 100%;
  height: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  font-size: 14px;
  color: #111827;
  outline: none;
  font-family: inherit;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.time-col input[type="number"]:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* hide number spinners */
.time-col input[type="number"]::-webkit-inner-spin-button,
.time-col input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.time-col input[type="number"] {
  -moz-appearance: textfield;
}

/* ── footer ── */
.picker-footer {
  border-top: 1px solid #f3f4f6;
  padding: 10px 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.btn-cancel {
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  cursor: pointer;
  color: #6b7280;
  font-family: inherit;
  transition: background 0.1s;
}

.btn-cancel:hover {
  background: #f9fafb;
}

.btn-apply {
  background: #08487e;
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  font-family: inherit;
  transition: background 0.1s;
}

.btn-apply:hover {
  background: #2563eb;
}
/* ── CARD ── */
.card {
  background: none;

  display: block !important;
  border: none !important;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 10px 0;
}

.card-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.card-body {
  padding: 0;
}

/* ── REVIEW ROWS ── */
.review-row {
  display: flex;
  /* padding: 10px 24px; */
  border: 1px solid #d5d5d5;
  /* align-items: flex-start; */
}

/* .review-row:last-child { border-bottom: none; }
    .review-row:nth-child(even) { background: var(--highlight-row); } */
.review-row .row-label:nth-child(1) {
  border-right: 1px solid;
}
.row-label {
  width: 220px;
  flex-shrink: 0;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding-right: 16px;
  padding: 10px 24px;
}

.row-value {
  color: #000;
  font-size: 13px;
  flex: 1;
  padding: 10px 24px;
}

.row-value.price {
  font-size: 14px;
  color: #000;
}

/* ── SECTION DIVIDER ── */
.section-label {
  background: #f0f4f8;
  padding: 8px 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── EDIT ROW ── */
.review-btn {
  display: block;
}
.edit-row {
  padding: 5px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.edit-row .btn-edit {
  padding: 13px;
  font-size: 15px;
  display: flex;
  width: 300px;
  font-family: "Open Sans", sans-serif;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  margin: 0 auto;
  height: 43px;
  transition: background-color 0.2s, color 0.2s;
}
.edit-row .btn-edit:hover {
  background-color: #1c2b3a;
}
/* ── EDIT BTN ── */
.btn-edit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Open Sans", sans-serif;
  padding: 6px 16px;
  background: transparent;
  background-color: #2563a8;
  color: #fff;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.btn-edit:hover {
  color: #fff !important;
  background-color: #1c2b3a;
}

/* ── ORDER INFO CARD ── */
.order-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 20px;
}

.order-card-header {
  background: linear-gradient(to right, #333 50%);
  color: #fff;
  padding: 14px 24px;
  border-radius: 4px 4px 0 0;
  font-size: 16px;
  font-weight: 600;
}

.order-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.order-total-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.order-total-amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

/* ── CHECKBOXES ── */
.checkboxes-block {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}

.check-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.check-item a {
  color: var(--accent);
  text-decoration: none;
}

.check-item a:hover {
  text-decoration: underline;
}

.docs-list {
  margin: 6px 0 0 25px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.docs-list a {
  color: var(--accent);
  font-size: 13px;
  text-decoration: none;
}

.docs-list a:hover {
  text-decoration: underline;
}

/* ── PAY BUTTON ── */
.pay-block {
  padding: 20px 24px;
}

.btn-pay {
  width: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 13px;
  background: #2563a8;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

.btn-pay:hover {
  background: #1c2b3a;
}

/* ── responsive ── */
@media (max-width: 400px) {
  .picker-top {
    flex-direction: column;
  }
  .btn-pay {
    width: 100%;
  }
  .time-col {
    width: 100%;
    border-left: none;
    border-top: 1px solid #f3f4f6;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .time-col > div {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .time-col .t-label {
    margin-bottom: 0;
  }

  .time-col input[type="number"] {
    width: 60px;
  }
}
/* ── PAGE BODY ── */
.page-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 24px 128px;
}

/* ── CARD ── */
.reg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 100%;

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  max-width: 420px;
  margin: 20px auto 60px;
  padding: 32px 18px 28px;
  background-color: rgba(248, 248, 248, 0.9);
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 63, 114, 0.5);
}

.reg-card h1 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

/* ── FORM field-logS ── */
.field-log {
  margin-bottom: 16px;
}

.field-log label {
  display: block;
  font-size: 13px;
  color: var(--text-label);
  margin-bottom: 5px;
  font-weight: 400;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap input {
  width: 100%;
  height: 36px;
  padding: 0 36px 0 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.input-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46, 124, 191, 0.12);
}

/* no eye icon for email */
.input-wrap.no-icon input {
  padding-right: 10px;
}

/* eye toggle */
.eye-btn {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  line-height: 0;
}

.eye-btn:hover {
  color: var(--accent);
}

.eye-btn svg {
  width: 18px;
  height: 18px;
}

/* ── RADIO GROUP ── */
.radio-group {
  margin: 18px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.radio-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}

.radio-item input[type="radio"] {
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

/* ── SUBMIT BTN ── */
.btn-submit {
  width: 100%;
  height: 42px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
a.btn-submit {
  text-decoration: none;
}

.btn-submit:hover {
  background: #43494e;
}
.btn-submit:active {
  transform: scale(0.99);
}

.btn-submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── LOGIN LINK ── */
.login-hint {
  font-size: 13px;
  color: var(--text-muted);
}
.login-hint-acc {
  color: #0177d8 !important;
  text-decoration: underline !important;
}

.login-hint a {
  color: var(--accent);
  text-decoration: none;
}

.login-hint a:hover {
  text-decoration: underline;
}
.info-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 7px;
}

.info-card-divider {
  width: 36px;
  height: 2px;
  background: var(--blue);
  border: none;
  margin-bottom: 18px;
}

.info-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 14px;
}
.info-text:last-child {
  margin-bottom: 0;
}

.info-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 12px;
}
.info-item:last-child {
  margin-bottom: 0;
}

.info-num {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--blue);
  width: 20px;
}

.info-divider {
  border: none;
  border-top: 1px solid var(--gray-mid);
  margin: 16px 0;
}

.info-email {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.info-email:hover {
  text-decoration: underline;
}
/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .btn-myorders {
    display: none;
  }
  .burger {
    display: flex;
  }
  .form-card-head,
  .truck-block,
  .form-actions {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 640px) {
  .row-label {
    width: 140px;
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .field-row-data {
    display: flex;
    flex-direction: column !important;
  }
  .form-actions {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-card-title {
    font-size: 19px;
  }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .btn-myorders {
    display: none;
  }
  .burger {
    display: flex;
  }
  .form-card-head,
  .truck-block,
  .form-actions {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 600px) {
  .field-row-data {
    display: flex;
    flex-direction: column !important;
  }
}
@media (max-width: 480px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-card-title {
    font-size: 19px;
  }
}
/* tablet */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .burger {
    display: flex;
  }

  .dlabel {
    flex: 0 0 160px;
  }
}

/* mobile */
@media (max-width: 520px) {
  /* Stack label above value */
  .drow {
    flex-direction: column;
    border-bottom: 1px solid var(--row-border);
  }
  .drow.sep {
    border-top: 2px solid var(--gray-mid);
  }

  .dlabel {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--row-border);
    padding: 7px 14px 5px;
    font-size: 11.5px;
    font-weight: 600;
    background: var(--row-label-bg);
  }

  .dval {
    flex: none;
    width: 100%;
    padding: 7px 14px 9px;
    font-size: 13.5px;
  }

  .block-head {
    flex-direction: column;
    align-items: flex-start;
  }

  /* buttons full width on tiny screens */
  .actions-row {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }

  .breadcrumb {
    margin-top: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
.clogin {
  position: absolute;
  right: 0;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: #333;
  display: none;
  top: calc(100% - 10px);
  right: 0;
  min-width: 110px;
  z-index: 1;
}
.dropdown__content-items {
  display: flex;
  flex-direction: column;
  text-align: right;
}
@media (max-width: 991px) {
  .clogin {
    position: relative;
  }
  .dropdown-content {
    display: block !important;
    position: relative;
  }
  .dropdown__content-items {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .fa-caret-down {
    display: none;
  }
}

.menu {
  text-decoration: none;
}

.navbar {
  /*opacity: 0.8; */
  position: sticky !important;
  top: 0 !important;
  .nav-link {
    display: inline-block;
    font-family: Montserrat;
    font-size: 14px;
    line-height: 24px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    &:hover {
      color: white;
    }
    &.active,
    &.nav-link.active {
      color: #ffffff;
    }
    &::before,
    &::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: #da0f32;
      left: 0;
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    &::before {
      top: 5px;
      transform-origin: right;
    }

    &::after {
      bottom: 5px;
      transform-origin: left;
    }
  }

  .navbar-toggler {
    border: none !important;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
  .nav-link:hover::before,
  .nav-link:hover::after,
  .nav-link.active::before,
  .nav-link.active::after {
    transform: scaleX(1);
  }
}

.navbar-toggler span {
  display: block;
  background-color: white;
  height: 3px;
  width: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: all 0.35s ease-out;
  transform-origin: center left;
}

.navbar-toggler span:nth-child(1) {
  margin-top: 0.3em;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(15%, -33%) rotate(45deg);
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
}

.navbar-toggler span:nth-child(1) {
  transform: translate(0%, 0%) rotate(0deg);
}

.navbar-toggler span:nth-child(2) {
  opacity: 1;
}

.navbar-toggler span:nth-child(3) {
  transform: translate(0%, 0%) rotate(0deg);
}
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .orders-btn-mobile {
    justify-content: center;
    margin-top: 10px;
  }
  .orders-btn-desktop {
    display: none;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-ship-img {
    display: none;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .managers-grid {
    grid-template-columns: 1fr;
  }
  /* Hero stacks on tablet */
  .hero {
    flex-direction: column;
  }
  .hero-left {
    width: 100%;
    padding: 48px 32px 40px;
  }
  .hero-right {
    min-height: 260px;
    width: 100%;
  }
}
@media (max-width: 891px) {
  .payment-bar {
    flex-direction: column;
  }
  .payment-bar .pay-col {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step-arrow {
    display: none;
  }
  .payment-bar {
    flex-direction: column;
  }
  .payment-bar .divider {
    width: 100%;
    height: 1px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 36px 20px 32px;
  }
  .hero-text h1 {
    font-size: 24px;
  }
  .hero-right {
    min-height: 200px;
  }
  .services-header {
    padding: 16px 20px;
    gap: 12px;
  }
  .sh-divider {
    display: none;
  }
  .services-card {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 60%,
      rgba(0, 0, 0, 0.8) 82%,
      rgba(0, 0, 0, 0.4) 100%,
      rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 60%,
      rgba(0, 0, 0, 0.8) 82%,
      rgba(0, 0, 0, 0.4) 100%,
      rgba(0, 0, 0, 0) 100%
    );
  }
}
@media (max-width: 518px) {
  .hero-btns {
    flex-direction: column;
    text-align: center;
  }
  .btn-primary {
    padding: 11px 22px;
    text-align: center;
    justify-content: center;
  }
  .btn-outline-main {
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 488px) {
  .nav-inner {
    height: 84px;
  }
  .pay-cards {
    display: block;
  }
  .manager-card {
    flex-direction: column;
    text-align: center;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 455px) {
  .schedule-td {
    flex-wrap: wrap;
  }
  .schedule-th:nth-child(3) {
    padding: 12px 4px;
  }
  .schedule-td:nth-child(3) {
    padding: 12px 10px;
  }
}
@media screen and (max-width: 388px) {
  .header-logo {
    width: 130px;
  }
  .schedule-cont {
    padding: 20px;
  }
}
@media screen and (max-width: 368px) {
  .schedule-table th {
    padding: 12px 6px;
  }
  .schedule-table td {
    padding: 12px 6px;
  }
  .btn-primaryCenter {
    width: 100%;
  }
}
@media screen and (max-width: 350px) {
  .schedule-cont {
    padding: 20px 6px;
  }
}
