/* ==========================================================================
   VeloceLogistics — site-wide styles for the [veloce_home] and [veloce_contact]
   sections. Loads after assets/tracking.css.
   ========================================================================== */

.velo-site {
	font-family: 'Inter', sans-serif;
	color: #1e293b;
}
.velo-site * { box-sizing: border-box; }
.velo-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.velo-section { padding: 80px 0; }
.velo-section--tint { background: #f8fafc; }
.velo-section--flush-top { padding-top: 0; }

.velo-kicker {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: #0e8691;
}
.velo-h2site {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #0f2a4a;
	margin: 12px 0 0;
	line-height: 1.2;
}
.velo-h2site--light { color: #fff; }
.velo-sub { color: #475569; line-height: 1.7; margin-top: 14px; font-size: 15px; }
.velo-sub--light { color: #cbd5e1; }

/* Buttons */
.velo-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 24px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
}
.velo-btn--navy { background: #0f2a4a; color: #fff; }
.velo-btn--navy:hover { background: #16385e; }
.velo-btn--accent { background: #0e8691; color: #fff; width: 100%; justify-content: center; }
.velo-btn--accent:hover { background: #0b7079; }

/* Hero */
.velo-hero { position: relative; overflow: hidden; background: #0f2a4a; text-align: center; }
.velo-hero-bg {
	position: absolute; inset: 0;
	background-image: url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=2000&q=80');
	background-size: cover;
	background-position: center;
	opacity: 0.2;
}
.velo-hero-gradient {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(15,42,74,0.8), rgba(15,42,74,0.85), #0f2a4a);
}
.velo-hero-inner { position: relative; max-width: 880px; margin: 0 auto; padding: 96px 20px; }
.velo-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(45,212,228,0.4);
	border-radius: 999px;
	padding: 7px 16px;
	font-size: 12px;
	font-weight: 600;
	color: #2dd4e4;
}
.velo-h1 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 44px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 24px 0 0;
}
@media (max-width: 640px) { .velo-h1 { font-size: 32px; } }
.velo-accent-text { color: #2dd4e4; }
.velo-hero-sub { color: #cbd5e1; max-width: 560px; margin: 20px auto 0; font-size: 16px; line-height: 1.65; }
.velo-hero-form {
	background: #fff;
	border-radius: 16px;
	padding: 10px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	max-width: 640px;
	margin: 40px auto 0;
	box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}
.velo-hero-form input {
	flex: 1 1 220px;
	border: none;
	outline: none;
	padding: 14px 16px;
	font-size: 15px;
	font-weight: 500;
	min-width: 0;
	font-family: inherit;
	color: #0f2a4a;
}
.velo-hero-form button {
	background: #0e8691;
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 14px 24px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	font-family: inherit;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.velo-hero-form button:hover { background: #0b7079; }
.velo-hero-sample { margin-top: 16px; font-size: 12.5px; color: #cbd5e1; }
.velo-hero-sample a { color: #2dd4e4; font-weight: 700; text-decoration: none; }

/* Stats bar */
.velo-statsbar { background: #fff; border-bottom: 1px solid #f1f5f9; }
.velo-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 40px; padding-bottom: 40px; text-align: center; }
@media (max-width: 640px) { .velo-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.velo-stat-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 30px; font-weight: 800; color: #0f2a4a; }
.velo-stat-label { font-size: 13px; color: #64748b; margin-top: 4px; }

/* Services */
.velo-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 900px) { .velo-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .velo-services-grid { grid-template-columns: 1fr; } }
.velo-service-card {
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 26px;
	background: #fff;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.velo-service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(14,134,145,0.4);
	box-shadow: 0 20px 40px rgba(148,163,184,0.25);
}
.velo-service-icon {
	width: 48px; height: 48px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 12px;
	background: rgba(14,134,145,0.1);
	color: #0e8691;
}
.velo-service-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: #0f2a4a; margin: 16px 0 0; }
.velo-service-desc { font-size: 14px; color: #475569; line-height: 1.65; margin: 8px 0 0; }

/* Global section */
.velo-global { position: relative; overflow: hidden; background: #0f2a4a; }
.velo-global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-top: 80px; padding-bottom: 80px; }
@media (max-width: 900px) { .velo-global-grid { grid-template-columns: 1fr; } }
.velo-global-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 24px; margin-top: 40px; }
.velo-gs-item { border-left: 2px solid rgba(14,134,145,0.5); padding-left: 16px; }
.velo-gs-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; color: #fff; }
.velo-gs-label { font-size: 13px; color: #94a3b8; margin-top: 4px; }
.velo-corridor {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 16px;
	padding: 28px;
}
.velo-corridor-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: #94a3b8; }
.velo-corridor-stops { margin-top: 24px; }
.velo-stop { display: flex; align-items: center; gap: 14px; }
.velo-stop-icon {
	width: 40px; height: 40px;
	flex: 0 0 40px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	color: #cbd5e1;
	border: 2px solid rgba(255,255,255,0.15);
}
.velo-stop-icon.is-accent { background: rgba(14,134,145,0.2); color: #2dd4e4; border-color: #0e8691; }
.velo-stop-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: #fff; }
.velo-stop-title.is-accent { color: #2dd4e4; }
.velo-stop-sub { font-size: 12px; color: #94a3b8; }
.velo-stop-line { margin-left: 20px; height: 20px; border-left: 2px dashed rgba(255,255,255,0.2); }
.velo-corridor-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.velo-pill--accent { background: rgba(14,134,145,0.15); color: #2dd4e4; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.velo-pill--light { background: rgba(255,255,255,0.1); color: #cbd5e1; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }

/* Two-column blocks */
.velo-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-top: 80px; padding-bottom: 80px; }
.velo-two-col--reverse .velo-img-wrap { order: 0; }
@media (max-width: 900px) { .velo-two-col { grid-template-columns: 1fr; gap: 40px; } }

.velo-bullets { list-style: none; padding: 0; margin: 24px 0 0; }
.velo-bullets li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 14px; color: #334155; }
.velo-bullets .velo-icon { color: #0e8691; flex: 0 0 auto; margin-top: 1px; }

.velo-demo-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px; box-shadow: 0 25px 50px rgba(148,163,184,0.3); }
.velo-demo-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.velo-demo-trk-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: #94a3b8; }
.velo-demo-trk { font-family: ui-monospace, 'Courier New', monospace; font-size: 18px; font-weight: 700; color: #0f2a4a; margin-top: 2px; }
.velo-demo-eta {
	display: flex; justify-content: space-between; align-items: center;
	background: #f8fafc; border-radius: 12px; padding: 12px 16px; margin-top: 32px;
	font-size: 12.5px; color: #64748b;
}
.velo-demo-eta strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; color: #0f2a4a; }

/* Feature lists (why-us / about / contact support) */
.velo-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
@media (max-width: 640px) { .velo-feature-list { grid-template-columns: 1fr; } }
.velo-feature { display: flex; gap: 12px; }
.velo-feature-icon {
	width: 40px; height: 40px;
	flex: 0 0 40px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 10px;
	background: rgba(14,134,145,0.1);
	color: #0e8691;
}
.velo-feature-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: #0f2a4a; margin: 0 0 4px; }
.velo-feature-desc { font-size: 13px; color: #64748b; line-height: 1.6; margin: 0; }

/* Image frames and overlays */
.velo-img-wrap { position: relative; }
.velo-img-frame { border-radius: 16px; overflow: hidden; box-shadow: 0 25px 50px rgba(148,163,184,0.3); }
.velo-img-frame img { display: block; width: 100%; height: 420px; object-fit: cover; }
@media (max-width: 900px) { .velo-img-frame img { height: 320px; } }
.velo-overlay-card {
	position: absolute;
	bottom: -24px; left: 24px;
	display: flex; align-items: center; gap: 12px;
	background: #fff; border-radius: 12px; padding: 20px;
	box-shadow: 0 20px 40px rgba(15,42,74,0.18);
}
@media (max-width: 900px) { .velo-overlay-card { position: static; margin-top: 16px; left: auto; } }
.velo-overlay-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: #0f2a4a; }
.velo-overlay-sub { font-size: 12px; color: #64748b; }
.velo-about-badge {
	position: absolute;
	bottom: -24px; left: 24px;
	background: #0f2a4a; color: #fff; border-radius: 12px; padding: 20px;
	box-shadow: 0 20px 40px rgba(15,42,74,0.3);
}
@media (max-width: 900px) { .velo-about-badge { position: static; margin-top: 16px; left: auto; display: inline-block; } }
.velo-about-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 800; color: #2dd4e4; }
.velo-about-sub { font-size: 12px; color: #cbd5e1; margin-top: 2px; }

/* Contact */
.velo-support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .velo-support-grid { grid-template-columns: 1fr; } }
.velo-support-card { display: flex; align-items: flex-start; gap: 16px; border: 1px solid #e2e8f0; background: #fff; border-radius: 16px; padding: 20px; }
.velo-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 64px; }
@media (max-width: 900px) { .velo-contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.velo-contact-items { margin-top: 32px; }
.velo-contact-item {
	display: flex; align-items: center; gap: 12px;
	color: #334155; font-size: 14.5px; margin-bottom: 16px;
}
.velo-contact-item .velo-icon {
	width: 40px; height: 40px;
	flex: 0 0 40px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 10px;
	background: rgba(14,134,145,0.1);
	color: #0e8691;
}
.velo-form { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px; box-shadow: 0 4px 14px rgba(15,42,74,0.05); }
.velo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .velo-form-row { grid-template-columns: 1fr; } }
.velo-form input, .velo-form textarea {
	width: 100%;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px 16px;
	font-size: 14px;
	font-family: inherit;
	color: #0f2a4a;
	background: #fff;
	outline: none;
	margin-bottom: 16px;
	resize: vertical;
}
.velo-form input:focus, .velo-form textarea:focus {
	border-color: #0e8691;
	box-shadow: 0 0 0 3px rgba(14,134,145,0.15);
}
.velo-alert {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	border-radius: 12px;
	padding: 12px 16px;
	margin-bottom: 16px;
	font-size: 13.5px;
}
.velo-success {
	border: 1px solid rgba(14,134,145,0.3);
	background: rgba(14,134,145,0.05);
	border-radius: 16px;
	padding: 48px 28px;
	text-align: center;
	color: #0e8691;
	min-height: 260px;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.velo-success-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: #0f2a4a; margin-top: 16px; }
.velo-success-sub { font-size: 14px; color: #475569; margin-top: 8px; max-width: 380px; }