/* ============================================
   PORT PRO LOGISTICS — Global Stylesheet
   Color Palette from Logo:
   Navy:  #1B2A4A
   Gold:  #F5A800
   White: #FFFFFF
   Light BG: #F4F6FA
   Dark text: #1B2A4A
   Mid gray: #6B7280
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@400;500;600&display=swap');

:root {
  --navy: #1B2A4A;
  --navy-dark: #111d35;
  --navy-mid: #243560;
  --gold: #F5A800;
  --gold-dark: #d4900a;
  --white: #FFFFFF;
  --light-bg: #F4F6FA;
  --border: #e2e8f0;
  --text-muted: #6B7280;
  --text-body: #374151;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 4px 24px rgba(27,42,74,0.10);
  --shadow-lg: 0 8px 40px rgba(27,42,74,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img{
    max-width: 100%;
}

/* ── HEADER / NAV ── */
header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    padding: 10px 0px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-wrap img{
    height: 60px;
    border-radius: 5px;
}
.logo-wrap {
  display: flex;
  align-items: center;
}
.img-round{
    border-radius:10px;
}
/*.logo-icon {*/
/*  width: 48px;*/
/*  height: 48px;*/
/*  flex-shrink: 0;*/
/*}*/

/*.logo-text {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  line-height: 1;*/
/*}*/

/*.logo-text .port {*/
/*    font-family: 'Barlow Condensed', sans-serif;*/
/*    font-size: 25px;*/
/*    font-weight: 600;*/
/*    color: var(--white);*/
/*    letter-spacing: 0.04em;*/
/*    text-transform: uppercase;*/
/*}*/
/*.logo-text .port span { color: var(--gold); }*/
/*.logo-text .logistics { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.28em; text-transform: uppercase; margin-top: 1px; }*/

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

nav a:hover, nav a.active {
  color: var(--gold);
  background: rgba(245,168,0,0.10);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  margin-left: 8px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: var(--navy);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(245,168,0,0.03) 30px,
    rgba(245,168,0,0.03) 31px
  );
}

.page-hero-content { position: relative; max-width: 760px; margin: 0 auto; }

.page-hero .eyebrow {
  display: inline-block;
  background: rgba(245,168,0,0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(245,168,0,0.3);
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 70px 0; }
.section-alt { background: var(--light-bg); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title span { color: var(--gold); }

.section-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 16px;
}

.section-body:last-child { margin-bottom: 0; }

/* ── GOLD DIVIDER ── */
.gold-line {
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 15px;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 20px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(245,168,0,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg { width: 26px; height: 26px; fill: var(--gold); }

.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── STATS BAR ── */

.stats-bar {
    /* background: var(--navy); */
    padding: 0px 24px 0px;
    margin-top: -50px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 0px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #000;
}

.check-list li::before {
  content: '';
  width: 20px; height: 20px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231B2A4A'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
}

/* ── NUMBERED LIST ── */
.num-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }

.num-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-body);
}

.num-badge {
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 0px;
}

/* ── ACCENT BOX ── */
.accent-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
}

.accent-box .section-title { color: var(--white); }
.accent-box .section-body { color: rgba(255,255,255,0.75); }

/* ── AREA GRID ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
  transition: box-shadow 0.2s, transform 0.2s;
}

.area-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.area-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.area-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--white);
  padding: 64px 24px;
  text-align: center;
}

.cta-strip h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-strip p { font-size: 17px; color: rgba(27,42,74,0.75); margin-bottom: 32px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-dark); }

.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); }

.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--light-bg); }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

/* ── CONTACT FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

label { font-size: 13px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.07em; }

input, textarea, select {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text-body);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,168,0,0.12); }

textarea { resize: vertical; min-height: 120px; }

.submit-btn {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 15px 40px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}

.submit-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ── CONTACT INFO BLOCK ── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.contact-info-card .ci-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.contact-info-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.contact-info-card p, .contact-info-card a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  line-height: 1.6;
}

.contact-info-card a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 60px 24px 28px;
  color: rgba(255,255,255,0.65);
}
footer .logo-wrap img{ height: 75px;}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy-dark); padding: 16px 24px 24px; gap: 4px; }
  nav.open { display: flex; }
  nav a { padding: 12px 16px; font-size: 14px; border-radius: var(--radius); }
  .hamburger { display: flex; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .area-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .card-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.30s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.45s ease both; }
