/* =============================================================
   FAST LOGISTICS THEME — MAIN STYLESHEET
   ============================================================= */

:root {
	--fl-navy: #0b2242;
	--fl-navy-dark: #071a33;
	--fl-navy-light: #12335e;
	--fl-orange: #f5820d;
	--fl-orange-dark: #d96e04;
	--fl-white: #ffffff;
	--fl-off-white: #f6f8fb;
	--fl-gray-50: #f7f8fa;
	--fl-gray-100: #eef1f5;
	--fl-gray-300: #d7dce3;
	--fl-gray-500: #7c8798;
	--fl-gray-700: #465066;
	--fl-text: #1c2536;

	--fl-font-display: 'Poppins', sans-serif;
	--fl-font-body: 'Inter', sans-serif;

	--fl-radius: 10px;
	--fl-radius-lg: 16px;
	--fl-shadow: 0 10px 30px rgba(11, 34, 66, 0.10);
	--fl-shadow-lg: 0 20px 50px rgba(11, 34, 66, 0.18);
	--fl-container: 1240px;
	--fl-transition: 0.25s ease;
}

/* -------------------------------------------------------------
   RESET
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--fl-font-body);
	color: var(--fl-text);
	font-size: 16px;
	line-height: 1.65;
	background: var(--fl-white);
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--fl-transition); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--fl-font-display);
	color: var(--fl-navy);
	line-height: 1.25;
	margin: 0 0 16px;
	font-weight: 700;
}
p { margin: 0 0 16px; color: var(--fl-gray-700); }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link {
	position: absolute;
	top: -60px; left: 0;
	background: var(--fl-orange);
	color: var(--fl-white);
	padding: 12px 20px;
	z-index: 10000;
	transition: top var(--fl-transition);
}
.skip-link:focus { top: 0; }

:focus-visible {
	outline: 3px solid var(--fl-orange);
	outline-offset: 2px;
}

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

/* -------------------------------------------------------------
   LAYOUT HELPERS
   ------------------------------------------------------------- */
.fl-container {
	max-width: var(--fl-container);
	margin: 0 auto;
	padding: 0 24px;
}
.fl-eyebrow {
	display: inline-block;
	color: var(--fl-orange);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.fl-section-heading {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}
.fl-section-heading h2 { font-size: clamp(26px, 3.2vw, 36px); }
.fl-section-heading p { margin: 0; }
.fl-section-cta { text-align: center; margin-top: 36px; }

/* Buttons */
.fl-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 28px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	border: 2px solid transparent;
	transition: all var(--fl-transition);
	white-space: nowrap;
}
.fl-btn--primary { background: var(--fl-orange); color: var(--fl-white); border-color: var(--fl-orange); }
.fl-btn--primary:hover { background: var(--fl-orange-dark); border-color: var(--fl-orange-dark); color: var(--fl-white); }
.fl-btn--outline { background: transparent; color: var(--fl-white); border-color: var(--fl-white); }
.fl-btn--outline:hover { background: var(--fl-white); color: var(--fl-navy); }
.fl-btn--dark { background: var(--fl-navy); color: var(--fl-white); border-color: var(--fl-navy); }
.fl-btn--dark:hover { background: var(--fl-navy-light); color: var(--fl-white); }
.fl-btn--outline-dark { background: transparent; color: var(--fl-navy); border-color: var(--fl-navy); }
.fl-btn--outline-dark:hover { background: var(--fl-navy); color: var(--fl-white); }
.fl-btn--small { padding: 10px 18px; font-size: 13px; }

/* -------------------------------------------------------------
   TOP BAR
   ------------------------------------------------------------- */
.fl-topbar { background: var(--fl-navy-dark); color: #cdd6e5; font-size: 13px; }
.fl-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 24px;
	flex-wrap: wrap;
	gap: 8px;
}
.fl-topbar__contact { display: flex; gap: 24px; flex-wrap: wrap; }
.fl-topbar__contact li { display: flex; align-items: center; gap: 6px; }
.fl-topbar__contact i { color: var(--fl-orange); }
.fl-topbar__contact a:hover { color: var(--fl-orange); }
.fl-topbar__social { display: flex; gap: 12px; }
.fl-topbar__social a {
	width: 26px; height: 26px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
}
.fl-topbar__social a:hover { background: var(--fl-orange); }

/* -------------------------------------------------------------
   HEADER / NAV
   ------------------------------------------------------------- */
.fl-header {
	background: var(--fl-white);
	box-shadow: 0 2px 12px rgba(11,34,66,0.06);
	position: sticky;
	top: 0;
	z-index: 999;
	transition: box-shadow var(--fl-transition);
}
.fl-header.is-scrolled { box-shadow: 0 6px 22px rgba(11,34,66,0.14); }
.fl-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 24px;
	gap: 20px;
}
.fl-logo { display: flex; align-items: center; gap: 12px; }
.fl-logo__img { height: 46px; width: auto; display: block; }
.custom-logo { max-height: 50px; width: auto; }

.fl-nav { flex: 1; display: flex; justify-content: center; }
.fl-menu { display: flex; gap: 32px; }
.fl-menu > li > a {
	font-weight: 600;
	font-size: 14.5px;
	color: var(--fl-navy);
	padding: 8px 2px;
	position: relative;
}
.fl-menu > li > a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 2px;
	background: var(--fl-orange);
	transition: width var(--fl-transition);
}
.fl-menu > li > a:hover,
.fl-menu > li.current-menu-item > a { color: var(--fl-orange); }
.fl-menu > li > a:hover::after,
.fl-menu > li.current-menu-item > a::after { width: 100%; }

.fl-menu .sub-menu {
	position: absolute;
	background: var(--fl-white);
	box-shadow: var(--fl-shadow-lg);
	border-radius: var(--fl-radius);
	padding: 10px;
	min-width: 220px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all var(--fl-transition);
}
.fl-menu li.has-dropdown { position: relative; }
.fl-menu li.has-dropdown:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.fl-menu .sub-menu li a { display: block; padding: 10px 14px; border-radius: 6px; color: var(--fl-navy); font-weight: 500; }
.fl-menu .sub-menu li a:hover { background: var(--fl-gray-50); color: var(--fl-orange); }

.fl-header__actions { display: flex; align-items: center; gap: 16px; }

.fl-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px; height: 40px;
	background: none;
	border: none;
	padding: 0;
}
.fl-menu-toggle span {
	display: block;
	width: 24px; height: 2.5px;
	background: var(--fl-navy);
	border-radius: 2px;
	transition: all var(--fl-transition);
}
.fl-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.fl-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.fl-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* -------------------------------------------------------------
   HERO
   ------------------------------------------------------------- */
.fl-hero {
	background: linear-gradient(180deg, #ffffff 0%, var(--fl-off-white) 100%);
	padding: 64px 0 100px;
}
.fl-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.fl-hero__title {
	font-size: clamp(32px, 4.4vw, 52px);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	margin-bottom: 20px;
}
.fl-accent { color: var(--fl-orange); }
.fl-hero__subtext { font-size: 17px; max-width: 480px; }
.fl-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.fl-hero .fl-btn--outline { color: var(--fl-navy); border-color: var(--fl-navy); }
.fl-hero .fl-btn--outline:hover { background: var(--fl-navy); color: var(--fl-white); }
.fl-hero__media img {
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow-lg);
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* -------------------------------------------------------------
   TRACKING WIDGET
   ------------------------------------------------------------- */
.fl-tracking { margin-top: -64px; position: relative; z-index: 10; margin-bottom: 80px; }
.fl-tracking__box {
	background: var(--fl-navy);
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow-lg);
	padding: 28px 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	color: var(--fl-white);
}
.fl-tracking__label { display: flex; align-items: center; gap: 16px; }
.fl-tracking__icon {
	width: 52px; height: 52px;
	border-radius: 50%;
	background: rgba(245,130,13,0.15);
	color: var(--fl-orange);
	display: flex; align-items: center; justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}
.fl-tracking__label strong { display: block; font-family: var(--fl-font-display); font-size: 17px; }
.fl-tracking__label span { color: #b9c3d6; font-size: 13.5px; }
.fl-tracking__form { display: flex; gap: 12px; flex: 1; max-width: 480px; }
.fl-tracking__form input {
	flex: 1;
	padding: 14px 18px;
	border-radius: 8px;
	border: 1px solid transparent;
	font-size: 14px;
}
.fl-tracking__form input:focus { outline: 2px solid var(--fl-orange); }
.fl-tracking__form .fl-btn { padding: 14px 22px; }

/* -------------------------------------------------------------
   SERVICES
   ------------------------------------------------------------- */
.fl-services { padding: 20px 0 80px; }
.fl-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.fl-service-card {
	background: var(--fl-white);
	border: 1px solid var(--fl-gray-100);
	border-radius: var(--fl-radius);
	padding: 32px 26px;
	text-align: center;
	transition: transform var(--fl-transition), box-shadow var(--fl-transition), border-color var(--fl-transition);
}
.fl-service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--fl-shadow);
	border-color: transparent;
}
.fl-service-card__icon {
	width: 64px; height: 64px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: rgba(245,130,13,0.1);
	color: var(--fl-orange);
	display: flex; align-items: center; justify-content: center;
	font-size: 26px;
}
.fl-service-card h3 { font-size: 18px; margin-bottom: 8px; }
.fl-service-card p { font-size: 14.5px; margin-bottom: 0; }

/* -------------------------------------------------------------
   STATS BAR
   ------------------------------------------------------------- */
.fl-stats { background: var(--fl-navy); padding: 44px 0; }
.fl-stats__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	text-align: center;
}
.fl-stat { display: flex; flex-direction: column; gap: 6px; position: relative; }
.fl-stat:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -12px; top: 50%;
	transform: translateY(-50%);
	height: 60%;
	width: 1px;
	background: rgba(255,255,255,0.12);
}
.fl-stat__number { font-family: var(--fl-font-display); font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--fl-orange); }
.fl-stat__label { color: #cdd6e5; font-size: 13.5px; }

/* -------------------------------------------------------------
   ABOUT
   ------------------------------------------------------------- */
.fl-about { padding: 90px 0; }
.fl-about__inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: center;
}
.fl-about__media img {
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow);
	aspect-ratio: 4/3.2;
	object-fit: cover;
}
.fl-about__content h2 { font-size: clamp(26px, 3.2vw, 34px); }
.fl-about__points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin: 28px 0 32px;
}
.fl-about__point { display: flex; gap: 14px; align-items: flex-start; }
.fl-about__point-icon {
	width: 42px; height: 42px;
	flex-shrink: 0;
	border-radius: 10px;
	background: rgba(245,130,13,0.1);
	color: var(--fl-orange);
	display: flex; align-items: center; justify-content: center;
	font-size: 17px;
}
.fl-about__point strong { display: block; color: var(--fl-navy); font-size: 15px; margin-bottom: 3px; }
.fl-about__point p { font-size: 13.5px; margin: 0; }

/* -------------------------------------------------------------
   INDUSTRIES
   ------------------------------------------------------------- */
.fl-industries { padding: 20px 0 90px; background: var(--fl-gray-50); padding-top: 90px; }
.fl-industries__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}
.fl-industry-card { text-align: center; }
.fl-industry-card__media {
	border-radius: var(--fl-radius);
	overflow: hidden;
	margin-bottom: 14px;
	aspect-ratio: 1/1;
	box-shadow: var(--fl-shadow);
}
.fl-industry-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--fl-transition); }
.fl-industry-card:hover .fl-industry-card__media img { transform: scale(1.08); }
.fl-industry-card h3 { font-size: 14.5px; margin: 0; }

/* -------------------------------------------------------------
   WHY CHOOSE US
   ------------------------------------------------------------- */
.fl-why-us { padding: 90px 0; }
.fl-why-us__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}
.fl-why-us__icon {
	width: 60px; height: 60px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: rgba(11,34,66,0.06);
	color: var(--fl-navy);
	display: flex; align-items: center; justify-content: center;
	font-size: 24px;
}
.fl-why-us__item h3 { font-size: 16.5px; margin-bottom: 8px; }
.fl-why-us__item p { font-size: 14px; margin: 0; }

/* -------------------------------------------------------------
   CTA BANNER
   ------------------------------------------------------------- */
.fl-cta-banner {
	background: linear-gradient(90deg, rgba(7,26,51,0.94), rgba(11,34,66,0.85)), var(--fl-cta-image) center/cover no-repeat;
	padding: 70px 0;
}
.fl-cta-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.fl-cta-banner h2 { color: var(--fl-white); font-size: clamp(24px, 3vw, 32px); margin-bottom: 6px; }
.fl-cta-banner p { color: #cdd6e5; margin: 0; font-size: 16px; }

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */
.fl-footer { background: var(--fl-navy-dark); color: #b9c3d6; padding-top: 70px; }
.fl-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
	gap: 40px;
	padding-bottom: 50px;
}
.fl-footer h4 { color: var(--fl-white); font-size: 16px; margin-bottom: 20px; }
.fl-footer p { color: #a3aec2; font-size: 14px; }
.fl-logo--footer { margin-bottom: 16px; }
.fl-logo--footer .fl-logo__img { height: 44px; }
.fl-footer__social { display: flex; gap: 10px; margin-top: 18px; }
.fl-footer__social a {
	width: 34px; height: 34px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	display: flex; align-items: center; justify-content: center;
}
.fl-footer__social a:hover { background: var(--fl-orange); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: #b9c3d6; }
.footer-links a:hover { color: var(--fl-orange); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; }
.footer-contact i { color: var(--fl-orange); margin-top: 3px; }
.footer-contact a:hover { color: var(--fl-orange); }

.fl-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.fl-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 13px;
}
.fl-footer__bottom-inner p { margin: 0; color: #8b96ab; }
.fl-footer__legal { display: flex; gap: 20px; }
.fl-footer__legal a { color: #8b96ab; }
.fl-footer__legal a:hover { color: var(--fl-orange); }

/* -------------------------------------------------------------
   BLOG / PAGE TEMPLATES
   ------------------------------------------------------------- */
.fl-content-wrap { padding: 60px 0 90px; }
.fl-page-header { margin-bottom: 40px; }
.fl-page-header h1 { font-size: clamp(28px, 3.5vw, 40px); }
.fl-blog-layout { display: grid; grid-template-columns: 2.2fr 1fr; gap: 48px; align-items: start; }
.fl-post-card { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--fl-gray-100); }
.fl-post-card__thumb { display: block; border-radius: var(--fl-radius); overflow: hidden; margin-bottom: 20px; aspect-ratio: 16/9; }
.fl-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.fl-post-card__title { font-size: 22px; margin-bottom: 10px; }
.fl-post-card__title a:hover { color: var(--fl-orange); }
.fl-post-card__meta { display: flex; gap: 18px; font-size: 13px; color: var(--fl-gray-500); margin-bottom: 12px; }
.fl-post-card__meta i { color: var(--fl-orange); margin-right: 4px; }
.fl-sidebar .widget { margin-bottom: 32px; background: var(--fl-gray-50); padding: 24px; border-radius: var(--fl-radius); }
.widget-title { font-size: 16px; margin-bottom: 16px; }
.fl-search-form { display: flex; }
.fl-search-form input { flex: 1; padding: 10px 14px; border: 1px solid var(--fl-gray-300); border-radius: 6px 0 0 6px; }
.fl-search-form button { background: var(--fl-orange); color: var(--fl-white); border: none; padding: 0 16px; border-radius: 0 6px 6px 0; }
.fl-page__thumb { border-radius: var(--fl-radius-lg); overflow: hidden; margin-bottom: 32px; }
.fl-page__content { font-size: 16px; }
.fl-page__content h2, .fl-page__content h3 { margin-top: 32px; }
.fl-comments { margin-top: 50px; }
.fl-comment-list { margin-top: 24px; }

/* -------------------------------------------------------------
   RESPONSIVE — TABLET (≤1024px)
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
	.fl-services__grid { grid-template-columns: repeat(2, 1fr); }
	.fl-industries__grid { grid-template-columns: repeat(3, 1fr); }
	.fl-why-us__grid { grid-template-columns: repeat(2, 1fr); }
	.fl-about__inner { grid-template-columns: 1fr; }
	.fl-about__media { order: -1; }
	.fl-blog-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
	.fl-nav { display: none; }
	.fl-menu-toggle { display: flex; }

	.fl-nav.is-open {
		display: block;
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: var(--fl-white);
		box-shadow: var(--fl-shadow);
		padding: 16px 24px;
		max-height: calc(100vh - 70px);
		overflow-y: auto;
	}
	.fl-nav.is-open .fl-menu { flex-direction: column; gap: 4px; }
	.fl-nav.is-open .fl-menu > li > a { display: block; padding: 12px 0; border-bottom: 1px solid var(--fl-gray-100); }
	.fl-nav.is-open .sub-menu {
		position: static;
		opacity: 1; visibility: visible; transform: none;
		box-shadow: none;
		padding-left: 16px;
		display: none;
	}
	.fl-nav.is-open li.has-dropdown.is-open > .sub-menu { display: block; }

	.fl-hero__inner { grid-template-columns: 1fr; text-align: center; }
	.fl-hero__actions { justify-content: center; }
	.fl-hero__subtext { margin-left: auto; margin-right: auto; }
	.fl-hero__media { order: -1; }

	.fl-tracking__box { flex-direction: column; align-items: stretch; }
	.fl-tracking__form { max-width: none; }

	.fl-stats__grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
	.fl-stat:nth-child(3)::after { display: none; }

	.fl-industries__grid { grid-template-columns: repeat(3, 1fr); }
	.fl-why-us__grid { grid-template-columns: repeat(2, 1fr); }

	.fl-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* -------------------------------------------------------------
   RESPONSIVE — MOBILE (≤600px)
   ------------------------------------------------------------- */
@media (max-width: 600px) {
	.fl-topbar__inner { justify-content: center; text-align: center; }
	.fl-topbar__contact { justify-content: center; gap: 14px; }
	.fl-topbar__contact li:first-child { display: none; }

	.fl-header__actions .fl-btn--small { display: none; }

	.fl-hero { padding: 40px 0 70px; }
	.fl-hero__title { font-size: 30px; }
	.fl-hero__actions { flex-direction: column; }
	.fl-hero__actions .fl-btn { width: 100%; justify-content: center; }

	.fl-tracking { margin-top: -40px; }
	.fl-tracking__box { padding: 22px; }
	.fl-tracking__form { flex-direction: column; }
	.fl-tracking__form .fl-btn { justify-content: center; }

	.fl-services__grid { grid-template-columns: 1fr; }
	.fl-stats__grid { grid-template-columns: repeat(2, 1fr); }
	.fl-stat:nth-child(odd)::after { display: none; }

	.fl-about__points { grid-template-columns: 1fr; }

	.fl-industries__grid { grid-template-columns: repeat(2, 1fr); }
	.fl-why-us__grid { grid-template-columns: 1fr; }

	.fl-cta-banner__inner { flex-direction: column; text-align: center; }

	.fl-footer__grid { grid-template-columns: 1fr; text-align: left; }
	.fl-footer__bottom-inner { flex-direction: column; text-align: center; }
}
