:root {
  --emerald: #1d4ed8;
  --charcoal: #1f2937;
  --white: #ffffff;
  --line: #d1d5db;
  --max-width: 1160px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}


.section {
  padding: 4rem 0;
}


.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  max-width: 760px;
  color: #374151;
  margin-bottom: 1.4rem;
  font-size: 1.02rem;
}



@media (max-width: 960px) {

  .section {
    padding: 4rem 0;
  }

  .section-subtitle {
    margin-bottom: 1rem;
  }

  

}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.6rem 0;
  flex-wrap: wrap;
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  display: grid;
  place-items: center;
  color: #dbeafe;
  font-weight: 800;
  letter-spacing: 0.8px;
  font-size: 0.9rem;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  flex: 0 0 auto;
}

.brand h1 {
  font-size: 1.06rem;
  color: var(--emerald);
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #334155;
  font-size: 0.92rem;
}

.nav-links a.active {
  color: var(--emerald);
}

.btn {
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 10px;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
  padding: 0.78rem 1.2rem;
}

.btn-quote {
  background: var(--emerald);
  color: var(--white);
  padding: 0.78rem 1.2rem;
}

.btn-quote:visited {
  color: var(--white);
}

.btn-outline {
  background: var(--emerald);
  color: var(--white);
  border: 1.5px solid transparent;
  padding: 0.72rem 1.1rem;
}

.hero {
  background:
    linear-gradient(90deg, rgba(29, 78, 216, 0.88) 0%, rgba(30, 58, 138, 0.74) 55%, rgba(31, 41, 55, 0.72) 100%),
    url("https://www.morethanshipping.com/wp-content/uploads/2018/05/shipping-contract-delays-in-2018-1000x640.jpg")
      center/cover no-repeat;
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: var(--white);
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}


.hero h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 800;
  max-width: 720px;
  margin-bottom: 1rem;
  letter-spacing: 0.4px;
}

.hero p {
  max-width: 660px;
  color: #eff6ff;
  margin-bottom: 1.6rem;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  border-top: 5px solid var(--emerald);
}

.hero-card h3 {
  color: var(--emerald);
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.93rem;
}

.hero-list li::before {
  content: "■";
  color: var(--emerald);
  margin-right: 0.5rem;
  font-size: 0.65rem;
  vertical-align: middle;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.05);
}

.card-body {
  padding: 1.1rem 1.05rem 1.25rem;
}

.card h3 {
  color: var(--emerald);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.card p {
  color: #334155;
  font-size: 0.94rem;
}

.badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #1e3a8a;
  background: #dbeafe;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.6rem;
}

.tracking {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.tracking-panel {
  background: var(--white);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.search-wrap {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.78rem 0.85rem;
  font-family: inherit;
  font-size: 0.94rem;
}

input:focus,
textarea:focus {
  outline: 2px solid #3b82f645;
  border-color: #3b82f6;
}

.search-wrap input {
  flex: 1 1 320px;
}

#trackingResult {
  margin-top: 0.95rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #1e293b;
  min-height: 1.4rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.why-block {
  border: 1px solid #dbe4ef;
  border-radius: var(--radius);
  background: #f9fafb;
  padding: 1.2rem;
}

.why-block h4 {
  color: var(--emerald);
  margin-bottom: 0.55rem;
  font-size: 1.03rem;
}

.page-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #e2e8f0 100%);
  border-bottom: 1px solid #d1d5db;
}

.page-hero .container {
  padding: 3.3rem 0;
}

.page-hero h2 {
  color: var(--emerald);
  margin-bottom: 0.55rem;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}

.stats-strip {
  background: #eff6ff;
  border-top: 1px solid #bfdbfe;
  border-bottom: 1px solid #bfdbfe;
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.1rem 0;
  align-items: center;
}


.stat-box {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 1rem;
}

.stat-box h3 {
  color: var(--emerald);
  font-size: 1.35rem;
  line-height: 1.1;
}

.stat-box p {
  color: #475569;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.3rem;
}

.panel {
  border: 1px solid #dbe4ef;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 1.2rem;
}

.list-check {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.list-check li::before {
  content: "✓";
  color: var(--emerald);
  margin-right: 0.45rem;
  font-weight: 700;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.timeline li {
  border-left: 3px solid #93c5fd;
  padding-left: 0.8rem;
}

.timeline strong {
  color: var(--emerald);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  padding: 1rem;
  background: #f8fafc;
}

.mini-card h4 {
  color: var(--emerald);
  margin-bottom: 0.4rem;
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  border: 1px solid #dbe4ef;
  border-radius: 10px;
  background: #fff;
  padding: 0.8rem 0.9rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
}

.note-box {
  margin-top: 1rem;
  background: #ecfeff;
  border: 1px solid #bae6fd;
  padding: 0.85rem;
  border-radius: 10px;
  color: #0f172a;
  font-size: 0.92rem;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

footer {
  background: var(--charcoal);
  color: #e5e7eb;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  margin-bottom: 1.4rem;
}

.office-card {
  background: #111827;
  border: 1px solid #1f2937;
  padding: 1.2rem;
  border-radius: var(--radius);
}

.office-card h3,
.inquiry-form h3 {
  color: #dbeafe;
  margin-bottom: 0.6rem;
}

.office-card p {
  color: #cbd5e1;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.inquiry-form {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: var(--radius);
  padding: 1.2rem;
}

.inquiry-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.inquiry-form input,
.inquiry-form textarea {
  background: #0b1220;
  color: #e5e7eb;
  border-color: #334155;
}

.inquiry-form button {
  margin-top: 0.4rem;
}

#inquiryResult {
  margin-top: 0.75rem;
  color: #bfdbfe;
  font-size: 0.9rem;
  min-height: 1.3rem;
}

.copyright {
  border-top: 1px solid #334155;
  padding-top: 1rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-3,
  .why-grid,
  .footer-grid,
  .stats-grid,
  .split-layout,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }
}



@media (max-width: 560px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .inquiry-form .row {
    grid-template-columns: 1fr;
  }
}


