/**
 * FleetX theme main stylesheet.
 * Design tokens and section styles carried over from the original template,
 * with added support for the WP blog loop, the real Track Parcel widget,
 * the contact form's new markup, and accessibility features (skip link,
 * screen-reader text, visible focus states).
 *
 * @package FleetX
 */

/* ===== DESIGN TOKENS ===== */
:root {
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1A3358;
  --orange: #FF6B2B;
  --orange-light: #FF8C55;
  --orange-glow: rgba(255,107,43,0.15);
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-100: #EEF0F4;
  --gray-300: #C4CAD6;
  --gray-500: #7B879C;
  --gray-700: #3D4A5C;
  --text: #0A1628;
  --text-light: #4A5568;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(10,22,40,0.10);
  --shadow-md: 0 8px 40px rgba(10,22,40,0.15);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.20);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ===== ACCESSIBILITY ===== */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important;
}
.skip-link {
  position: absolute; top: -60px; left: 0; z-index: 100000; background: var(--orange); color: #fff;
  padding: 14px 22px; font-weight: 600; font-size: 14px; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange-light); outline-offset: 2px;
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 64px 0; }
.section-pad-sm { padding: 48px 0; }
@media (min-width: 768px) {
  .section-pad { padding: 96px 0; }
  .section-pad-sm { padding: 64px 0; }
}
.tag { display: inline-block; background: var(--orange-glow); color: var(--orange); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.tag-dark { background: rgba(255,107,43,0.12); color: var(--orange-light); }
h2.section-title { font-family: var(--font-display); font-size: clamp(26px, 5vw, 44px); font-weight: 800; color: var(--navy); line-height: 1.15; }
h2.section-title.light { color: var(--white); }
p.section-sub { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-top: 12px; max-width: 520px; }
p.section-sub.light { color: rgba(255,255,255,0.7); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 48px; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 600; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 20px rgba(255,107,43,0.35); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,43,0.45); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-outline { border: 2px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-outline-dark { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== NAVBAR ===== */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
#navbar.scrolled { background: rgba(10,22,40,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 24px rgba(0,0,0,0.3); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 36px; height: 36px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: #fff; }
.nav-cta { display: none; align-items: center; gap: 12px; }
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 999; padding: 80px 24px 40px; flex-direction: column; gap: 8px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); font-size: 20px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: block; }
.mobile-close { position: absolute; top: 20px; right: 20px; color: #fff; font-size: 28px; cursor: pointer; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
body.menu-open { overflow: hidden; }
@media (min-width: 900px) {
  .nav-links, .nav-cta { display: flex; }
  .hamburger { display: none; }
}

/* ===== HERO ===== */
#hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0D1F3C 100%); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(255,107,43,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(26,51,88,0.5) 0%, transparent 40%); pointer-events: none; }
.hero-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; padding: 60px 0 80px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,107,43,0.12); border: 1px solid rgba(255,107,43,0.2); color: var(--orange-light); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; padding: 8px 16px; border-radius: 100px; margin-bottom: 24px; }
.hero-tag-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.6;transform:scale(1.4);} }
.hero-title { font-family: var(--font-display); font-size: clamp(36px, 8vw, 72px); font-weight: 800; color: #fff; line-height: 1.05; margin-bottom: 20px; }
.hero-title .accent { color: var(--orange); display: block; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; flex-direction: column; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.stat-item { border-left: 2px solid rgba(255,107,43,0.4); padding-left: 16px; }
.stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #fff; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.hero-visual { position: relative; display: none; }
.hero-svg-wrap { position: relative; }
.hero-card { position: absolute; background: rgba(255,255,255,0.07); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; animation: float-card 4s ease-in-out infinite; }
.hero-card-1 { top: 8%; right: -8%; animation-delay: 0s; }
.hero-card-2 { bottom: 12%; left: -10%; animation-delay: 1.5s; }
.hero-card-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; }
.hero-card-text { color: #fff; font-size: 13px; font-weight: 500; }
.hero-card-sub { color: rgba(255,255,255,0.5); font-size: 11px; margin-top: 1px; }
@keyframes float-card { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 64px; padding: 80px 0 100px; }
  .hero-visual { display: block; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; }
}

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
@media (min-width: 900px) { .trust-inner { justify-content: space-between; gap: 32px; } .trust-item { font-size: 14px; } }

/* ===== SERVICES ===== */
#services { background: var(--off-white); }
.services-header { text-align: center; margin-bottom: 48px; }
.services-header p { margin: 12px auto 0; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; } }
.service-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--gray-100); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover, .service-card:focus-within { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before, .service-card:focus-within::before { transform: scaleX(1); }
.svc-icon { width: 52px; height: 52px; background: var(--orange-glow); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon svg { width: 26px; height: 26px; color: var(--orange); }
.svc-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 20px; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--orange); display: flex; align-items: center; gap: 6px; }
.svc-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.svc-link:hover svg { transform: translateX(4px); }

/* ===== WHY FLEETX ===== */
#why { background: var(--navy); position: relative; overflow: hidden; }
#why::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,107,43,0.08) 0%, transparent 70%); pointer-events: none; }
.why-header { margin-bottom: 40px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; } }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 22px; transition: var(--transition); }
.why-card:hover { background: rgba(255,107,43,0.06); border-color: rgba(255,107,43,0.2); transform: translateY(-4px); }
.why-icon { width: 44px; height: 44px; background: rgba(255,107,43,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-icon svg { width: 22px; height: 22px; color: var(--orange); }
.why-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
#how { background: var(--white); }
.how-header { text-align: center; margin-bottom: 48px; }
.how-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; position: relative; }
.how-step { text-align: center; position: relative; z-index: 1; padding: 0 8px; }
.step-num { width: 64px; height: 64px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--font-display); font-size: 20px; font-weight: 800; color: #fff; box-shadow: 0 8px 24px rgba(255,107,43,0.35); position: relative; }
.step-icon { position: absolute; bottom: -8px; right: -8px; width: 26px; height: 26px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.step-icon svg { width: 14px; height: 14px; color: var(--navy); }
.step-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }
@media (min-width: 900px) {
  .how-steps { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .how-steps::before { content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%); z-index: 0; }
  .step-num { width: 72px; height: 72px; font-size: 22px; }
}

/* ===== BUSINESS ===== */
#business { background: linear-gradient(135deg, var(--navy) 0%, #0D1F3C 100%); position: relative; overflow: hidden; }
.biz-inner { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.biz-targets { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 28px 0; }
.biz-target { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 14px 16px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; }
.biz-target-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.biz-benefits { display: flex; flex-direction: column; gap: 16px; }
.biz-benefit { display: flex; align-items: flex-start; gap: 14px; }
.biz-benefit-icon { width: 40px; height: 40px; background: rgba(255,107,43,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.biz-benefit-icon svg { width: 20px; height: 20px; color: var(--orange); }
.biz-benefit-text strong { display: block; color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.biz-benefit-text span { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.5; }
@media (min-width: 1024px) { .biz-inner { grid-template-columns: 1fr 1fr; gap: 80px; } .biz-targets { grid-template-columns: 1fr 1fr; } }

/* ===== PRICING ===== */
#pricing { background: var(--off-white); }
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 400px; margin: 0 auto; }
.price-card { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.price-card.featured { background: var(--navy); border-color: var(--navy); }
.price-card-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; display: block; }
.price-card-title { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.price-card.featured .price-card-title { color: #fff; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.price-card.featured .price-row { border-bottom-color: rgba(255,255,255,0.08); }
.price-row:last-child { border: none; }
.price-km { font-size: 14px; color: var(--text-light); }
.price-card.featured .price-km { color: rgba(255,255,255,0.6); }
.price-amt { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); }
.price-card.featured .price-amt { color: var(--orange); }
.price-custom { text-align: center; margin-top: 32px; padding: 20px; background: var(--orange-glow); border-radius: var(--radius-sm); border: 1px dashed rgba(255,107,43,0.3); }
.price-custom p { font-size: 15px; color: var(--orange); font-weight: 600; }
.price-custom span { font-size: 13px; color: var(--text-light); margin-top: 4px; display: block; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: 1fr 1fr; max-width: 800px; } }

/* ===== COVERAGE ===== */
#coverage { background: var(--white); }
.coverage-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.coverage-map { background: var(--navy); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.map-pin-area { display: flex; flex-wrap: wrap; gap: 10px; padding: 24px; align-content: flex-start; }
.map-pin { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 7px 12px; color: #fff; font-size: 12px; font-weight: 500; }
.map-pin-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.map-pin.active { background: rgba(255,107,43,0.15); border-color: rgba(255,107,43,0.4); }
.map-pin.active .map-pin-dot { animation: pulse-dot 2s infinite; }
.map-title-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(10,22,40,0.9)); padding: 24px; }
.map-title-overlay h3 { color: #fff; font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.map-title-overlay p { color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 4px; }
.coverage-zone { display: flex; flex-direction: column; gap: 8px; }
.zone-item { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.zone-item:last-child { border: none; }
.zone-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.zone-dot.live { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
.zone-dot.soon { background: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,43,0.2); }
.zone-name { font-weight: 600; font-size: 15px; color: var(--navy); flex: 1; }
.zone-status { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
.zone-status.live { background: rgba(34,197,94,0.1); color: #16a34a; }
.zone-status.soon { background: var(--orange-glow); color: var(--orange); }
@media (min-width: 1024px) { .coverage-inner { grid-template-columns: 1fr 1fr; gap: 64px; } }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--off-white); }
.testimonials-header { text-align: center; margin-bottom: 40px; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.testi-card { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.testi-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.testi-stars svg { width: 16px; height: 16px; fill: #FBBF24; }
.testi-text { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy); object-fit: cover; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
@media (min-width: 700px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ===== APP SECTION ===== */
#app { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.app-inner { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.app-features { display: flex; flex-direction: column; gap: 18px; margin: 28px 0; }
.app-feature { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.8); font-size: 14px; }
.app-feature-check { width: 26px; height: 26px; background: rgba(255,107,43,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.app-feature-check svg { width: 14px; height: 14px; color: var(--orange); }
.app-phone-wrap { display: flex; justify-content: center; gap: 12px; perspective: 800px; }
.app-phone { width: 140px; background: var(--navy-light); border-radius: 26px; border: 2px solid rgba(255,255,255,0.1); padding: 14px 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.app-phone:first-child { transform: rotate(-5deg) translateY(20px); }
.app-phone:last-child { transform: rotate(5deg) translateY(20px); }
.phone-screen { background: var(--navy); border-radius: 18px; overflow: hidden; aspect-ratio: 9/16; display: flex; flex-direction: column; padding: 12px; gap: 8px; }
.phone-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.phone-brand { font-family: var(--font-display); font-size: 13px; font-weight: 800; color: #fff; }
.phone-brand span { color: var(--orange); }
.phone-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; }
.phone-map-mock { flex: 1; background: linear-gradient(135deg, #0D2444, #162D52); border-radius: 12px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 20px 20px; }
.map-route { position: absolute; width: 60%; height: 60%; border: 2px dashed rgba(255,107,43,0.5); border-radius: 20px; }
.map-marker { width: 24px; height: 24px; background: var(--orange); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); position: absolute; top: 25%; left: 30%; box-shadow: 0 4px 12px rgba(255,107,43,0.5); }
.phone-status { background: rgba(255,107,43,0.12); border-radius: 8px; padding: 8px; }
.phone-status-text { font-size: 10px; color: var(--orange); font-weight: 600; }
.phone-status-sub { font-size: 9px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.coming-soon-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,107,43,0.12); border: 1px solid rgba(255,107,43,0.25); border-radius: 100px; padding: 10px 20px; color: var(--orange-light); font-size: 13px; font-weight: 600; margin-bottom: 20px; }
@media (min-width: 1024px) {
  .app-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
  .app-phone-wrap { gap: 20px; }
  .app-phone { width: 180px; }
}

/* ===== TRACK PARCEL ===== */
#track .track-inner { max-width: 700px; margin: 0 auto; }
.track-header { text-align: center; margin-bottom: 32px; }
.track-form { display: flex; flex-direction: column; gap: 12px; }
.track-form input { flex: 1; background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 15px; font-family: var(--font-body); color: var(--text); outline: none; transition: border-color var(--transition); }
.track-form input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.track-form .btn { justify-content: center; }
.track-error { color: #b91c1c; background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius-sm); padding: 12px 16px; margin-top: 16px; font-size: 14px; }
.track-result { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); margin-top: 24px; }
.track-result-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); }
.track-result-id { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy); }
.track-result-status { font-size: 13px; color: var(--orange); font-weight: 600; margin-top: 4px; }
.track-result-eta { font-size: 13px; color: var(--text-light); font-weight: 500; }
.track-timeline { display: flex; flex-direction: column; gap: 14px; }
.track-timeline li { display: flex; flex-direction: column; gap: 2px; padding-left: 20px; position: relative; }
.track-timeline li::before { content: ''; position: absolute; left: 0; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.track-timeline li strong { font-size: 14px; color: var(--navy); }
.track-timeline li span { font-size: 12px; color: var(--text-light); }
@media (min-width: 640px) { .track-form { flex-direction: row; } }

/* ===== CONTACT ===== */
#contact { background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon { width: 44px; height: 44px; background: var(--orange-glow); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 22px; height: 22px; color: var(--orange); }
.contact-info-item strong { display: block; font-size: 12px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item span { font-size: 15px; font-weight: 500; color: var(--navy); }
.contact-info-item a:hover { color: var(--orange); }
.contact-form-card { background: var(--off-white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--gray-100); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.form-row label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-row input, .form-row textarea, .form-row select {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 14px; font-family: var(--font-body); color: var(--text); outline: none; transition: border-color var(--transition); width: 100%;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-honeypot { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; }
.form-error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-inner { grid-template-columns: 1fr 1fr; gap: 80px; } }

/* ===== ABOUT ===== */
#about .grid-2 { align-items: start; }

/* ===== BLOG ===== */
#blog { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-100); transition: var(--transition); }
.blog-card:hover, .blog-card:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-image { aspect-ratio: 16/9; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.blog-card-body { padding: 24px; }
.blog-card-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); }
.blog-card-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); margin: 10px 0 8px; line-height: 1.3; }
.blog-card-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.blog-card-date { font-size: 12px; color: var(--gray-500); }
@media (min-width: 700px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%); padding: 56px 0; }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(26px, 5vw, 38px); font-weight: 800; color: #fff; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.9); margin: 14px 0 28px; line-height: 1.6; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.cta-btns .btn-primary { background: #fff; color: var(--orange); box-shadow: none; }
.cta-btns .btn-primary:hover { background: var(--navy); color: #fff; }
@media (min-width: 640px) { .cta-btns { flex-direction: row; } }

/* ===== FOOTER ===== */
footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-top { padding: 48px 0 40px; display: grid; grid-template-columns: 1fr; gap: 32px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand-desc { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-btn { width: 40px; height: 40px; background: rgba(255,255,255,0.06); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); }
.social-btn:hover { background: var(--orange); color: #fff; }
.social-btn svg { width: 18px; height: 18px; }
.footer-col-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
@media (min-width: 640px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; z-index: 100; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.5); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
@media (min-width: 768px) { .whatsapp-float { bottom: 28px; right: 28px; width: 58px; height: 58px; } .whatsapp-float svg { width: 30px; height: 30px; } }

/* ===== BLOCK EDITOR / SINGLE POST CONTENT ===== */
.entry-content { font-size: 16px; line-height: 1.75; color: var(--text-light); }
.entry-content p { margin-bottom: 1.2em; }
.entry-content h2, .entry-content h3 { font-family: var(--font-display); color: var(--navy); margin: 1.4em 0 0.6em; }
.entry-content a { color: var(--orange); text-decoration: underline; }
.entry-title { font-family: var(--font-display); font-size: clamp(28px, 5vw, 42px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.entry-meta { font-size: 13px; color: var(--gray-500); margin-bottom: 32px; }
