:root {
  --brand-purple: #7B5791;
  --brand-yellow: #FEB300;
  --purple-900: #17043d;
  --purple-800: #2e1456;
  --purple-700: #43206c;
  --purple-600: #6c3f93;
  --purple-500: #8b5ca8;
  --lavender-100: #f4f1ff;
  --lavender-200: #ebe7ff;
  --lavender-300: #ded8fb;
  --ink: #1c1725;
  --muted: #615a70;
  --line: rgba(67, 32, 108, 0.16);
  --shadow: 0 18px 35px rgba(35, 18, 65, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(105px, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 86px;
  padding: 0 clamp(28px, 5vw, 92px);
  background: #fff;
  box-shadow: 0 1px 0 rgba(67, 32, 108, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 174px;
  height: 65px;
  flex: 0 0 174px;
  margin-right: 0;
  background: url("assets/selan-logo.png") left center / contain no-repeat;
}

.brand-mark::before,
.brand-mark::after {
  display: none;
}

.brand-mark::before {
  inset: 7px 18px 7px 4px;
  background: linear-gradient(145deg, #63328e, #a378bc);
}

.brand-mark::after {
  inset: 5px 8px 5px 18px;
  border: 8px solid #8b5ca8;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.brand-copy {
  display: none;
  gap: 1px;
  line-height: 1;
}

.brand-name {
  color: #725197;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
}

.brand-tag {
  color: #7b7190;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
  color: #0e0916;
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #f7f4fb;
  border: 1px solid rgba(123, 87, 145, 0.18);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--brand-purple);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.main-nav a,
.book-link {
  transition: color 160ms ease, transform 160ms ease, background 160ms ease;
}

.main-nav a:hover {
  color: var(--purple-600);
}

.book-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 32px;
  padding: 0 18px;
  color: #fff;
  background: var(--brand-purple);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
}

.book-link:hover,
.primary-action:hover {
  transform: translateY(-1px);
  background: var(--brand-purple);
}

.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  padding: 74px 7.4% 78px;
  color: #fff;
  background-image: url("assets/hero1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, var(--purple-900) 10%, #ffffff00 70%);
  pointer-events: none;
  opacity: 0.9;           /* ← This is the key fix */
  z-index: 1;
}

/* Ensure content stays above the overlay */
.hero > * {
  position: relative;
  z-index: 2;
}
.language-switcher {
  position: absolute;
  top: 34px;
  right: 5%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(19, 8, 37, 0.16);
}

.language-switcher button {
  min-width: 28px;
  height: 21px;
  padding: 0 6px;
  color: #251334;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button + button {
  border-left: 1px solid rgba(37, 19, 52, 0.42);
  border-radius: 0;
}

.language-switcher button[aria-pressed="true"] {
  color: #17111f;
  background: transparent;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.82fr);
  align-items: start;
  gap: 0 7%;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-copy {
  grid-column: 1 / -1;
  max-width: 980px;
}

.hero h1 {
  max-width: 980px;
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 4.25vw, 4.35rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 3px 4px 0 rgba(16, 8, 24, 0.38);
}

.hero p {
  max-width: 900px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.2vw, 1.2rem);
  line-height: 1.55;
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  background: #20c663;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(10, 95, 45, 0.24);
}

.whatsapp svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.tracking-card {
  grid-column: 2;
  justify-self: center;
  width: min(100%, 540px);
  min-height: 205px;
  margin-top: -3px;
  padding: 24px 32px 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 13px 20px rgba(19, 8, 37, 0.28);
  backdrop-filter: blur(4px);
}

.tracking-card h2 {
  margin: 0 0 9px;
  text-align: center;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 1.1;
  text-shadow: 2px 3px 0 rgba(16, 8, 24, 0.28);
}

.tracking-card p {
  max-width: 390px;
  margin: 0 auto 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.35;
}

.tracking-row {
  display: flex;
  min-height: 43px;
}

.tracking-row input {
  min-width: 0;
  flex: 1;
  padding: 0 18px;
  border: 0;
  border-radius: 6px 0 0 6px;
  color: #2b2135;
  font-size: 0.84rem;
  outline: none;
}

.tracking-row input:focus {
  box-shadow: inset 0 0 0 2px rgba(139, 92, 168, 0.35);
}

.tracking-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 145px;
  padding: 0 18px;
  color: #fff;
  background: #8d5bb0;
  border: 0;
  border-radius: 0 6px 6px 0;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.tracking-row svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.tracking-message {
  min-height: 16px;
  margin-top: 10px !important;
  color: #fff !important;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 34px 7%;
  background: #f8f7ff;
  border-bottom: 1px solid rgba(67, 32, 108, 0.06);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #2f1f55;
  font-size: 0.82rem;
}

.mini-icon,
.card-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: #161a72;
  background: #eceaff;
  border-radius: 50%;
}

.mini-icon::before,
.mini-icon::after,
.card-icon::before,
.card-icon::after {
  position: absolute;
  content: "";
}

.globe::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.globe::after {
  width: 5px;
  height: 16px;
  border: 2px solid currentColor;
  border-top: 0;
  border-bottom: 0;
}

.home::before {
  width: 15px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: 0;
  bottom: 8px;
}

.home::after {
  width: 13px;
  height: 13px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  top: 9px;
}

.shield::before {
  width: 15px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 8px 8px 10px 10px;
}

.shield::after {
  width: 5px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.file::before {
  width: 13px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.file::after {
  width: 7px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.section-lavender {
  background: linear-gradient(180deg, #fff 0%, var(--lavender-200) 100%);
}

.features {
  padding: 76px 7% 88px;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 8px;
  color: #30165a;
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  line-height: 1.18;
}

.section-heading p {
  margin: 0;
  color: #453957;
  font-size: 0.82rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 18px;
  max-width: 790px;
  margin: 0 auto;
}

.feature-card {
  min-height: 206px;
  padding: 29px 26px 24px;
  background: #fff;
  border: 1px solid rgba(34, 17, 68, 0.06);
  border-radius: var(--radius);
  box-shadow: 8px 10px 12px rgba(30, 27, 50, 0.2);
}

.feature-card h3 {
  margin: 25px 0 10px;
  color: #2f1f55;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 200;
}

.feature-card p {
  margin: 0;
  color: #453d52;
  font-size: 0.74rem;
  line-height: 1.58;
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  font-size: 1rem;
  font-weight: 800;
}

.secure::before {
  width: 17px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.secure::after {
  width: 8px;
  height: 5px;
  border: 2px solid currentColor;
  border-bottom: 0;
  top: 9px;
  border-radius: 6px 6px 0 0;
}

.customs::before {
  width: 16px;
  height: 16px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-35deg);
}

.tracking::before {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.tracking::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor;
}

.door::before {
  width: 13px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.door::after {
  width: 3px;
  height: 3px;
  right: 11px;
  border-radius: 50%;
  background: currentColor;
}

.support::before {
  width: 18px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 5px 5px;
}

.support::after {
  width: 4px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  right: 10px;
  bottom: 9px;
}

.process {
  padding: 89px 7% 72px;
  background: #fff;
}

.process .section-heading {
  margin-bottom: 64px;
}

.step-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px;
  max-width: 870px;
  margin: 0 auto 60px;
  padding: 0;
  list-style: none;
}

.step-list li {
  position: relative;
}

.step-list li:not(:last-child)::after {
  position: absolute;
  top: 23px;
  left: 68px;
  width: calc(100% + 14px);
  height: 1px;
  content: "";
  background: #dedaf0;
}

.step-list span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin: 0 0 27px;
  color: #fff;
  background: var(--purple-700);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
}

.step-list h3 {
  margin: 0 0 9px;
  color: #11116b;
  font-size: 0.82rem;
  line-height: 1.25;
}

.step-list p {
  margin: 0;
  color: #43394f;
  font-size: 0.7rem;
  line-height: 1.5;
}

.primary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 200px;
  min-height: 42px;
  margin: 0 auto;
  padding: 0 24px;
  color: #fff;
  background: var(--purple-700);
  border-radius: 5px;
  box-shadow: 0 12px 22px rgba(67, 32, 108, 0.24);
  font-size: 0.75rem;
  font-weight: 800;
}

.testimonials {
  padding: 55px 7% 100px;
  background: linear-gradient(180deg, var(--lavender-200), #fff);
}

.testimonials .section-heading {
  margin-bottom: 45px;
}

.testimonials .section-heading h2 {
  color: #251a2d;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-card {
  min-height: 235px;
  padding: 31px 30px 28px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 34px rgba(67, 32, 108, 0.13);
}

.stars {
  margin-bottom: 14px;
  color: #ffbe0b;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.testimonial-card p {
  min-height: 92px;
  margin: 0 0 20px;
  color: #16101c;
  font-size: 0.82rem;
  line-height: 1.55;
}

.customer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.customer > span {
  width: 35px;
  height: 35px;
  background: #dedbd8;
  border-radius: 8px;
}

.customer strong,
.customer small {
  display: block;
}

.customer strong {
  font-size: 0.72rem;
}

.customer small {
  margin-top: 3px;
  color: #5e5966;
  font-size: 0.64rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(160px, 0.55fr) minmax(280px, 1.45fr);
  gap: clamp(28px, 5vw, 70px);
  padding: 68px clamp(28px, 7vw, 108px) 19px;
  background: #fff;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .brand-name {
  font-size: 2.55rem;
}

.footer-brand p,
.footer-contact p {
  margin: 0;
  color: #171020;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  align-content: start;
}

.footer-links h2 {
  margin: 38px 0 12px;
  font-size: 1rem;
}

.footer-links a {
  width: fit-content;
  margin-bottom: 5px;
  color: #22152c;
  font-size: 0.95rem;
}

.footer-links a::before {
  content: "- ";
}

.footer-contact {
  padding-top: 35px;
}

.footer-contact ul {
  margin: 0 0 22px;
  padding-left: 17px;
  color: #150d1c;
  font-size: 0.86rem;
  line-height: 1.32;
  font-weight: 800;
}

.footer-contact a {
  font-weight: 800;
}

.socials {
  display: flex;
  gap: 15px;
  margin-top: 21px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.youtube { background: #ff1e1e; }
.facebook { background: #1977f3; }
.instagram { background: #fc2e83; }
.linkedin { background: #0a66c2; }
.pinterest { background: #e60023; }
.x { background: #111; }

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  text-align: center;
  color: #24152f;
  font-size: 0.76rem;
}

@media (min-width: 761px) {
  .site-footer {
    width: min(100%, 1280px);
    margin-inline: auto;
    text-align: left;
  }
}

.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 640px;
  padding: 92px 8%;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, var(--purple-900) 10%, #ffffff00 70%);
  pointer-events: none;
  opacity: 0.9;
  z-index: 1;
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1.1;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.55;
}

.accent {
  color: #ffb400;
}

.page-band {
  padding: 84px 7%;
  background: linear-gradient(180deg, #f1efff, #fff);
}

.white-band {
  padding: 84px 7%;
  background: #fff;
}

.content-wrap {
  max-width: 1140px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 70px;
  align-items: center;
}

.copy-block h2,
.panel h2,
.rate-card h2 {
  margin: 0 0 14px;
  color: #07066e;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  line-height: 1.15;
}

.copy-block p {
  color: #4d4b5b;
  font-size: 1rem;
  line-height: 1.65;
}

.quote {
  color: #161278;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  font-style: italic;
  line-height: 1.22;
}

.image-card,
.panel,
.rate-card,
.booking-form,
.side-card,
.notice-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 24px 40px rgba(24, 17, 72, 0.11);
}

.image-card {
  overflow: hidden;
  padding: 18px;
}

.image-card img {
  display: block;
  width: 100%;
  border-radius: 7px;
}

.image-card h3 {
  margin: 18px 0 4px;
  color: #28218b;
  font-size: 1.2rem;
}

.image-card p {
  margin: 0 0 8px;
  color: #625e70;
  font-size: 0.8rem;
}

.mission-box {
  max-width: 1080px;
  margin: 90px auto 0;
  padding: 60px 9%;
  text-align: center;
  background: #e8e6ff;
  border-radius: 28px;
}

.mission-box small {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  color: #9c7200;
  background: #fff0bf;
  border-radius: 999px;
  font-weight: 800;
}

.mission-box h2 {
  margin: 0 auto 24px;
  max-width: 820px;
  color: #07066e;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.12;
}

.value-grid,
.benefit-grid,
.doc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.value-card,
.benefit-card,
.doc-card {
  padding: 30px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 16px 28px rgba(24, 17, 72, 0.09);
}

.value-card h3,
.benefit-card h3,
.doc-card h3 {
  margin: 14px 0 10px;
  color: #090774;
  font-size: 1.15rem;
}

.value-card p,
.benefit-card p,
.doc-card p {
  margin: 0;
  color: #5d5b68;
  font-size: 0.87rem;
  line-height: 1.45;
}

.dot-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: #472671;
  border-radius: 50%;
  font-weight: 900;
}

.trust-list {
  display: grid;
  gap: 25px;
}

.trust-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
}

.trust-list h3 {
  margin: 0 0 5px;
  color: #090774;
  font-size: 1.2rem;
}

.trust-list p {
  margin: 0;
  color: #545261;
  line-height: 1.45;
}

.services-hero { background-image: url("assets/hero3.jpg"); }
.services-hero h1 {
  max-width: 980px;
}
.service-hero-lead {
  display: block;
  color: #fff;
  font-size: clamp(3.6rem, 7vw, 6.2rem);
  line-height: 0.95;
}

.service-hero-rest {
  display: block;
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(1.55rem, 2.55vw, 2.45rem);
  line-height: 1.18;
  font-weight: 600;
}

.about-hero { background-image: url("assets/hero2.jpg"); }
.pricing-hero { background-image: url("assets/hero4.jpg"); }
.tracking-hero { background-image: url("assets/hero5.jpg"); }
.loyalty-hero { background-image: url("assets/hero6.jpg"); }
.book-hero { background-image: url("assets/hero6.jpg"); }


.service-grid,
.booking-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.panel {
  padding: 34px;
}

.panel h3 {
  margin: 0 0 18px;
  color: #07066e;
  font-size: 1.45rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: #4b4859;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  color: #fff;
  background: #472671;
  border-radius: 50%;
  font-size: 0.7rem;
}

.guidelines {
  margin-top: 70px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7e6ef;
  border-radius: 10px;
}

.guidelines header {
  padding: 30px 34px;
}

.guideline-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #ecebf2;
}

.guideline-cols > div {
  padding: 32px 34px;
}

.guideline-cols > div + div {
  border-left: 1px solid #ecebf2;
}

.warning-title { color: #d73535; }
.restricted-title { color: #997018; }

.cta-photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 80px 7%;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(0, 20, 40, 0.48), rgba(0, 20, 40, 0.48)), url("assets/pages/services-cta.png") center/cover;
}

.cta-photo h2,
.dark-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.yellow-btn,
.green-btn,
.blue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border: 0;
  border-radius: 6px;
  font-weight: 850;
}

.yellow-btn { color: #18122a; background: #ffb400; }
.green-btn { color: #fff; background: #25d366; }
.blue-btn { color: #fff; background: #07066e; }

.rate-card {
  overflow: hidden;
}

.rate-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
}

.rate-table th,
.rate-table td {
  padding: 22px 34px;
  text-align: left;
  border-top: 1px solid #f0eff5;
}

.rate-table th {
  color: #666271;
  background: #f1f1f2;
  font-size: 0.82rem;
}

.rate-table td {
  color: #555260;
  font-weight: 700;
}

.rate-table strong {
  color: #08066f;
  font-size: 1.45rem;
}

.notes-card,
.dark-cta {
  margin-top: 70px;
  padding: 46px 60px;
  color: #fff;
  background: #43276b;
  border-radius: 14px;
}

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

.notes-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.dark-cta {
  text-align: center;
  background: #07066e;
}

.tracking-search {
  max-width: 760px;
  margin: 44px auto 90px;
  padding: 28px 34px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 30px rgba(19, 17, 60, 0.18);
}

.tracking-search label {
  display: block;
  margin-bottom: 12px;
  color: #07066e;
  font-weight: 800;
}

.tracking-search .tracking-row {
  min-height: 56px;
}

.tracking-empty {
  max-width: 760px;
  margin: -60px auto 76px;
  padding: 54px 36px;
  text-align: center;
  background: #fff;
  border: 1px solid #e4e1ef;
  border-radius: 10px;
  box-shadow: 0 22px 38px rgba(24, 17, 72, 0.1);
}

.tracking-empty[hidden] {
  display: none;
}

.tracking-empty-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  color: #7b5791;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.tracking-empty-icon::after {
  content: "";
  position: absolute;
  right: -11px;
  bottom: -7px;
  width: 17px;
  height: 4px;
  background: currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
}

.tracking-empty h2 {
  margin: 0 0 10px;
  color: #07066e;
  font-size: 1.6rem;
}

.tracking-empty p {
  max-width: 540px;
  margin: 0 auto;
  color: #6a6674;
}

.status-card {
  max-width: 1020px;
  margin: -60px auto 76px;
  padding: 48px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 22px 38px rgba(24, 17, 72, 0.1);
}

.status-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid #ecebf2;
}

.status-head h2 {
  margin: 8px 0 0;
  color: #07066e;
  font-size: clamp(1.6rem, 2.5vw, 2.45rem);
}

.pill {
  display: inline-flex;
  padding: 6px 15px;
  color: #70500a;
  background: #ffe0a4;
  border-radius: 999px;
  font-weight: 850;
  font-size: 0.78rem;
}

.arrival {
  min-width: 170px;
  padding: 16px;
  color: #171478;
  background: #f7f7fb;
  border: 1px solid #d7d6e4;
  border-radius: 10px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 54px 0;
  text-align: center;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  color: #fff;
  background: #07066e;
  border-radius: 50%;
  font-weight: 900;
}

.timeline .current span {
  color: #221600;
  background: #ffb400;
  box-shadow: 0 0 0 8px rgba(255, 180, 0, 0.18);
}

.timeline .complete span {
  color: #fff;
  background: #07066e;
}

.timeline .muted span {
  color: #777;
  background: #dedee3;
}

.timeline p {
  margin: 0;
  color: #07066e;
  font-size: 0.82rem;
  font-weight: 850;
}

.timeline .muted p { color: #96949e; }

.info-alert {
  padding: 26px 32px;
  color: #7a570d;
  background: #fff3df;
  border-left: 5px solid #a97610;
  border-radius: 0 8px 8px 0;
}

.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 34px;
  background: #fff;
  border: 2px dashed #ecebf2;
  border-radius: 12px;
}

.loyalty-card-art {
  width: min(100%, 520px);
  margin-inline: auto;
  line-height: 0;
  filter: drop-shadow(0 18px 28px rgba(18, 7, 50, 0.28));
}

.loyalty-card-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 527 / 333;
  object-fit: contain;
}

.loyalty-form {
  max-width: 1060px;
  margin: 70px auto 0;
  padding: 48px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(24, 17, 72, 0.1);
}

.form-section {
  margin-top: 36px;
}

.form-section h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #090774;
  font-size: 1.35rem;
}

.step-dot {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: #07066e;
  border-radius: 50%;
  font-size: 0.9rem;
}

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

.field {
  display: grid;
  gap: 8px;
  color: #6a6674;
  font-weight: 700;
  font-size: 0.86rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  min-height: 48px;
  padding: 0 16px;
  color: #312b3c;
  background: #fff;
  border: 1px solid #dedde8;
  border-radius: 6px;
  font: inherit;
}

.field textarea {
  min-height: 100px;
  padding-top: 14px;
}

.booking-page {
  background: linear-gradient(180deg, #fff 0 45%, #eeedff 45% 74%, #fff 74%);
}

.booking-form {
  padding: 40px;
}

.booking-sidebar {
  display: grid;
  align-content: start;
  gap: 36px;
}

.side-card {
  padding: 30px;
}

.whatsapp-card {
  color: #fff;
  background: #25d366;
}

.hours-card {
  background: #e9e7fb;
}

.warehouse-card {
  overflow: hidden;
  min-height: 250px;
  padding: 0;
  color: #fff;
  background: linear-gradient(rgba(8, 7, 88, 0.35), rgba(8, 7, 88, 0.6)), url("assets/pages/warehouse.png") center/cover;
}

.warehouse-card p {
  margin: 200px 28px 24px;
  font-size: 1.15rem;
}

h1,
.hero h1,
.page-hero h1 {
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 65px;
  letter-spacing: 0;
}

h2,
.section-heading h2,
.copy-block h2,
.panel h2,
.rate-card h2,
.mission-box h2,
.dark-cta h2,
.cta-photo h2 {
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0;
}

p,
.hero p,
.page-hero p,
.copy-block p {
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  letter-spacing: 0;
}

.accent,
.pricing-hero .accent,
.tracking-hero h1,
.yellow-btn {
  color: var(--brand-yellow);
}

.yellow-btn {
  color: #18122a;
  background: var(--brand-yellow);
}

.section-heading h2,
.copy-block h2,
.panel h2,
.rate-card h2,
.mission-box h2,
.value-card h3,
.benefit-card h3,
.doc-card h3,
.trust-list h3 {
  color: #07066e;
}

.book-link,
.tracking-row button,
.primary-action {
  background: var(--brand-purple);
}

@media (max-width: 900px) {
  .page-hero {
    min-height: 480px;
  }

  .two-col,
  .service-grid,
  .booking-layout,
  .guideline-cols,
  .notes-grid {
    grid-template-columns: 1fr;
  }

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

  .guideline-cols > div + div {
    border-left: 0;
    border-top: 1px solid #ecebf2;
  }

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

@media (max-width: 620px) {
  .page-hero {
    padding: 70px 6%;
  }

  .value-grid,
  .benefit-grid,
  .doc-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .status-head,
  .support-strip,
  .rate-header {
    flex-direction: column;
  }

  .rate-table {
    min-width: 720px;
  }

  .rate-card {
    overflow-x: auto;
  }

  .notes-card,
  .dark-cta,
  .loyalty-form,
  .booking-form,
  .status-card {
    padding: 28px 20px;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    min-height: 78px;
    padding: 8px 5%;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 5%;
    background: #fff;
    border-top: 1px solid rgba(123, 87, 145, 0.12);
    box-shadow: 0 18px 30px rgba(29, 16, 46, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 220ms ease;
  }

  .site-header.nav-open .main-nav {
    max-height: 420px;
    padding-top: 10px;
    padding-bottom: 14px;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(123, 87, 145, 0.1);
  }

  .book-link {
    justify-self: end;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy,
  .tracking-card {
    grid-column: 1;
  }

  .tracking-card {
    justify-self: start;
    margin-top: 0;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    gap: 10px;
  }

  .main-nav {
    position: static;
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
  }

  .site-header.nav-open .main-nav {
    padding-top: 8px;
    padding-bottom: 4px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .brand-mark {
    width: 132px;
    height: 49px;
    flex-basis: 132px;
  }

  .book-link {
    display: inline-flex;
    grid-column: 1 / -1;
    order: 4;
    justify-self: stretch;
    width: 100%;
    max-height: 0;
    min-height: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 180ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .site-header.nav-open .book-link {
    display: inline-flex;
    position: static;
    min-height: 42px;
    height: 42px;
    max-height: 42px;
    padding: 0 14px;
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: 0;
    padding: 92px 6% 315px;
    background-position: center, center, center, center, left 4% bottom 44px, center;
    background-size: cover, cover, cover, cover, min(96vw, 560px) auto, cover;
  }

  .language-switcher {
    top: 18px;
    right: 6%;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    text-shadow: 3px 4px 0 rgba(16, 8, 24, 0.34);
  }

  .hero p {
    font-size: 1rem;
  }

  .whatsapp {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.95rem;
  }

  .whatsapp svg {
    width: 20px;
    height: 20px;
  }

  .tracking-card {
    padding: 24px 20px;
    min-height: auto;
  }

  .tracking-card h2 {
    font-size: 1.75rem;
  }

  .tracking-card p {
    margin-bottom: 18px;
    font-size: 0.9rem;
  }

  .tracking-row {
    flex-direction: column;
    gap: 9px;
  }

  .tracking-row input,
  .tracking-row button {
    width: 100%;
    min-height: 42px;
    border-radius: 5px;
  }

  .trust-strip,
  .feature-grid,
  .step-list,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 17px;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .features,
  .process,
  .testimonials {
    padding-left: 6%;
    padding-right: 6%;
  }

  .feature-card,
  .testimonial-card {
    min-height: auto;
  }

  .step-list {
    gap: 30px;
    max-width: 460px;
  }

  .step-list li {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 17px;
  }

  .step-list li:not(:last-child)::after {
    top: 50px;
    left: 22px;
    width: 1px;
    height: calc(100% - 18px);
  }

  .step-list span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .step-list h3 {
    margin-top: 3px;
  }

  .site-footer {
    gap: 25px;
    padding: 48px 6% 18px;
  }

  .footer-links h2,
  .footer-contact {
    margin-top: 0;
    padding-top: 0;
  }

  .footer-logo .brand-mark {
    width: 150px;
    height: 56px;
    flex-basis: 150px;
  }

  .footer-brand p,
  .footer-contact p,
  .footer-links a {
    font-size: 0.9rem;
  }

  .copyright {
    text-align: left;
    line-height: 1.6;
  }
}

.hero,
.page-hero {
  min-height: 100vh;
}

.hero > .language-switcher,
.page-hero > .language-switcher {
  position: absolute;
  top: 34px;
  right: 5%;
  left: auto;
  z-index: 5;
  display: inline-flex;
  width: auto;
  max-width: max-content;
  min-width: 0;
  justify-self: auto;
  align-self: auto;
}

@media (max-width: 760px) {
  .hero > .language-switcher,
  .page-hero > .language-switcher {
    top: 18px;
    right: 6%;
  }
}

.form-status {
  margin: 16px 0 0;
  padding: 12px 14px;
  color: #2d2450;
  background: #f3eff8;
  border-left: 4px solid var(--brand-purple);
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-status[data-type="success"] {
  color: #12552b;
  background: #eaf8ef;
  border-left-color: #25d366;
}

.form-status[data-type="error"] {
  color: #7a1c1c;
  background: #fff0f0;
  border-left-color: #d83a3a;
}

.is-invalid input,
.is-invalid select,
.is-invalid textarea,
input.is-invalid,
select.is-invalid,
textarea.is-invalid,
.id-upload-card.is-invalid,
.hazard-field.is-invalid {
  border-color: #d83a3a !important;
  box-shadow: 0 0 0 4px rgba(216, 58, 58, 0.12);
}

.declaration-checks label.is-invalid {
  color: #9f1d35;
}

.customer-portal-hero .two-col {
  align-items: center;
}

.customer-hero-card {
  justify-self: end;
  width: min(100%, 430px);
  padding: 34px;
  color: #fff;
  background: rgba(22, 4, 48, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 48px rgba(18, 5, 40, 0.25);
  backdrop-filter: blur(8px);
}

.customer-hero-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: #21112e;
  background: var(--brand-yellow);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.customer-hero-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.1;
}

.customer-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.6;
}

.customer-declaration-section {
  padding: 88px 7% 110px;
  background: linear-gradient(180deg, #f2efff 0%, #fff 58%, #f6f3ff 100%);
}

.customer-declaration-form {
  max-width: 1050px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(123, 87, 145, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(43, 18, 84, 0.14);
}

.booking-layout .customer-declaration-form {
  max-width: none;
  margin: 0;
}

.booking-layout {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.booking-layout .booking-sidebar {
  display: none;
}

.customer-six-step-form {
  padding: clamp(24px, 3vw, 38px);
  border-radius: 18px;
}

.declaration-stepper {
  display: grid;
  grid-template-columns: 42px minmax(44px, 120px) 42px minmax(44px, 120px) 42px;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0 auto 42px;
}

.six-stepper {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  background: #fafbfe;
  border: 1px solid #e2e4eb;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(123, 87, 145, 0.03);
}

.declaration-step {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #6f6f78;
  background: #fff;
  border: 4px solid #96969a;
  border-radius: 50%;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.six-stepper .declaration-step {
  width: auto;
  min-width: 0;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  color: #556070;
  background: #fff;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(24, 17, 72, 0.07);
  font-size: 1.12rem;
  white-space: nowrap;
  overflow: hidden;
}

.six-stepper .declaration-step.is-active {
  flex-basis: 190px;
  justify-content: flex-start;
  padding: 0 20px;
  color: #fff;
  background: var(--purple-800);
  border: 0;
  box-shadow: 0 8px 18px rgba(67, 32, 108, 0.16);
  transform: none;
}

.six-stepper .declaration-step.is-complete {
  color: var(--purple-800);
  background: #f1e9fb;
  border: 0;
}

.six-stepper .declaration-step span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 220ms ease, opacity 180ms ease;
}

.six-stepper .declaration-step.is-active span {
  max-width: 140px;
  opacity: 1;
}

.declaration-step.is-active {
  color: var(--purple-800);
  border-color: #e12cab;
  box-shadow: 0 0 0 7px rgba(225, 44, 171, 0.1);
  transform: scale(1.04);
}

.declaration-step.is-complete {
  color: #fff;
  background: var(--brand-purple);
  border-color: var(--brand-purple);
}

.declaration-line {
  height: 2px;
  background: #96969a;
  transition: background 220ms ease;
}

.declaration-line.is-complete {
  background: var(--brand-purple);
}

.declaration-viewport {
  overflow: hidden;
  transition: height 260ms ease;
}

.declaration-track {
  display: flex;
  align-items: flex-start;
  transition: transform 430ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.declaration-panel {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 2px 2px;
}

.panel-title {
  margin-bottom: 28px;
  text-align: center;
}

.compact-panel-title {
  padding-top: 18px;
  border-top: 2px solid #273653;
}

.panel-title span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  color: var(--purple-800);
  background: #f3eff8;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.panel-title h3 {
  margin: 0 0 8px;
  color: #07066e;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

.panel-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.file-field {
  position: relative;
  padding: 16px;
  color: #21112e;
  background: #fbfaff;
  border: 1px dashed rgba(123, 87, 145, 0.36);
  border-radius: 8px;
}

.file-field input {
  margin-top: 10px;
  padding: 10px;
  background: #fff;
}

.file-field span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.id-upload-panel,
.signature-box,
.portal-note,
.final-summary > div,
.packing-note {
  border: 1px solid #e1e4ec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(38, 31, 58, 0.05);
}

.id-upload-panel {
  margin-top: 28px;
  padding: 24px;
}

.id-upload-panel p {
  margin: 0 0 20px;
  color: #2f3644;
  font-size: 1rem;
}

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

.id-upload-card {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 24px;
  text-align: center;
  color: #21112e;
  background: #f8fbff;
  border: 2px dashed #e0e3ea;
  border-radius: 14px;
  font-weight: 800;
}

.id-upload-card input {
  margin: 16px auto 8px;
}

.id-upload-card span {
  display: block;
  max-width: 340px;
  color: #6a607a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.packing-note {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
  padding: 26px;
}

.packing-note span {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 9px;
  background: #2f80ed;
  border-radius: 50%;
}

.packing-note p {
  margin: 0;
  color: #6a607a;
  font-size: 1.03rem;
  line-height: 1.55;
}

.packing-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 18px;
  background: #f8f6ff;
  border: 1px solid rgba(123, 87, 145, 0.12);
  border-radius: 8px;
}

.packing-actions strong {
  display: block;
  color: #07066e;
  font-size: 1.05rem;
}

.packing-actions p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--brand-purple);
  background: #fff;
  border: 1px solid rgba(123, 87, 145, 0.35);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.packing-list {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
  min-width: 0;
}

.packing-card {
  min-width: 0;
  max-width: 100%;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(123, 87, 145, 0.14);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(43, 18, 84, 0.08);
}

.packing-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(123, 87, 145, 0.12);
}

.packing-card-head strong {
  color: #07066e;
}

.remove-box-btn {
  min-height: 34px;
  padding: 0 12px;
  color: #9f1d35;
  background: #fff4f6;
  border-color: #ffd3da;
}

.packing-card-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(86px, 0.5fr));
  gap: 12px;
  align-items: end;
  min-width: 0;
}

.packing-card-grid > *,
.packing-card-grid input,
.packing-card-grid select,
.packing-card-grid textarea {
  min-width: 0;
  max-width: 100%;
}

.packing-card-grid input,
.packing-card-grid select,
.packing-card-grid textarea {
  width: 100%;
}

.packing-card .field textarea {
  min-height: 76px;
}

.hazard-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: #7b5a00;
  font-size: 0.9rem;
  font-weight: 700;
}

.declaration-extra-grid {
  margin-top: 16px;
}

.declaration-checks {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding: 18px;
  color: #2b2135;
  background: #fff8e7;
  border-left: 4px solid var(--brand-yellow);
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.declaration-agreement {
  background: #fbfcff;
  border: 1px solid #e1e4ec;
  border-left: 0;
  border-radius: 16px;
}

.declaration-agreement label {
  padding: 12px 0;
  color: #26303d;
  font-weight: 750;
}

.toggle-all-row {
  border-bottom: 1px solid #e4e6ed;
}

.declaration-checks label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.declaration-checks input {
  margin-top: 4px;
}

.declaration-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.declaration-summary div {
  padding: 18px;
  text-align: center;
  background: #f8f6ff;
  border: 1px solid rgba(123, 87, 145, 0.12);
  border-radius: 8px;
}

.declaration-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.declaration-summary strong {
  color: #07066e;
  font-size: 1.35rem;
}

.declaration-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(123, 87, 145, 0.12);
}

.declaration-submit {
  display: none;
}

.customer-declaration-form[data-step="2"] .declaration-next {
  display: none;
}

.customer-declaration-form[data-step="2"] .declaration-submit {
  display: inline-flex;
}

.customer-declaration-form[data-step="0"] .declaration-back {
  visibility: hidden;
}

.declaration-result {
  margin-top: 22px;
  padding: 22px;
  background: #ecf9f1;
  border: 1px solid #9de0b8;
  border-radius: 8px;
  color: #12552b;
}

.declaration-result h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.declaration-result strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.5rem;
}

.signature-box {
  max-width: 520px;
  margin: 32px auto 0;
  padding: 24px;
}

.signature-box h4 {
  margin: 0 0 16px;
  color: var(--purple-800);
  text-transform: uppercase;
}

.signature-date-note {
  margin: 16px 0 0;
  color: #6a6674;
  font-size: 0.88rem;
  line-height: 1.5;
}

.customer-declaration-form textarea[readonly] {
  color: #443b50;
  background: #f6f4fa;
  cursor: default;
}

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

.final-summary > div {
  padding: 22px;
}

.final-summary span {
  display: block;
  margin-bottom: 8px;
  color: #6a607a;
  font-weight: 800;
  text-transform: uppercase;
}

.final-summary strong {
  display: block;
  color: var(--purple-800);
  font-size: 1.15rem;
}

.final-summary p {
  margin: 8px 0 0;
  color: #6a607a;
}

.portal-note {
  margin-top: 26px;
  padding: 24px;
  color: #26303d;
  font-size: 1rem;
  line-height: 1.6;
}

.customer-declaration-form[data-step="5"] .declaration-next {
  display: none;
}

.customer-declaration-form[data-step="5"] .declaration-submit {
  display: inline-flex;
}

.customer-declaration-form[data-step="2"] .declaration-next {
  display: inline-flex;
}

.customer-declaration-form[data-step="2"] .declaration-submit {
  display: none;
}

@media (max-width: 900px) {
  .customer-hero-card {
    justify-self: start;
  }

  .packing-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .six-stepper {
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 18px;
  }

  .six-stepper .declaration-step {
    flex: 0 0 48px;
    height: 48px;
  }

  .six-stepper .declaration-step.is-active {
    flex-basis: 160px;
    padding: 0 16px;
  }

  .declaration-summary {
    grid-template-columns: 1fr;
  }

  .id-upload-grid,
  .final-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .customer-declaration-section {
    padding: 64px 5% 82px;
  }

  .customer-declaration-form {
    padding: 22px 16px;
  }

  .declaration-stepper {
    grid-template-columns: 38px minmax(26px, 72px) 38px minmax(26px, 72px) 38px;
    margin-bottom: 32px;
  }

  .declaration-step {
    width: 38px;
    height: 38px;
    border-width: 3px;
  }

  .packing-actions,
  .packing-card-head,
  .declaration-nav {
    align-items: stretch;
    flex-direction: column;
  }

  .packing-card-grid {
    grid-template-columns: 1fr;
  }

  .packing-card {
    padding: 20px 16px;
  }

  .customer-declaration-form[data-step="0"] .declaration-back {
    display: none;
  }
}

.services-hero {
  align-items: center;
  min-height: 100vh;
  padding: 74px 7.4% 78px;
  background-position: center;
}

.services-hero::before {
  background: linear-gradient(180deg, var(--purple-900) 10%, #ffffff00 70%);
  opacity: 0.9;
}

.services-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.32px;
}

.services-hero .service-hero-lead {
  display: inline;
  color: #fff;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 48px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -0.32px;
}

.services-hero .service-hero-rest {
  display: inline;
  max-width: none;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
}

@media (max-width: 760px) {
  .services-hero {
    min-height: 100vh;
    padding: 92px 6% 78px;
  }

  .services-hero h1 {
    font-size: clamp(1.55rem, 7.2vw, 32px);
    line-height: 40px;
  }

  .services-hero .service-hero-lead {
    font-size: clamp(2.3rem, 11vw, 48px);
    line-height: 40px;
  }
}

/* Customer portal form brought over from the backend-prep system */
.booking-page {
  background: linear-gradient(180deg, #fff 0 32%, #f8fafc 32% 100%);
}

.booking-layout .customer-declaration-form {
  border: 1px solid #e5e7eb;
  border-top: 10px solid #3d2562;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  padding: 18px;
}

.booking-layout .six-stepper {
  display: flex;
  gap: 6px;
  justify-content: space-between;
  padding: 6px;
  margin-bottom: 34px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: none;
}

.booking-layout .six-stepper .declaration-step,
.booking-layout .six-stepper .declaration-step.is-active,
.booking-layout .six-stepper .declaration-step.is-complete {
  flex: 1 1 0;
  height: 54px;
  min-width: 0;
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
  transform: none;
  font-size: clamp(0.78rem, 1.05vw, 1rem);
  font-weight: 850;
}

.booking-layout .six-stepper .declaration-step {
  color: #64748b;
  background: transparent;
}

.booking-layout .six-stepper .declaration-step.is-active {
  color: #fff;
  background: #3d2562;
}

.booking-layout .six-stepper .declaration-step.is-complete {
  color: #3d2562;
  background: #f3e8ff;
}

.booking-layout .six-stepper .declaration-step span,
.booking-layout .six-stepper .declaration-step.is-active span {
  max-width: none;
  opacity: 1;
  overflow: visible;
}

.booking-layout .declaration-panel {
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
}

.booking-layout .compact-panel-title {
  padding-top: 24px;
  border-top: 2px solid #273653;
}

.booking-layout .panel-title h3 {
  color: #07066e;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.08;
  font-weight: 900;
}

.booking-layout .panel-title p {
  max-width: 760px;
  color: #6b6278;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 600;
}

.booking-layout .field {
  color: #5c506d;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-layout .field input,
.booking-layout .field select,
.booking-layout .field textarea {
  min-height: 58px;
  margin-top: 8px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  color: #1f2937;
  background: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.booking-layout .field textarea {
  min-height: 132px;
}

.billing-statement {
  display: grid;
  gap: 24px;
}

.billing-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
}

.billing-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  color: #241735;
}

.billing-table th {
  padding: 18px 12px;
  background: #f1f5f9;
  color: #1f2937;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.billing-table th:not(:first-child),
.billing-table td:not(:first-child) {
  text-align: center;
}

.billing-table th:last-child,
.billing-table td:last-child {
  text-align: right;
}

.billing-table td {
  padding: 22px 12px;
  border-bottom: 1px solid #eef2f7;
  vertical-align: top;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.05rem;
  font-weight: 800;
}

.billing-table td:first-child {
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
}

.billing-table td span {
  display: block;
  margin-top: 4px;
  color: #6b6278;
  font-size: 0.82rem;
  font-weight: 500;
}

.billing-table input {
  width: 110px;
  min-height: 42px;
  border: 1px solid #d7dce7;
  border-radius: 10px;
  color: #1f2937;
  background: #fff;
  font: inherit;
  text-align: center;
}

.billing-total-bar {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 18px;
  align-items: end;
}

.billing-total-bar > div {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f8fafc;
}

.billing-total-bar span {
  color: #5c506d;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.billing-total-bar strong {
  color: #3d2562;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.booking-layout .yellow-btn,
.booking-layout .outline-btn {
  min-height: 56px;
  border-radius: 999px;
  padding-inline: 28px;
  font-weight: 900;
}

.booking-layout .declaration-next,
.booking-layout .declaration-submit {
  color: #fff;
  background: #3d2562;
}

.booking-layout .id-upload-panel,
.booking-layout .signature-box,
.booking-layout .portal-note,
.booking-layout .final-summary > div,
.booking-layout .packing-note,
.booking-layout .packing-card,
.booking-layout .declaration-summary div {
  border-color: #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

@media (max-width: 900px) {
  .booking-layout .six-stepper {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .booking-layout .six-stepper .declaration-step,
  .booking-layout .six-stepper .declaration-step.is-active,
  .booking-layout .six-stepper .declaration-step.is-complete {
    flex: 0 0 auto;
    min-width: max-content;
  }

  .booking-layout .declaration-panel {
    padding: 14px;
  }

  .billing-total-bar {
    grid-template-columns: 1fr;
  }
}
