/* =========================================================
   PT Artha Logistics International
   Main CSS - Light Mode Minimal Professional
   Palette:
   Deep Navy    : #123B5D
   Burnt Orange : #E97824
   White        : #FFFFFF
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #123B5D;
  --navy-dark: #0B2A43;
  --orange: #E97824;
  --orange-soft: #FFF2EA;
  --white: #FFFFFF;

  --bg: #FFFFFF;
  --bg-soft: #F7FAFC;
  --bg-muted: #EEF4F8;

  --text: #203241;
  --text-soft: #637789;
  --border: #DDE7EF;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Manrope', sans-serif;

  --container: 1180px;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --shadow-soft: 0 16px 42px rgba(18, 59, 93, 0.08);
  --shadow-card: 0 24px 60px rgba(18, 59, 93, 0.12);

  --transition: 240ms ease;
}

/* =========================================================
   Reset
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

ul {
  list-style: none;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

/* =========================================================
   Global Layout
   ========================================================= */

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-line {
  border-top: 1px solid var(--border);
}

.section-title-wrap {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-title-wrap.center {
  margin-inline: auto;
  text-align: center;
}

.kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kicker::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: 0.015em;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 720px;
}

.text-center {
  text-align: center;
}

.text-orange {
  color: var(--orange);
}

.text-navy {
  color: var(--navy);
}

/* =========================================================
   Button
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(233, 120, 36, 0.24);
}

.btn-primary:hover {
  background: #D86618;
}

.btn-outline {
  color: var(--navy);
  border: 1px solid var(--border);
  background: var(--white);
}

.btn-outline:hover {
  color: var(--orange);
  border-color: rgba(233, 120, 36, 0.42);
  box-shadow: var(--shadow-soft);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(18, 59, 93, 0.18);
}

.btn-navy:hover {
  background: var(--navy-dark);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   Header / Navbar
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 59, 93, 0.08);
}

.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-logo {
  width: 64px;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: var(--transition);
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

/* =========================================================
   Hero - Full Image Minimal Parallax
   ========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: -8%;
  background:
    linear-gradient(
      180deg,
      rgba(18, 59, 93, 0.42) 0%,
      rgba(18, 59, 93, 0.56) 45%,
      rgba(18, 59, 93, 0.72) 100%
    ),
    url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=2400&q=85") center/cover no-repeat;
  z-index: 1;
  transform: scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(233, 120, 36, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(11, 42, 67, 0.34), transparent, rgba(11, 42, 67, 0.34));
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, 980px);
  margin-inline: auto;
  text-align: center;
  padding: 120px 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--orange);
  border-radius: 999px;
}

.hero-title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(44px, 6.8vw, 82px);
  line-height: 1.04;
  letter-spacing: 0.015em;
  margin-bottom: 22px;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.hero-title span {
  color: var(--orange);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 34px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 4;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero .btn-outline:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 74px;
  background:
    radial-gradient(circle at 84% 16%, rgba(233, 120, 36, 0.12), transparent 26%),
    radial-gradient(circle at 12% 80%, rgba(18, 59, 93, 0.09), transparent 30%),
    var(--white);
  border-bottom: 1px solid rgba(18, 59, 93, 0.08);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 59, 93, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 59, 93, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--orange);
}

.page-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.08;
  max-width: 850px;
  margin-bottom: 18px;
}

.page-lead {
  position: relative;
  z-index: 1;
  color: var(--text-soft);
  font-size: 18px;
  max-width: 740px;
}

/* =========================================================
   Cards / Grids
   ========================================================= */

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: 0 12px 34px rgba(18, 59, 93, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 120, 36, 0.32);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.card-title {
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.32;
  margin-bottom: 12px;
}

.card-text {
  color: var(--text-soft);
  font-size: 15px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  margin-top: 22px;
}

/* =========================================================
   Split Content
   ========================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.split-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-card);
  background: var(--bg-soft);
}

.split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(290px, calc(100% - 48px));
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-soft);
}

.image-badge strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 7px;
}

.image-badge span {
  color: var(--text-soft);
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 15px;
  margin-top: 26px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   Services
   ========================================================= */

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.service-number {
  font-family: var(--font-heading);
  color: rgba(18, 59, 93, 0.13);
  font-size: 46px;
  line-height: 1;
  margin-bottom: 18px;
}

.service-card .card-link {
  margin-top: auto;
}

/* =========================================================
   Tracking Panel
   ========================================================= */

.tracking-panel {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-card);
  padding: 28px;
}

.tracking-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 20%, rgba(233, 120, 36, 0.13), transparent 26%),
    radial-gradient(circle at 18% 70%, rgba(18, 59, 93, 0.10), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F3F8FB 100%);
  border: 1px solid rgba(18, 59, 93, 0.08);
}

.tracking-map::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px dashed rgba(18, 59, 93, 0.16);
  border-radius: 22px;
}

.status-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 250px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-soft);
}

.status-label {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.status-title {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 4px;
}

.status-text {
  color: var(--text-soft);
  font-size: 13px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.metric-box {
  padding: 16px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid rgba(18, 59, 93, 0.07);
}

.metric-value {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.metric-label {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 750;
  margin-top: 4px;
}

/* =========================================================
   Operational Flow
   ========================================================= */

.flow-list {
  display: grid;
  gap: 16px;
}

.flow-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: 0 12px 34px rgba(18, 59, 93, 0.06);
}

.flow-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--orange-soft);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-content h3 {
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 6px;
}

.flow-content p {
  color: var(--text-soft);
  font-size: 14px;
}

/* =========================================================
   Industries
   ========================================================= */

.industry-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: 0 12px 34px rgba(18, 59, 93, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 120, 36, 0.32);
  box-shadow: var(--shadow-soft);
}

.industry-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(233, 120, 36, 0.10);
}

.industry-title {
  position: relative;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.industry-text {
  position: relative;
  color: var(--text-soft);
  font-size: 14px;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 56px;
  background:
    radial-gradient(circle at 86% 18%, rgba(233, 120, 36, 0.12), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F5F9FC 100%);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-card);
}

.cta-box::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 42px solid rgba(18, 59, 93, 0.06);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.cta-title {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.cta-text {
  color: var(--text-soft);
  font-size: 17px;
  margin-bottom: 28px;
}

/* =========================================================
   Contact
   ========================================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: start;
}

.contact-info {
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 12%, rgba(233, 120, 36, 0.12), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F5F9FC 100%);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-info h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--text-soft);
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 900;
}

.contact-detail strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 2px;
}

.contact-detail span,
.contact-detail a {
  color: var(--text-soft);
  font-size: 14px;
}

.form-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.form-control {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border-radius: 15px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--navy);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-control:focus {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(233, 120, 36, 0.12);
}

textarea.form-control {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  color: var(--text-soft);
  font-size: 13px;
  margin-top: 12px;
}

/* =========================================================
   Footer - Light Corporate
   ========================================================= */

.site-footer {
  background: var(--white);
  color: var(--text);
  padding: 72px 0 26px;
  border-top: 1px solid rgba(18, 59, 93, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 38px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(18, 59, 93, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo {
  width: 68px;
  height: auto;
}

.footer-title {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 19px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.footer-text {
  color: var(--text-soft);
  max-width: 360px;
  font-size: 14px;
}

.footer-heading {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: var(--text-soft);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--orange);
  font-weight: 800;
}

/* =========================================================
   Decorative Minimal
   ========================================================= */

.floating-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orange-line {
  width: 54px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
  margin: 18px 0;
}

.soft-divider {
  width: 100%;
  height: 1px;
  background: rgba(18, 59, 93, 0.08);
}

[data-parallax] {
  will-change: transform;
}

/* =========================================================
   Spacing Helpers
   ========================================================= */

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

/* =========================================================
   Fix Full Bleed Hero
   ========================================================= */

.hero {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
}

.hero .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-bg {
  left: 0;
  right: 0;
}

.company-overview-image img {
  height: 560px;
  object-position: center;
}

.company-overview-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(18, 59, 93, 0.42) 100%);
  pointer-events: none;
}

.company-overview-image .image-badge {
  z-index: 2;
}

/* =========================================================
   Services Page - Large 50:50 Cards + Detail Modal
   ========================================================= */

.services-grid-large {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-feature-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(18, 59, 93, 0.08);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(18, 59, 93, 0.08);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 120, 36, 0.34);
  box-shadow: var(--shadow-card);
}

.service-feature-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(18, 59, 93, 0.18) 0%, rgba(18, 59, 93, 0.86) 100%),
    linear-gradient(90deg, rgba(18, 59, 93, 0.28), transparent);
}

.service-feature-content {
  position: relative;
  z-index: 3;
  min-height: 420px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.service-feature-number {
  position: absolute;
  top: 28px;
  left: 34px;
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.42);
}

.service-feature-kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-feature-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.service-feature-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 22px;
}

.service-feature-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.service-feature-action span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.service-modal.is-open {
  display: flex;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 38, 0.64);
  backdrop-filter: blur(10px);
}

.service-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  max-height: min(86vh, 780px);
  overflow: hidden;
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.service-modal-image {
  position: relative;
  min-height: 620px;
  background: var(--bg-soft);
}

.service-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-modal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(18, 59, 93, 0.52) 100%);
}

.service-modal-content {
  padding: 44px;
  overflow-y: auto;
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-soft);
  font-size: 24px;
  line-height: 1;
}

.service-modal-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-modal-title {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  margin-bottom: 16px;
}

.service-modal-desc {
  color: var(--text-soft);
  font-size: 16px;
  margin-bottom: 26px;
}

.service-modal-list {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.service-modal-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-weight: 650;
}

.service-modal-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.modal-open {
  overflow: hidden;
}

/* =========================================================
   Industries Page - Alternating 50:50 Sections
   ========================================================= */

.industry-showcase {
  display: grid;
  gap: 76px;
}

.industry-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.industry-row.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.industry-row.reverse .industry-visual {
  order: 1;
}

.industry-row.reverse .industry-copy {
  order: 2;
}

.industry-copy {
  position: relative;
}

.industry-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--orange-soft);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
}

.industry-heading {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.industry-description {
  color: var(--text-soft);
  font-size: 16px;
  margin-bottom: 26px;
  max-width: 620px;
}

.industry-points {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.industry-points li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-weight: 650;
}

.industry-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-card);
  background: var(--bg-soft);
}

.industry-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.industry-row:hover .industry-visual img {
  transform: scale(1.045);
}

.industry-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(18, 59, 93, 0.54) 100%),
    linear-gradient(90deg, rgba(18, 59, 93, 0.18), transparent);
  pointer-events: none;
}

.industry-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(320px, calc(100% - 48px));
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-soft);
}

.industry-badge strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.industry-badge span {
  color: var(--text-soft);
  font-size: 13px;
}

.industry-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-mini-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--navy);
  border: 1px solid rgba(18, 59, 93, 0.08);
  font-size: 12px;
  font-weight: 800;
}

/* =========================================================
   Contact Page - Office Detail + Requirement Form
   ========================================================= */

.contact-hero-card {
  position: relative;
  margin-top: -38px;
  z-index: 4;
}

.contact-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-overview-item {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-overview-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-overview-label {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-overview-value {
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.contact-main-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.office-card {
  position: sticky;
  top: 110px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-card);
}

.office-map {
  position: relative;
  height: 330px;
  background: var(--bg-soft);
}

.office-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.office-content {
  padding: 30px;
}

.office-content h2 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.office-content p {
  color: var(--text-soft);
  margin-bottom: 24px;
}

.office-detail-list {
  display: grid;
  gap: 18px;
}

.office-detail-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.office-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.office-detail-text strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 4px;
}

.office-detail-text span,
.office-detail-text a {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.requirement-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-card);
  padding: 38px;
}

.requirement-card-header {
  margin-bottom: 28px;
}

.requirement-card-header h2 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  margin-bottom: 12px;
}

.requirement-card-header p {
  color: var(--text-soft);
  font-size: 16px;
}

.form-section-title {
  grid-column: 1 / -1;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 59, 93, 0.08);
}

.form-section-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.contact-note-box {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid rgba(18, 59, 93, 0.08);
  color: var(--text-soft);
  font-size: 14px;
}

.contact-note-box strong {
  color: var(--navy);
}

/* =========================================================
   Tracking Page - Interactive Shipment Progress
   ========================================================= */

.tracking-dashboard {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 28px;
  align-items: start;
}

.shipment-list-panel,
.shipment-progress-panel {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-card);
}

.shipment-list-panel {
  padding: 26px;
  position: sticky;
  top: 110px;
}

.shipment-list-header {
  margin-bottom: 22px;
}

.shipment-list-header h2,
.shipment-progress-header h2 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.shipment-list-header p,
.shipment-progress-header p {
  color: var(--text-soft);
  font-size: 14px;
}

.shipment-card {
  width: 100%;
  text-align: left;
  padding: 20px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: 0 12px 30px rgba(18, 59, 93, 0.06);
  margin-bottom: 14px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.shipment-card:hover,
.shipment-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(233, 120, 36, 0.36);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 100%);
}

.shipment-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.shipment-code {
  color: var(--navy);
  font-weight: 900;
  font-size: 15px;
}

.shipment-status {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.shipment-route {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.shipment-desc {
  color: var(--text-soft);
  font-size: 13px;
}

.shipment-card-progress {
  margin-top: 16px;
  height: 7px;
  border-radius: 999px;
  background: var(--bg-muted);
  overflow: hidden;
}

.shipment-card-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--orange));
}

.shipment-progress-panel {
  overflow: hidden;
}

.shipment-progress-header {
  padding: 30px 32px 0;
}

.tracking-live-map {
  position: relative;
  min-height: 390px;
  margin: 26px 32px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(233, 120, 36, 0.14), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(18, 59, 93, 0.12), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #F3F8FB 100%);
  border: 1px solid rgba(18, 59, 93, 0.08);
}

.tracking-live-map::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px dashed rgba(18, 59, 93, 0.18);
  border-radius: 24px;
}

.tracking-live-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 59, 93, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 59, 93, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.live-route {
  position: absolute;
  left: 10%;
  top: 51%;
  width: 80%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--orange), var(--navy));
  transform: rotate(-8deg);
  z-index: 2;
  overflow: hidden;
}

.live-route::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -25%;
  width: 28%;
  height: 20px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  filter: blur(3px);
  animation: routePulse 2.8s ease-in-out infinite;
}

.live-dot {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 10px rgba(233, 120, 36, 0.14);
  animation: dotPulse 2.4s ease-in-out infinite;
}

.live-dot.origin {
  left: 11%;
  top: 56%;
}

.live-dot.destination {
  right: 10%;
  top: 40%;
}

.live-vessel {
  position: absolute;
  z-index: 4;
  left: var(--ship-position, 62%);
  top: 44%;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: left 700ms ease;
  animation: shipFloat 5s ease-in-out infinite;
}

.live-vessel span {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.live-map-card {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 22px;
  width: 260px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: var(--shadow-soft);
}

.live-map-label {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.live-map-title {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 4px;
}

.live-map-text {
  color: var(--text-soft);
  font-size: 13px;
}

.tracking-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0 32px 30px;
}

.tracking-summary-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid rgba(18, 59, 93, 0.08);
}

.tracking-summary-label {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.tracking-summary-value {
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.progress-overview {
  padding: 30px 32px;
  border-top: 1px solid rgba(18, 59, 93, 0.08);
}

.progress-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.progress-bar-title {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.progress-bar-number {
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
}

.progress-bar-track {
  height: 12px;
  border-radius: 999px;
  background: var(--bg-muted);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: var(--progress, 68%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transition: width 700ms ease;
}

.tracking-timeline {
  display: grid;
  gap: 18px;
  padding: 0 32px 34px;
}

.tracking-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: start;
  opacity: 0.5;
  transition: opacity var(--transition), transform var(--transition);
}

.tracking-step.is-done,
.tracking-step.is-active {
  opacity: 1;
}

.tracking-step.is-active {
  transform: translateX(4px);
}

.tracking-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--bg-soft);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 1px solid rgba(18, 59, 93, 0.08);
}

.tracking-step.is-done .tracking-step-icon,
.tracking-step.is-active .tracking-step-icon {
  background: var(--orange-soft);
  color: var(--orange);
}

.tracking-step-content h3 {
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 4px;
}

.tracking-step-content p {
  color: var(--text-soft);
  font-size: 13px;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* =========================================================
   Loading Screen
   ========================================================= */

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(233, 120, 36, 0.12), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFC 100%);
  transition:
    opacity 520ms ease,
    visibility 520ms ease,
    transform 520ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
}

.loader-card {
  width: min(100% - 48px, 420px);
  padding: 38px 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 59, 93, 0.08);
  box-shadow: 0 28px 80px rgba(18, 59, 93, 0.12);
  backdrop-filter: blur(18px);
  text-align: center;
}

.loader-logo {
  width: 92px;
  height: auto;
  margin: 0 auto 22px;
  animation: loaderFloat 2.4s ease-in-out infinite;
}

.loader-text span {
  display: block;
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 8px;
}

.loader-text small {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.loader-progress {
  position: relative;
  width: 100%;
  height: 8px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bg-muted);
}

.loader-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--orange), var(--navy));
  animation: loaderProgress 1.35s ease-in-out infinite;
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

@keyframes loaderProgress {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(260%);
  }
}