/* Homepage layout — uses shared site-theme.css tokens */
:root {
  --home-ink: var(--tc-ink, #07111f);
  --home-navy: var(--tc-navy, #0c1f3a);
  --home-teal: var(--tc-teal, #1a8a8c);
  --home-amber: var(--tc-amber, #d4a017);
  --home-sand: var(--tc-sand, #f3efe6);
  --home-mist: var(--tc-mist, #e8eef4);
  --home-muted: var(--tc-muted, #5c6b7a);
  --home-white: var(--tc-white, #fafbfc);
  --home-font-display: var(--tc-font-display, "Unbounded", system-ui, sans-serif);
  --home-font-body: var(--tc-font-body, "Manrope", system-ui, sans-serif);
}

.home-page {
  font-family: var(--home-font-body);
  color: var(--home-ink);
  background: var(--home-sand);
  overflow-x: hidden;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page .home-brand {
  font-family: var(--home-font-display);
  text-transform: none;
  letter-spacing: -0.02em;
}

.home-page .loader .spinner-border {
  color: var(--home-teal) !important;
  border-color: var(--home-teal);
  border-right-color: transparent;
}
.home-page #overlayer {
  background: var(--home-ink);
}

/* —— Hero (below shared white navbar) —— */
.home-hero {
  position: relative;
  min-height: calc(100vh - 88px);
  min-height: calc(100dvh - 88px);
  display: flex;
  align-items: flex-end;
  color: var(--home-white);
  overflow: hidden;
}
.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: homeKen 22s ease-in-out infinite alternate;
}
@keyframes homeKen {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
.home-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.55) 0%, rgba(7, 17, 31, 0.35) 40%, rgba(7, 17, 31, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 17, 31, 0.75) 0%, rgba(7, 17, 31, 0.2) 55%, transparent 100%);
  z-index: 1;
}
.home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3.5rem 0 3.5rem;
}
.home-brand {
  display: block;
  font-size: clamp(2.4rem, 7vw, 4.75rem);
  font-weight: 700;
  line-height: 0.95;
  color: #fff;
  margin: 0 0 1rem;
  animation: homeRise 0.9s ease both;
}
.home-hero__headline {
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 500;
  max-width: 28ch;
  margin: 0 0 0.75rem;
  color: #fff;
  animation: homeRise 0.9s ease 0.12s both;
}
.home-hero__lede {
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.75rem;
  animation: homeRise 0.9s ease 0.22s both;
}
@keyframes homeRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Track form — keep IDs/behavior, previous mobile-friendly layout */
.home-track {
  max-width: 520px;
  animation: homeRise 0.9s ease 0.32s both;
}
.shipment-type-toggle-home {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  gap: 4px;
  margin-bottom: 0.85rem;
}
.toggle-label-home {
  margin: 0;
  cursor: pointer;
}
.toggle-label-home input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.toggle-option-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.toggle-label-home input[type="radio"]:checked + .toggle-option-home {
  background: var(--home-amber);
  color: var(--home-ink);
}
.home-track__row {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.home-track__row .form-control {
  height: 56px;
  border: 0;
  border-radius: 0;
  background: #fff !important;
  font-size: 1rem;
  flex: 1;
  min-width: 0;
}
.home-track__row .form-control:focus {
  box-shadow: inset 0 0 0 2px var(--home-amber);
}
.home-track__submit {
  border: 0;
  background: var(--home-teal);
  color: #fff;
  font-weight: 700;
  font-family: var(--home-font-body);
  padding: 0 1.35rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.home-track__submit:hover {
  background: #147275;
  color: #fff;
}
.home-track .alert {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* —— Sections —— */
.home-section {
  padding: 4.5rem 0;
}
.home-section--ink {
  background: var(--home-navy);
  color: var(--home-white);
}
.home-section--mist {
  background: var(--home-mist);
}
.home-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: inherit;
}
.home-section__lede {
  font-size: 1.05rem;
  color: var(--home-muted);
  max-width: 40ch;
  margin: 0 0 2.25rem;
  line-height: 1.6;
}
.home-section--ink .home-section__lede {
  color: rgba(255, 255, 255, 0.7);
}

.home-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.home-services a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition: padding-left 0.25s ease, color 0.2s;
}
.home-services a:hover {
  color: var(--home-amber);
  padding-left: 0.5rem;
  text-decoration: none;
}
.home-services__num {
  font-family: var(--home-font-display);
  font-size: 0.85rem;
  color: var(--home-amber);
  min-width: 2rem;
}
.home-services__name {
  font-family: var(--home-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
}
.home-services__desc {
  display: none;
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}
.home-services__go {
  font-size: 1.25rem;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .home-services a {
    grid-template-columns: 3rem 1fr 2fr auto;
  }
  .home-services__desc {
    display: block;
  }
}

.home-destinations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .home-destinations {
    grid-template-columns: repeat(4, 1fr);
  }
}
.home-destinations a {
  display: block;
  padding: 1.5rem 1rem;
  background: #fff;
  color: var(--home-ink);
  text-decoration: none;
  font-family: var(--home-font-display);
  font-weight: 600;
  font-size: 1.1rem;
  border-left: 3px solid var(--home-teal);
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-destinations a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 31, 58, 0.12);
  color: var(--home-teal);
  text-decoration: none;
}
.home-destinations a span {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--home-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--home-muted);
}

.home-about {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .home-about {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}
.home-about__video {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 0;
}
.home-about__video img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.home-about__video:hover img {
  transform: scale(1.04);
}
.home-about__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--home-amber);
  color: var(--home-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}
.home-about__video:hover .home-about__play {
  transform: translate(-50%, -50%) scale(1.08);
}
.home-about__copy p {
  color: var(--home-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.home-about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.home-about__stats .block-counter-1 {
  margin: 0;
}
.home-about__stats .number {
  display: block;
  font-family: var(--home-font-display);
  font-size: 1.75rem;
  color: var(--home-navy);
  line-height: 1;
  font-weight: 700;
}
.home-about__stats .caption {
  font-size: 0.85rem;
  color: var(--home-muted);
}

.home-team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
@media (min-width: 768px) {
  .home-team {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .home-team {
    grid-template-columns: repeat(6, 1fr);
  }
}
.home-team figure {
  margin: 0 0 0.75rem;
}
.home-team img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(0.15);
}
.home-team h3 {
  font-size: 0.95rem;
  margin: 0 0 0.15rem;
  font-weight: 600;
}
.home-team p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--home-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-contact {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 992px) {
  .home-contact {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}
.home-contact .form-control {
  height: 52px;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  background: #fff !important;
}
.home-contact textarea.form-control {
  height: auto;
  min-height: 140px;
}
.home-contact .form-control:focus {
  border-color: var(--home-teal);
  box-shadow: 0 0 0 3px rgba(26, 138, 140, 0.2);
}
.home-btn {
  display: inline-block;
  background: var(--home-navy);
  color: #fff !important;
  border: 0;
  font-weight: 700;
  font-family: var(--home-font-body);
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}
.home-btn:hover {
  background: var(--home-teal);
  transform: translateY(-1px);
}
.home-contact__aside {
  padding-top: 0.5rem;
}
.home-contact__aside dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--home-muted);
  margin: 1rem 0 0.25rem;
  font-weight: 700;
}
.home-contact__aside dd {
  margin: 0;
  font-size: 1.05rem;
}
.home-contact__aside a {
  color: var(--home-navy);
  font-weight: 600;
}

/* Footer restyle on home */
.home-page .site-footer {
  background: var(--home-ink);
  padding: 3.5rem 0 2rem;
}
.home-page .site-footer .footer-heading {
  font-family: var(--home-font-display);
  font-size: 1rem;
}
.home-page .site-footer a:hover {
  color: var(--home-amber);
}

@media (max-width: 767px) {
  .home-hero__inner {
    padding: 2.5rem 0 2.5rem;
  }
  .home-track__row {
    flex-direction: column;
  }
  .home-track__submit {
    height: 52px;
  }
  .shipment-type-toggle-home {
    display: flex;
    width: 100%;
  }
  .toggle-label-home {
    flex: 1;
  }
  .toggle-option-home {
    width: 100%;
  }
  .home-section {
    padding: 3.25rem 0;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .home-hero__media img,
  .home-brand,
  .home-hero__headline,
  .home-hero__lede,
  .home-track {
    animation: none !important;
  }
}

/* =========================================================
   Home sections, trust bar, footer (nav lives in site-theme.css)
   ========================================================= */

.home-page .home-section,
.home-page .trust-signals,
.home-page .site-footer {
  font-family: var(--home-font-body);
}

.home-page .home-section:not(.home-section--ink):not(.home-section--mist) {
  background: var(--home-sand);
}
.home-page #contact-section {
  background: var(--home-sand);
  border-top: 1px solid rgba(12, 31, 58, 0.08);
}
.home-page #about-section {
  background: var(--home-white);
}
.home-page .home-section__title {
  color: var(--home-navy);
}
.home-page .home-section--ink .home-section__title {
  color: #fff;
}

.home-page .home-more-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.home-page .home-more-links a {
  color: var(--home-navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--home-amber);
  padding-bottom: 2px;
}
.home-page .home-more-links a:hover {
  color: var(--home-teal);
}

.home-page .trust-signals {
  background: var(--home-navy);
  border-top: none;
  margin-top: 0;
  padding: 3rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}
.home-page .trust-signals__item strong {
  color: var(--home-amber);
  font-family: var(--home-font-display);
  font-weight: 600;
  font-size: 0.9rem;
}
.home-page .trust-signals__item span,
.home-page .trust-signals__item span a {
  color: rgba(255, 255, 255, 0.78);
}
.home-page .trust-signals__item span a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.home-page .trust-signals__item span a:hover {
  color: var(--home-amber);
}
.home-page .trust-signals__side h2,
.home-page .trust-signals__side h3,
.home-page .trust-signals__side .h5,
.home-page .trust-signals__side .h6 {
  font-family: var(--home-font-display);
  color: #fff !important;
  text-transform: none;
}
.home-page .trust-signals__side p {
  color: rgba(255, 255, 255, 0.72);
}
.home-page .trust-signals__quotes blockquote {
  color: rgba(255, 255, 255, 0.88);
}
.home-page .trust-signals__quotes cite {
  color: var(--home-amber);
}
.home-page .trust-signals__map {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.home-page .trust-signals__side .btn,
.home-page .trust-signals__side .btn-primary {
  background: var(--home-amber) !important;
  border-color: var(--home-amber) !important;
  color: var(--home-ink) !important;
  font-family: var(--home-font-body);
  font-weight: 700;
  border-radius: 8px;
  padding: 0.55rem 1.1rem;
}
.home-page .trust-signals__side .btn:hover {
  background: #e0b020 !important;
  border-color: #e0b020 !important;
  color: var(--home-ink) !important;
}

.home-page .site-footer {
  background: var(--home-ink);
  margin-top: 0;
  padding-top: 3.5rem;
}
.home-page .site-footer,
.home-page .site-footer p,
.home-page .site-footer li {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--home-font-body);
}
.home-page .site-footer .footer-heading {
  font-family: var(--home-font-display);
  color: #fff !important;
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.home-page .site-footer a {
  color: rgba(255, 255, 255, 0.7);
}
.home-page .site-footer a:hover {
  color: var(--home-amber);
}
.home-page .site-footer .border-top {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}
.home-page .site-footer .copyright,
.home-page .site-footer .copyright strong {
  color: rgba(255, 255, 255, 0.55);
}

.home-page .alert {
  border-radius: 8px;
  font-family: var(--home-font-body);
}
.home-page .home-btn {
  background: var(--home-teal);
}
.home-page .home-btn:hover {
  background: var(--home-navy);
}

.home-page .whatsapp-float {
  box-shadow: 0 8px 24px rgba(7, 17, 31, 0.35);
}
