:root {
  --primary: #0b2c5f;
  --secondary: #154a96;
  --accent: #d4af37;
  --dark: #081a36;
  --text: #1f2937;
  --muted: #667085;
  --bg: #f7f9fc;
  --white: #ffffff;
  --border: rgba(11, 44, 95, 0.08);
  --shadow: 0 16px 45px rgba(11, 44, 95, 0.10);
  --radius: 22px;
  --container: 1320px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 20px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.alt-bg {
  background: var(--bg);
}

.center {
  text-align: center;
}

.mt-30 {
  margin-top: 30px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #8a6a07;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
}

h1,
h2,
h3,
h4 {
  color: var(--primary);
  line-height: 1.2;
  overflow-wrap: break-word;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 40px;
  margin-bottom: 18px;
}

h3 {
  font-size: 24px;
}

p,
a,
li {
  overflow-wrap: break-word;
}

p {
  color: var(--muted);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #c8a63a, #b89222);
  color: #081a36;
  box-shadow: 0 15px 30px rgba(184, 146, 34, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #d4af37, #c39a24);
}

.btn-secondary {
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.10);
  color: #b89222;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.18);
  color: #8a6a07;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--secondary);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 44, 95, 0.08);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
}

.logo {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a,
.site-nav > .nav-dropdown > .nav-drop-btn {
  color: var(--primary);
  font-weight: 600;
  height: 88px;
  display: inline-flex;
  align-items: center;
}

.site-nav a.active,
.site-nav .nav-drop-btn.active {
  color: var(--secondary);
}

.site-nav .nav-btn {
  background: linear-gradient(135deg, #c8a63a, #b89222);
  color: #081a36 !important;
  padding: 12px 18px;
  border-radius: 12px;
  height: auto !important;
  box-shadow: 0 10px 20px rgba(184, 146, 34, 0.25);
}

.site-nav .nav-btn:hover {
  background: linear-gradient(135deg, #d4af37, #c39a24);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: var(--primary);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* NAV DROPDOWN */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: stretch;
}

.nav-drop-btn {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.nav-drop-btn::after {
  content: "▾";
  font-size: 12px;
  line-height: 1;
  margin-top: 1px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 8px 0;
  display: none;
  z-index: 1000;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: var(--primary);
  font-weight: 500;
  transition: 0.2s ease;
  white-space: nowrap;
  height: auto;
}

.nav-dropdown-menu a:hover {
  background: rgba(11, 44, 95, 0.05);
  color: var(--secondary);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 26, 54, 0.28), rgba(8, 26, 54, 0.42)),
    url("../images/hero-ship.jpg") 26% center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 20px 0;
}

.hero-text h1,
.hero-text p,
.hero-text .hero-badge {
  color: var(--white);
}

.hero-text h1 {
  text-shadow:
    0 4px 14px rgba(0, 0, 0, 0.75),
    0 10px 30px rgba(0, 0, 0, 0.60);
}

.hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.hero-text p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-card {
  justify-self: end;
  width: 100%;
  max-width: 460px;
  background: rgba(8, 26, 54, 0.60);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 24px;
  padding: 20px;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(8, 26, 54, 0.22);
}

.hero-card h3 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 22px;
}

.hero-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-card li {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  min-width: 0;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-body {
  padding: 22px;
}

.rounded-image {
  border-radius: 24px;
  min-height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.client-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow);
}

.reach-box,
.cta-box {
  margin-top: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.confidentiality-box {
  margin-top: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, #f9fbff, #f3f7fc);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  position: relative;
  background:
    linear-gradient(135deg, #06152d 0%, #081a36 45%, #0b244a 100%);
  color: rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(21, 74, 150, 0.18), transparent 30%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1fr;
  gap: 32px;
  padding: 72px 0 38px;
  align-items: start;
}

.footer-grid > div {
  min-width: 0;
}

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 18px;
  display: block;
  object-fit: contain;
}

.footer-text {
  color: rgba(255, 255, 255, 0.72);
  max-width: 380px;
  margin-bottom: 0;
  line-height: 1.8;
}

.site-footer h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(212, 175, 55, 0.18));
}

.site-footer ul {
  display: grid;
  gap: 12px;
}

.site-footer ul li {
  margin-bottom: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.site-footer iframe {
  width: 100%;
  border: 0;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 18px 0 22px;
  margin-top: 8px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.64);
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.footer-map {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  display: block;
  border: 0;
}

.footer-map-link {
  margin-top: 10px;
  margin-bottom: 0;
}

.footer-map-link a {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  min-height: 58vh;
}

.single-column {
  grid-template-columns: 1fr;
}

.about-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/hero-ship.jpg") center/cover no-repeat;
}

.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.services-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/sea-freight.jpg") center/cover no-repeat;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 0;
}

.service-detail-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-detail-body {
  padding: 26px;
}

.service-detail-body h3 {
  margin-bottom: 12px;
}

.team-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/hero-ship.jpg") center/cover no-repeat;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.expertise-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.expertise-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.15);
  color: #8a6a07;
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 18px;
}

.expertise-card h3 {
  margin-bottom: 12px;
}

.clients-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/logistics.jpg") center/cover no-repeat;
}

.large-note {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/warehouse.jpg") center/cover no-repeat;
}

.contact-layout {
  align-items: start;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.contact-info-box,
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.contact-info-box h3 {
  margin-bottom: 10px;
}

.contact-info-box p,
.contact-info-box a {
  color: var(--muted);
}

.contact-form-card h2 {
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(11, 44, 95, 0.14);
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(21, 74, 150, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.service-single-hero {
  min-height: 58vh;
}

.project-cargo-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/project-cargo.jpg") center/cover no-repeat;
}

.warehouse-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/warehouse.jpg") center/cover no-repeat;
}

.air-freight-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/air-freight.jpg") center/cover no-repeat;
}

.sea-freight-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/sea-freight.jpg") center/cover no-repeat;
}

.insurance-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/insurance.jpg") center/cover no-repeat;
}

.customs-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/customs.jpg") center/cover no-repeat;
}

.land-transport-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/land-transport.jpg") center/cover no-repeat;
}

.logistics-hero {
  background: linear-gradient(rgba(8, 26, 54, 0.65), rgba(8, 26, 54, 0.65)), url("../images/logistics.jpg") center/cover no-repeat;
}

.warehouse-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: stretch;
}

.warehouse-image-card,
.warehouse-text-card,
.warehouse-feature-card,
.warehouse-process-box,
.warehouse-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.warehouse-image-card {
  overflow: hidden;
}

.warehouse-main-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.warehouse-text-card {
  padding: 30px;
}

.warehouse-text-card h3 {
  margin-bottom: 14px;
}

.warehouse-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.warehouse-feature-card {
  padding: 26px;
}

.warehouse-feature-card h3 {
  margin-bottom: 12px;
}

.warehouse-process-box {
  padding: 34px;
}

.warehouse-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.warehouse-step {
  padding: 24px;
}

.warehouse-step span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.15);
  color: #8a6a07;
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-weight: 700;
  margin-bottom: 16px;
}

.warehouse-step h3 {
  margin-bottom: 10px;
}

.air-layout-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.air-content-block,
.air-side-panel,
.air-highlight-card,
.air-bottom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.air-content-block,
.air-side-panel,
.air-bottom-card {
  padding: 30px;
}

.air-side-panel h3 {
  margin-bottom: 14px;
}

.air-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.air-highlight-card {
  padding: 26px;
  text-align: left;
}

.air-highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.15);
  color: #8a6a07;
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.air-highlight-card h3 {
  margin-bottom: 10px;
}

.air-cargo-types {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.air-cargo-type {
  padding: 16px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  color: var(--primary);
  font-weight: 700;
}

.air-bottom-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sea-top-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.sea-intro-card,
.sea-visual-card,
.sea-scope-card,
.sea-band-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.sea-intro-card {
  padding: 32px;
}

.sea-visual-card {
  overflow: hidden;
}

.sea-main-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.sea-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sea-scope-card {
  padding: 28px;
}

.sea-scope-card h3 {
  margin-bottom: 12px;
}

.sea-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sea-use-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px 18px;
  text-align: center;
  color: var(--primary);
  font-weight: 700;
}

.sea-band-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sea-band-card {
  padding: 30px;
}

.dark-card {
  background: linear-gradient(135deg, var(--primary), #123a78);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-card h2,
.dark-card p {
  color: #ffffff;
}

.dark-card .section-tag {
  color: #f2d57a;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.insurance-top-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.insurance-left-card,
.insurance-mini-card,
.insurance-coverage-card,
.insurance-strip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.insurance-left-card {
  padding: 32px;
}

.insurance-right-stack {
  display: grid;
  gap: 18px;
}

.insurance-mini-card {
  padding: 24px;
}

.insurance-mini-card h3 {
  margin-bottom: 10px;
}

.insurance-coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.insurance-coverage-card {
  padding: 26px;
}

.insurance-coverage-number {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.15);
  color: #8a6a07;
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.insurance-coverage-card h3 {
  margin-bottom: 10px;
}

.insurance-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.insurance-strip-card {
  padding: 30px;
}

.accent-card {
  background: linear-gradient(135deg, #f7fbff, #eef5ff);
}

.customs-top-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.customs-top-left,
.customs-note-card,
.customs-card,
.customs-process-step,
.customs-bottom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.customs-top-left {
  padding: 32px;
}

.customs-top-right {
  display: grid;
  gap: 18px;
}

.customs-note-card {
  padding: 24px;
}

.customs-note-card h3 {
  margin-bottom: 10px;
}

.customs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.customs-card {
  padding: 26px;
}

.customs-card h3 {
  margin-bottom: 10px;
}

.customs-process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.customs-process-step {
  padding: 24px;
}

.customs-process-step span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.15);
  color: #8a6a07;
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-weight: 700;
  margin-bottom: 16px;
}

.customs-process-step h3 {
  margin-bottom: 10px;
}

.customs-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.customs-bottom-card {
  padding: 26px;
}

.land-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.land-image-panel,
.land-text-panel,
.land-scope-card,
.land-feature-box,
.land-route-box,
.land-benefit-card,
.land-summary-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.land-image-panel {
  overflow: hidden;
}

.land-main-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.land-text-panel {
  padding: 32px;
}

.land-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.land-scope-card {
  padding: 26px;
}

.land-scope-card h3 {
  margin-bottom: 10px;
}

.land-middle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.land-feature-box,
.land-route-box {
  padding: 30px;
}

.land-route-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.land-route-item {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f9fbff;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
}

.land-benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.land-benefit-card {
  padding: 24px;
}

.land-benefit-no {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.15);
  color: #8a6a07;
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.land-benefit-card h3 {
  margin-bottom: 10px;
}

.land-summary-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 30px;
}

.land-summary-right h3 {
  margin-bottom: 14px;
}

.logistics-top-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.logistics-main-card,
.logistics-side-card,
.logistics-component-card,
.logistics-flow-card,
.logistics-why-card,
.logistics-bottom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.logistics-main-card {
  padding: 32px;
}

.logistics-side-grid {
  display: grid;
  gap: 18px;
}

.logistics-side-card {
  padding: 24px;
}

.logistics-side-card h3 {
  margin-bottom: 10px;
}

.logistics-component-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.logistics-component-card {
  padding: 26px;
}

.logistics-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.15);
  color: #8a6a07;
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.logistics-component-card h3 {
  margin-bottom: 10px;
}

.logistics-flow-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.logistics-flow-card,
.logistics-why-card,
.logistics-bottom-card {
  padding: 30px;
}

.logistics-flow-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.logistics-flow-step {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f9fbff;
}

.logistics-flow-step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.15);
  color: #8a6a07;
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-weight: 700;
  margin-bottom: 14px;
}

.logistics-flow-step h3 {
  margin-bottom: 10px;
}

.logistics-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.logistics-pill {
  padding: 16px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  color: var(--primary);
  font-weight: 700;
}

.logistics-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card-link {
  display: block;
  color: inherit;
}

.service-card-link .service-card {
  height: 100%;
  cursor: pointer;
}

.service-card-link:hover .service-card {
  transform: translateY(-6px);
}

.service-card-link:hover .service-card h3 {
  color: var(--secondary);
}

.service-detail-link {
  display: block;
  color: inherit;
}

.service-detail-link .service-detail-card {
  height: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-detail-link:hover .service-detail-card {
  transform: translateY(-6px);
}

.service-detail-link:hover .service-detail-card h3 {
  color: var(--secondary);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1200px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-content {
    gap: 22px;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  }

  .hero-text h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-card {
    max-width: 430px;
  }

  .air-highlight-grid,
  .insurance-coverage-grid,
  .land-scope-grid,
  .land-benefit-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .logistics-component-grid,
  .customs-grid,
  .warehouse-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .warehouse-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .sea-use-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .customs-process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .customs-bottom-grid {
    grid-template-columns: 1fr;
  }

  .hero-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
    flex-shrink: 0;
  }

  .header-wrap {
    min-height: 76px;
    gap: 12px;
  }

  .logo {
    height: 44px;
    max-width: 180px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 12px;
    left: 12px;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    gap: 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .site-nav.show {
    display: flex;
  }

  .site-nav > a,
  .site-nav > .nav-dropdown > .nav-drop-btn {
    height: auto;
    width: 100%;
    padding: 12px 0;
  }

  .site-nav .nav-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-drop-btn {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 100%;
    margin-top: 10px;
    border-radius: 14px;
    box-shadow: none;
    border: 1px solid var(--border);
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 0;
    background:
      linear-gradient(rgba(8, 26, 54, 0.24), rgba(8, 26, 54, 0.36)),
      url("../images/hero-ship.jpg") 18% center / cover no-repeat;
  }

  .hero-overlay {
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent 34%);
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
    gap: 16px;
    min-height: auto;
    padding: 36px 0 28px;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-card {
    max-width: 360px;
    padding: 14px;
    background: rgba(8, 26, 54, 0.60);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .hero-card ul {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-card li {
    padding: 8px 10px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .grid-2,
  .cta-box,
  .warehouse-intro-grid,
  .air-layout-top,
  .sea-top-layout,
  .insurance-top-grid,
  .customs-top-wrap,
  .land-hero-grid,
  .logistics-top-grid,
  .logistics-flow-layout,
  .land-summary-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .service-detail-grid,
  .contact-info-grid,
  .form-row,
  .air-bottom-strip,
  .sea-scope-grid,
  .sea-band-layout,
  .insurance-strip-grid,
  .land-middle-grid,
  .logistics-bottom-grid {
    grid-template-columns: 1fr;
  }

  
  .expertise-grid,
  .warehouse-feature-grid,
  .warehouse-steps,
  .air-highlight-grid,
  .sea-use-grid,
  .insurance-coverage-grid,
  .customs-grid,
  .customs-process-line,
  .land-scope-grid,
  .land-benefit-strip,
  .logistics-component-grid,
  .logistics-flow-steps {
    grid-template-columns: 1fr;
  }

  .rounded-image,
  .warehouse-main-image,
  .sea-main-image,
  .land-main-image {
    min-height: 280px;
  }

  .footer-grid {
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 58px 0 30px;
}

.footer-logo {
  height: 64px;
}

.footer-text {
  max-width: 100%;
}

.site-footer iframe {
  height: 220px;
}
.footer-map iframe {
    height: 220px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: calc(100vh - 76px);
    background:
      linear-gradient(rgba(8, 26, 54, 0.34), rgba(8, 26, 54, 0.48)),
      url("../images/hero-ship.jpg") 16% center / cover no-repeat;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: calc(100vh - 76px);
    padding: 22px 0 18px;
    align-items: end;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 1.1;
    max-width: 92%;
  }

  .hero-text p {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-card {
    justify-self: stretch;
    max-width: none;
    width: 100%;
    padding: 12px;
    background: rgba(8, 26, 54, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.10);
  }

  .hero-card ul {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 16px, var(--container));
  }

  .section {
    padding: 60px 0;
  }

  h1 {
    font-size: 34px;
    line-height: 1.16;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .logo {
    height: 42px;
    max-width: 150px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero {
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    display: flex;
    align-items: flex-start;
    padding: 22px 0 30px;
    background:
      linear-gradient(rgba(8, 26, 54, 0.40), rgba(8, 26, 54, 0.52)),
      url("../images/hero-ship.jpg") 18% center / cover no-repeat;
  }

  .hero-overlay {
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.04), transparent 36%);
  }

  .hero-content {
    min-height: auto !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .hero-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .hero-text {
    max-width: 100%;
    padding-top: 4px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.14;
    margin-bottom: 14px;
    max-width: 94%;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.96);
  }

  .hero-text p + p {
    margin-top: 2px;
  }

  .hero-card {
    display: none;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions {
    margin-top: 16px;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero + .section,
  .hero + .alt-bg,
  .hero + section {
    margin-top: 0;
  }

  .service-grid,
  .client-grid,
  .stats-grid,
  .service-detail-grid,
  .contact-info-grid,
  .form-row,
  .footer-grid,
  .expertise-grid,
  .warehouse-feature-grid,
  .warehouse-steps,
  .air-highlight-grid,
  .air-bottom-strip,
  .sea-scope-grid,
  .sea-use-grid,
  .sea-band-layout,
  .insurance-coverage-grid,
  .insurance-strip-grid,
  .customs-grid,
  .customs-process-line,
  .customs-bottom-grid,
  .land-scope-grid,
  .land-middle-grid,
  .land-benefit-strip,
  .logistics-component-grid,
  .logistics-flow-steps,
  .logistics-bottom-grid {
    grid-template-columns: 1fr;
  }

  .service-card-body,
  .service-detail-body,
  .content-card,
  .contact-info-box,
  .contact-form-card,
  .reach-box,
  .cta-box,
  .confidentiality-box,
  .warehouse-text-card,
  .warehouse-feature-card,
  .warehouse-process-box,
  .warehouse-step,
  .air-content-block,
  .air-side-panel,
  .air-highlight-card,
  .air-bottom-card,
  .sea-intro-card,
  .sea-scope-card,
  .sea-band-card,
  .insurance-left-card,
  .insurance-mini-card,
  .insurance-coverage-card,
  .insurance-strip-card,
  .customs-top-left,
  .customs-note-card,
  .customs-card,
  .customs-process-step,
  .customs-bottom-card,
  .land-text-panel,
  .land-scope-card,
  .land-feature-box,
  .land-route-box,
  .land-benefit-card,
  .land-summary-panel,
  .logistics-main-card,
  .logistics-side-card,
  .logistics-component-card,
  .logistics-flow-card,
  .logistics-why-card,
  .logistics-bottom-card {
    padding: 20px;
  }

  .service-card img,
  .service-detail-card img {
    height: 200px;
  }

  .rounded-image,
  .warehouse-main-image,
  .sea-main-image,
  .land-main-image {
    min-height: 220px;
  }

  .air-cargo-type,
  .logistics-pill,
  .land-route-item {
    width: 100%;
    text-align: center;
  }
  .site-footer {
  text-align: left;
}

.footer-grid {
  gap: 22px;
  padding: 50px 0 24px;
}

.site-footer h4 {
  font-size: 17px;
  margin-bottom: 14px;
  padding-bottom: 8px;
}

.site-footer ul {
  gap: 10px;
}

.site-footer a {
  font-size: 14px;
  line-height: 1.6;
}

.footer-logo {
  height: 56px;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.75;
}

.site-footer iframe {
  height: 190px;
  border-radius: 16px;
}

.footer-bottom {
  padding: 16px 0 20px;
}

.footer-bottom p {
  font-size: 13px;
}
.footer-map iframe {
    height: 190px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  .hero {
    min-height: auto !important;
    padding: 20px 0 28px;
    background:
      linear-gradient(rgba(8, 26, 54, 0.46), rgba(8, 26, 54, 0.60)),
      url("../images/hero-ship.jpg") 20% center / cover no-repeat;
  }

  .hero-content {
    min-height: auto;
    padding: 0;
  }

  .hero-text h1 {
    font-size: 26px;
    line-height: 1.15;
    max-width: 100%;
  }

  .hero-badge,
  .section-tag {
    font-size: 10px;
    letter-spacing: 0.3px;
  }

  .service-card img,
  .service-detail-card img {
    height: 180px;
  }
}