/* ===== OWEX LOGISTICS — GLOBAL STYLES ===== */
:root {
  --navy: #1A3A5C;
  --navy-dark: #0f2440;
  --navy-light: #EEF3F8;
  --navy-mid: #c5d5e8;
  --orange: #F47920;
  --orange-dark: #d9640a;
  --orange-light: #FEF3EA;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray: #6c757d;
  --text: #1A3A5C;
  --text-muted: #5a6a7a;
  --border: #dde4ec;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(26,58,92,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: 38px; font-weight: 700; line-height: 1.25; }
h2 { font-size: 28px; font-weight: 600; line-height: 1.3; }
h3 { font-size: 18px; font-weight: 600; }
h4 { font-size: 15px; font-weight: 600; }
p { line-height: 1.75; color: var(--text-muted); }

/* ===== LAYOUT ===== */
.container { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ===== SECTION LABELS ===== */
.sec-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.sec-title { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.sec-sub { font-size: 15px; color: var(--text-muted); max-width: 580px; }
.text-center { text-align: center; }
.text-center .sec-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy-light); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-top { font-size: 20px; font-weight: 800; letter-spacing: 1px; color: var(--navy); }
.nav-logo-top span { color: var(--orange); }
.nav-logo-bottom { font-size: 8px; letter-spacing: 4px; color: var(--navy); opacity: 0.5; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: flex; gap: 4px; }
.lang-switch a {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.lang-switch a.active, .lang-switch a:hover {
  background: var(--navy-light);
  color: var(--navy);
}
.lang-sep { font-size: 12px; color: var(--border); line-height: 28px; }

/* ===== HERO ===== */
.hero {
  background: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--navy); max-width: 700px; margin: 0 auto 1.25rem; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 16px; max-width: 600px; margin: 0 auto 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--navy-mid);
}
.badge svg { width: 13px; height: 13px; color: var(--orange); }

/* ===== EXPERIENCE BANNER ===== */
.exp-banner {
  background: var(--navy);
  padding: 2.5rem 2rem;
  text-align: center;
}
.exp-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
.exp-banner strong { color: var(--orange); font-weight: 600; }

/* ===== CARDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.card-top { border-top: 3px solid var(--orange); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 24px; height: 24px; color: var(--orange); }
.card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.card p { font-size: 13px; line-height: 1.65; }

.stat-card {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-left: 4px solid var(--navy);
}
.stat-num { font-size: 34px; font-weight: 800; color: var(--orange); margin-bottom: 0.25rem; }
.stat-card h3 { color: var(--navy); margin-bottom: 0.4rem; font-size: 15px; }
.stat-card p { font-size: 13px; }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.step-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.step-item:last-child { border-right: none; }
.step-num {
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  margin: 0 auto 1rem;
}
.step-item h4 { color: var(--navy); margin-bottom: 0.5rem; font-size: 14px; }
.step-item p { font-size: 12px; line-height: 1.6; }

/* ===== REVIEWS ===== */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-card blockquote { font-size: 13px; font-style: italic; line-height: 1.7; margin-bottom: 1.25rem; color: var(--text-muted); }
.reviewer { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.reviewer-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.reviewer-detail { font-size: 11px; color: var(--text-muted); }

/* ===== ZONES ===== */
.zone-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.zone-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 13px; font-weight: 500; color: var(--navy);
}
.zone-tag svg { width: 13px; height: 13px; color: var(--orange); }

/* ===== FORM ===== */
.form-wrap {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--navy-mid);
}
.form-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--navy-mid);
}
.form-header-icon {
  width: 50px; height: 50px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.form-header-icon svg { width: 24px; height: 24px; color: #fff; }
.form-header h2 { font-size: 20px; color: var(--navy); margin-bottom: 3px; }
.form-header p { font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 12px; font-weight: 600; color: var(--navy); letter-spacing: 0.3px; }
.fg input, .fg select, .fg textarea {
  padding: 10px 14px;
  border: 1px solid var(--navy-mid);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--orange); }
.fg textarea { resize: vertical; min-height: 90px; }
.form-submit {
  margin-top: 1.5rem;
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--orange-dark); }
.form-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 5px; }
.form-note svg { width: 13px; height: 13px; }

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
}
.contact-info-card h3 { color: #fff; margin-bottom: 1.5rem; font-size: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-item-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: #fff; }
.contact-item-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item-value { font-size: 14px; color: #fff; font-weight: 500; }
.contact-item-value a { color: #fff; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--navy);
  padding: 4rem 2rem;
  text-align: center;
}
.page-header h1 { color: #fff; font-size: 36px; margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 580px; margin: 0 auto; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.legal-content h2 { color: var(--navy); font-size: 18px; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--orange); }
.legal-content p { margin-bottom: 1rem; font-size: 14px; line-height: 1.8; }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; }
.legal-content ul li { font-size: 14px; line-height: 1.8; color: var(--text-muted); margin-bottom: 0.25rem; }
.legal-content .info-box {
  background: var(--navy-light);
  border-left: 4px solid var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem;
}
.legal-content .info-box p { margin: 0; font-size: 13px; }

/* ===== FOOTER ===== */
footer { background: var(--navy); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-top { font-size: 22px; font-weight: 800; letter-spacing: 1px; color: #fff; margin-bottom: 4px; }
.footer-logo-top span { color: var(--orange); }
.footer-logo-bottom { font-size: 8px; letter-spacing: 4px; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 1rem; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer-col a, .footer-col p {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 2;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 0.75rem; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-left { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom-right { display: flex; gap: 1.5rem; }
.footer-bottom-right a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-right a:hover { color: rgba(255,255,255,0.8); }

/* ===== DIVIDER ===== */
.divider { border: none; border-top: 1px solid var(--border); }

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  display: none;
  background: #f0faf5;
  border: 1px solid #a8e0c0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 1rem;
}
.success-msg h3 { color: #1a7a45; margin-bottom: 0.5rem; }
.success-msg p { font-size: 14px; color: #2a8a55; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .nav-links { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step-item { border-bottom: 1px solid var(--border); border-right: none; }
  .step-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .hero { padding: 4rem 1.5rem 3rem; }
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-item { border-right: none; }
  .step-item:nth-child(odd) { border-right: none; }
}
