/* ── Goti Logistics — Brand CSS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=Barlow+Condensed:wght@700;800;900&display=swap');

:root {
  --navy:    #1A3B8C;
  --navy-dk: #122970;
  --orange:  #F47920;
  --orange-lt: #FFA040;
  --white:   #FFFFFF;
  --grey:    #F5F6FA;
  --grey-mid:#E8EAF0;
  --text:    #1C1C2E;
  --muted:   #6B7280;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(26,59,140,0.10);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

/* NAV */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 999; background: var(--navy); display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 70px; box-shadow: 0 2px 12px rgba(0,0,0,0.18); }
.navbar-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navbar-logo-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--white); letter-spacing: 1px; line-height: 1; }
.navbar-logo-text span { color: var(--orange); }
.navbar-logo-sub { font-size: 0.62rem; color: rgba(255,255,255,0.6); letter-spacing: 2px; text-transform: uppercase; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta { background: var(--orange); color: var(--white); padding: 9px 20px; border-radius: var(--radius); font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--orange-lt); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 25px; height: 2px; background: var(--white); border-radius: 2px; display: block; }

/* HERO */
.hero { margin-top: 70px; background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, #1e4db7 100%); position: relative; overflow: hidden; }
.hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(45deg, var(--white) 0, var(--white) 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.hero-stripe { position: absolute; bottom: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--orange) 0%, var(--orange-lt) 60%, var(--white) 100%); }
.page-hero { padding: 72px 5% 64px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; color: var(--white); line-height: 1.05; margin-bottom: 16px; }
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 540px; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: var(--orange); text-decoration: none; }

/* SECTIONS */
.section { padding: 80px 5%; }
.section-grey { background: var(--grey); }
.container { max-width: 1160px; margin: 0 auto; }
.section-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 16px; }
.section-lead { font-size: 1.05rem; color: var(--muted); max-width: 560px; line-height: 1.7; }

/* CARDS */
.card { background: var(--white); border-radius: 10px; box-shadow: var(--shadow); padding: 36px 28px; border-top: 4px solid transparent; transition: border-color 0.2s, transform 0.2s; }
.card:hover { border-color: var(--orange); transform: translateY(-4px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* ICON */
.icon-circle { width: 56px; height: 56px; border-radius: 50%; background: rgba(244,121,32,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.icon-circle svg { width: 26px; height: 26px; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--orange); color: var(--white); padding: 14px 32px; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; font-family: 'Barlow', sans-serif; }
.btn-primary:hover { background: var(--orange-lt); transform: translateY(-2px); }
.btn-outline { display: inline-block; border: 2px solid var(--white); color: var(--white); padding: 13px 30px; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { display: inline-block; background: var(--navy); color: var(--white); padding: 14px 32px; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: background 0.2s; border: none; cursor: pointer; font-family: 'Barlow', sans-serif; }
.btn-navy:hover { background: var(--navy-dk); }

/* STAT BAR */
.stat-bar { background: var(--orange); padding: 32px 5%; }
.stat-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.stat-item { text-align: center; color: var(--white); }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.stat-lbl { font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.88; margin-top: 4px; }

/* FOOTER */
.footer { background: var(--navy-dk); color: rgba(255,255,255,0.80); padding: 60px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1160px; margin: 0 auto; padding-bottom: 48px; }
.footer-brand p { font-size: 0.9rem; margin: 14px 0 20px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; }
.footer h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer ul li a:hover { color: var(--orange); }
.footer-contact-item { font-size: 0.9rem; color: rgba(255,255,255,0.7); display: flex; gap: 8px; align-items: flex-start; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-stripe { height: 6px; background: linear-gradient(90deg, var(--navy-dk) 0%, var(--orange) 50%, var(--navy-dk) 100%); }

/* FORM */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--grey-mid); border-radius: var(--radius); font-family: 'Barlow', sans-serif; font-size: 0.95rem; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* 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; }
@media (prefers-reduced-motion: reduce) { .fade-up, .fade-up-2, .fade-up-3 { animation: none; } }

/* RESPONSIVE */
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--navy); align-items: center; justify-content: center; gap: 32px; }
  .nav-links.open a { font-size: 1.4rem; }
}
