﻿/* ==========================================================================
   Anmol Theme for Transport — design system
   Navy #0B3D91  ·  Orange #FF7A00  ·  Green #23B14D
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts
   -------------------------------------------------------------------------- */
@font-face {
	font-family: "Titillium Web";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/titillium-web-400.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
		U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: "Titillium Web";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/titillium-web-600.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
		U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: "Titillium Web";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/titillium-web-700.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
		U+2212, U+2215, U+FEFF, U+FFFD;
}
/*
 * 400 / 600 / 700 only. The reference layout sets headings at 600 and never
 * goes heavier, so the 900 face is dead weight.
 */

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */
:root {
	/* Brand */
	--navy: #0b3d91;
	--navy-700: #092f70;
	--navy-900: #061f4b;
	--navy-100: #e7edf9;
	--orange: #ff7a00;
	--orange-600: #e56d00;
	--orange-100: #fff1e3;
	--green: #23b14d;
	--green-600: #1c9440;
	--green-100: #e6f7ec;

	/* Neutrals */
	--ink: #1a1a1a;
	--body: #4a5260;
	--muted: #737b88;
	--line: #e3e7ee;
	--light: #f7f8fa;
	--white: #fff;

	/* Status */
	--star: #ffb400;
	--whatsapp: #25d366;

	/* Type */
	--font: "Titillium Web", system-ui, -apple-system, "Segoe UI", sans-serif;
	--fs-hero: clamp(2rem, 1.35rem + 2.9vw, 3.5rem);
	--fs-h1: clamp(1.75rem, 1.3rem + 2vw, 2.75rem);
	--fs-h2: clamp(1.5rem, 1.2rem + 1.35vw, 2.25rem);
	--fs-h3: clamp(1.2rem, 1.08rem + 0.55vw, 1.5rem);
	--fs-h4: 1.125rem;
	--fs-body: 1rem;
	--fs-sm: 0.875rem;
	--fs-xs: 0.8125rem;

	/* Space */
	--gap: 1.5rem;
	--section-y: clamp(3rem, 2rem + 3vw, 5rem);
	--radius: 8px;
	--radius-lg: 10px;
	--radius-xl: 18px;
	--radius-pill: 999px;

	/* Dark block used for the process band and the footer */
	--ink-block: #101010;

	/* Shadow */
	--shadow-sm: 0 1px 3px rgb(11 61 145 / 8%);
	--shadow: 0 6px 20px rgb(11 61 145 / 10%);
	--shadow-lg: 0 18px 46px rgb(11 61 145 / 14%);

	/* Layout */
	--wrap: 1220px;
	--wrap-narrow: 860px;
	--header-h: 84px;
	--mobilebar-h: 58px;

	/* Motion */
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--t: 0.25s var(--ease);
}

/* --------------------------------------------------------------------------
   3. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: var(--fs-body);
	line-height: 1.5;
	color: var(--body);
	background: var(--white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* Mobile action bar needs breathing room at the bottom of every page. */
@media (max-width: 991px) {
	body {
		padding-bottom: var(--mobilebar-h);
	}
}

/*
 * Titillium Web at 600 is what the reference layout uses for headings. At
 * 900 the same font turns blocky and the letterforms close up, which is why
 * the earlier build read as heavier and cheaper. Tracking stays at normal.
 */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.6em;
	font-weight: 600;
	line-height: 1.2;
	color: var(--ink);
	letter-spacing: normal;
}

h1 {
	font-size: var(--fs-h1);
}
h2 {
	font-size: var(--fs-h2);
}
h3 {
	font-size: var(--fs-h3);
	font-weight: 700;
}
h4 {
	font-size: var(--fs-h4);
	font-weight: 700;
}

p {
	margin: 0 0 1.1em;
}

a {
	color: var(--navy);
	text-decoration: none;
	transition: color var(--t);
}

a:hover {
	color: var(--orange);
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
	display: block;
}

ul,
ol {
	margin: 0 0 1.1em;
	padding-left: 1.25rem;
}

li {
	margin-bottom: 0.4em;
}

strong,
b {
	font-weight: 700;
	color: var(--ink);
}

hr {
	border: 0;
	border-top: 1px solid var(--line);
	margin: 2rem 0;
}

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

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

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.wrap {
	width: min(100% - 2rem, var(--wrap));
	margin-inline: auto;
}

.wrap--narrow {
	width: min(100% - 2rem, var(--wrap-narrow));
	margin-inline: auto;
}

.section {
	padding-block: var(--section-y);
}

/*
 * Two plain sections back to back stack their padding and leave a canyon of
 * white. When the backgrounds match there is nothing to separate, so the
 * second one drops its top padding.
 */
.section + .section:not([class*="section--"]) {
	padding-top: 0;
}

.section--light {
	background: var(--light);
}

.section--navy {
	background: var(--navy);
	color: rgb(255 255 255 / 82%);
}

/* Near-black band — the process steps sit on this, same as the reference. */
.section--dark {
	background: var(--ink-block);
	color: rgb(255 255 255 / 78%);
}

/* Photo band with a solid brand wash over it. */
.section--photo {
	position: relative;
	background-size: cover;
	background-position: center;
	color: rgb(255 255 255 / 88%);
	z-index: 1;
}

.section--photo::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--navy);
	opacity: 0.85;
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--photo h1,
.section--photo h2,
.section--photo h3,
.section--photo h4 {
	color: #fff;
}

.section--dark .sec-head p,
.section--photo .sec-head p,
.section--navy .sec-head p {
	color: rgb(255 255 255 / 78%);
}

.section--dark .eyebrow,
.section--photo .eyebrow,
.section--navy .eyebrow {
	color: var(--orange);
}

.grid {
	display: grid;
	gap: var(--gap);
}

.grid--2 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
.grid--3 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}
.grid--4 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.stack > * + * {
	margin-top: var(--flow, 1rem);
}

/* --------------------------------------------------------------------------
   5. Section heading
   -------------------------------------------------------------------------- */
.sec-head {
	max-width: 720px;
	margin: 0 auto clamp(2rem, 1.4rem + 2vw, 3rem);
	text-align: center;
}

.sec-head--left {
	margin-inline: 0;
	text-align: left;
}

.eyebrow {
	display: inline-block;
	margin-bottom: 0.35rem;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--orange);
}

/*
 * Section headings carry two things the plain h2 does not: a second colour
 * on the emphasised words, and a short accent rule underneath. Both come
 * from the reference layout and are what make a heading read as a heading
 * rather than as large text.
 */
.sec-head h2,
.sec-head h1 {
	position: relative;
	margin-bottom: 0;
	padding-bottom: 1rem;
	font-size: clamp(1.8rem, 1.15rem + 2.4vw, 2.44rem);
	font-weight: 700;
	text-transform: capitalize;
}

.sec-head h2::after,
.sec-head h1::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 4px;
	background: var(--orange);
}

.sec-head--left h2::after,
.sec-head--left h1::after {
	left: 0;
	transform: none;
}

.sec-head p {
	margin: 1.1rem 0 0;
	font-size: 1.0625rem;
	color: var(--muted);
}

/* The accented half of a heading. */
h1 em,
h2 em,
h3 em,
.accent {
	font-style: normal;
	color: var(--orange);
}

.section--navy .sec-head h2::after,
.pagehead .sec-head h2::after {
	background: var(--orange);
}

/* Headings inside long-form content get the same rule, left aligned. */
.entry h2 {
	position: relative;
	padding-bottom: 0.85rem;
	font-size: clamp(1.5rem, 1.2rem + 1.2vw, 1.8rem);
	font-weight: 700;
	text-transform: capitalize;
}

.entry h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 4px;
	background: var(--orange);
}

.lead {
	font-size: 1.125rem;
	color: var(--body);
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 12px 25px;
	border: 2px solid transparent;
	border-radius: 8px;
	font: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--t), color var(--t), border-color var(--t),
		transform var(--t), box-shadow var(--t);
}

.btn:hover {
	transform: translateY(-2px);
}

.btn:active {
	transform: translateY(0);
}

.btn--primary {
	background: var(--orange);
	color: #fff;
	box-shadow: 0 6px 18px rgb(255 122 0 / 28%);
}
.btn--primary:hover {
	background: var(--orange-600);
	color: #fff;
	box-shadow: 0 10px 24px rgb(255 122 0 / 34%);
}

.btn--navy {
	background: var(--navy);
	color: #fff;
}
.btn--navy:hover {
	background: var(--navy-700);
	color: #fff;
}

.btn--green,
.btn--whatsapp {
	background: var(--whatsapp);
	color: #fff;
}
.btn--green:hover,
.btn--whatsapp:hover {
	background: var(--green-600);
	color: #fff;
}

.btn--ghost {
	background: transparent;
	border-color: var(--navy);
	color: var(--navy);
}
.btn--ghost:hover {
	background: var(--navy);
	color: #fff;
}

.btn--ghost-white {
	background: transparent;
	border-color: rgb(255 255 255 / 55%);
	color: #fff;
}
.btn--ghost-white:hover {
	background: #fff;
	color: var(--navy);
}

.btn--lg {
	padding: 15px 32px;
	font-size: 1rem;
}
.btn--sm {
	padding: 8px 16px;
	font-size: 0.8125rem;
}
.btn--block {
	width: 100%;
}

.btn svg {
	width: 1.1em;
	height: 1.1em;
	flex: none;
	fill: currentcolor;
}

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.card:hover {
	transform: translateY(-4px);
	border-color: transparent;
	box-shadow: var(--shadow-lg);
}

.card__media {
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--navy-100);
}

.card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.card:hover .card__media img {
	transform: scale(1.06);
}

.card__body {
	flex: 1;
	padding: 1.4rem;
}

.card__body > :last-child {
	margin-bottom: 0;
}

.card__title {
	margin-bottom: 0.5rem;
	font-size: 1.1875rem;
}

.card__title a {
	color: inherit;
}

.card__title a:hover {
	color: var(--orange);
}

.card__text {
	margin-bottom: 0;
	font-size: var(--fs-sm);
	color: var(--muted);
}

/* Icon tile used by feature boxes and process steps */
.icon-tile {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 1rem;
	border-radius: 14px;
	background: var(--navy-100);
	color: var(--navy);
}

.icon-tile svg {
	width: 28px;
	height: 28px;
	fill: currentcolor;
}

.icon-tile--orange {
	background: var(--orange-100);
	color: var(--orange);
}
.icon-tile--green {
	background: var(--green-100);
	color: var(--green-600);
}

/* --------------------------------------------------------------------------
   8. Badges & pills
   -------------------------------------------------------------------------- */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.75rem;
	border-radius: var(--radius-pill);
	font-size: var(--fs-xs);
	font-weight: 700;
	line-height: 1.4;
}

.badge--green {
	background: var(--green-100);
	color: var(--green-600);
}
.badge--orange {
	background: var(--orange-100);
	color: var(--orange-600);
}
.badge--navy {
	background: var(--navy-100);
	color: var(--navy);
}

.badge svg {
	width: 0.95em;
	height: 0.95em;
	fill: currentcolor;
}

/* --------------------------------------------------------------------------
   9. Forms
   -------------------------------------------------------------------------- */
.field {
	margin-bottom: 1rem;
}

.field label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--ink);
}

.input,
.select,
.textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1.5px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	font: inherit;
	font-size: var(--fs-body);
	color: var(--ink);
	transition: border-color var(--t), box-shadow var(--t);
}

.input::placeholder,
.textarea::placeholder {
	color: #9aa2b0;
}

.input:focus,
.select:focus,
.textarea:focus {
	outline: 0;
	border-color: var(--navy);
	box-shadow: 0 0 0 3px rgb(11 61 145 / 12%);
}

.select {
	appearance: none;
	padding-right: 2.5rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%234a5260' d='M8 11 3 6h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.9rem center;
	background-size: 14px;
}

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

.field__error {
	display: none;
	margin-top: 0.3rem;
	font-size: var(--fs-xs);
	font-weight: 600;
	color: #d92d20;
}

.field.is-invalid .input,
.field.is-invalid .select,
.field.is-invalid .textarea {
	border-color: #d92d20;
}

.field.is-invalid .field__error {
	display: block;
}

/* Honeypot — must stay reachable to bots but invisible to humans. */
.hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-note {
	margin: 0;
	font-size: var(--fs-xs);
	color: var(--muted);
}

.form-msg {
	padding: 0.85rem 1rem;
	border-radius: var(--radius);
	font-size: var(--fs-sm);
	font-weight: 600;
}

.form-msg--ok {
	background: var(--green-100);
	color: var(--green-600);
}
.form-msg--err {
	background: #fdecea;
	color: #d92d20;
}

/* --------------------------------------------------------------------------
   10. Stars
   -------------------------------------------------------------------------- */
.stars {
	display: inline-flex;
	gap: 2px;
	line-height: 1;
}

.stars svg {
	width: 16px;
	height: 16px;
	fill: var(--star);
}

.stars--muted svg {
	fill: var(--line);
}

/* --------------------------------------------------------------------------
   11. Tables
   -------------------------------------------------------------------------- */
.table-scroll {
	overflow-x: auto;
	margin-bottom: 1.5rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	-webkit-overflow-scrolling: touch;
}

table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--fs-sm);
}

th,
td {
	padding: 0.85rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--line);
}

thead th {
	background: var(--navy);
	color: #fff;
	font-weight: 700;
	white-space: nowrap;
}

tbody tr:last-child td {
	border-bottom: 0;
}

tbody tr:nth-child(even) {
	background: var(--light);
}

/* --------------------------------------------------------------------------
   12. Scroll reveal (IntersectionObserver adds .is-in)
   -------------------------------------------------------------------------- */
/*
 * Four entrance directions with staggered delays, matching the reference
 * layout's fadeInUp / Down / Left / Right pattern.
 *
 * The hidden state only applies once JS has confirmed it can run the
 * animation (html.anim). A script failure, a blocked observer or a slow
 * device can therefore never leave content permanently invisible.
 */
.anim .reveal {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
	will-change: opacity, transform;
}

.anim .reveal--down {
	transform: translateY(-60px);
}

.anim .reveal--left {
	transform: translateX(-60px);
}

.anim .reveal--right {
	transform: translateX(60px);
}

.anim .reveal.is-in,
.anim-off .reveal {
	opacity: 1;
	transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }
.reveal[data-delay="7"] { transition-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/*
 * Hero copy animates in on each slide change. JS adds .is-on to the active
 * slide; the same fail-safe applies — no .anim class, no hiding.
 */
.anim .hero__slide .hero__eyebrow,
.anim .hero__slide .hero__title,
.anim .hero__slide .hero__text,
.anim .hero__slide .hero__points,
.anim .hero__slide .btn-row {
	opacity: 0;
	transform: translateY(-40px);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.anim .hero__slide.is-on .hero__eyebrow,
.anim .hero__slide.is-on .hero__title,
.anim .hero__slide.is-on .hero__text,
.anim .hero__slide.is-on .hero__points,
.anim .hero__slide.is-on .btn-row,
.anim-off .hero__slide .hero__eyebrow,
.anim-off .hero__slide .hero__title,
.anim-off .hero__slide .hero__text,
.anim-off .hero__slide .hero__points,
.anim-off .hero__slide .btn-row {
	opacity: 1;
	transform: none;
}

.anim .hero__slide.is-on .hero__eyebrow { transition-delay: 0.1s; }
.anim .hero__slide.is-on .hero__title   { transition-delay: 0.3s; }
.anim .hero__slide.is-on .hero__text    { transition-delay: 0.5s; }
.anim .hero__slide.is-on .hero__points  { transition-delay: 0.6s; }
.anim .hero__slide.is-on .btn-row       { transition-delay: 0.7s; }

/* --------------------------------------------------------------------------
   13. Shared sections
   These appear on the home page AND on inner pages, so they live here rather
   than in home.css — otherwise they lose their styling everywhere else.
   -------------------------------------------------------------------------- */

/* ---- Quote box (hero, sidebars, modal) ---- */
.quotebox {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	color: var(--body);
}

.hero .quotebox {
	border: 0;
	box-shadow: 0 24px 60px rgb(0 0 0 / 28%);
}

.quotebox__title {
	margin-bottom: 0.25rem;
	font-size: 1.35rem;
}

.quotebox__sub {
	margin-bottom: 1.1rem;
	font-size: var(--fs-sm);
	color: var(--muted);
}

.quotebox__tabs {
	display: flex;
	gap: 0.3rem;
	margin-bottom: 1.1rem;
	padding: 0.25rem;
	border-radius: var(--radius-pill);
	background: var(--light);
}

.quotebox__tab {
	flex: 1;
	padding: 0.55rem 0.5rem;
	border: 0;
	border-radius: var(--radius-pill);
	background: transparent;
	font: inherit;
	font-size: var(--fs-sm);
	font-weight: 700;
	color: var(--muted);
	cursor: pointer;
	transition: background var(--t), color var(--t);
}

.quotebox__tab[aria-selected="true"] {
	background: var(--navy);
	color: #fff;
}

.quotebox__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.quotebox__row .field {
	margin-bottom: 0;
}

.quotebox .field {
	margin-bottom: 0.75rem;
}

.quotebox__submit {
	margin-top: 0.35rem;
}

.quotebox__note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	margin: 0.75rem 0 0;
	font-size: var(--fs-xs);
	color: var(--muted);
}

.quotebox__note .icon {
	width: 14px;
	height: 14px;
	fill: var(--green);
	flex: none;
}

/* ---- CTA band ---- */
.ctaband {
	position: relative;
	padding-block: clamp(2.5rem, 2rem + 2.5vw, 4rem);
	background: var(--navy);
	background-size: cover;
	background-position: center;
	color: rgb(255 255 255 / 85%);
	overflow: hidden;
}

.ctaband__inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.ctaband h2 {
	margin-bottom: 0.35rem;
	color: #fff;
}

.ctaband p {
	margin: 0;
	max-width: 52ch;
	color: rgb(255 255 255 / 88%);
}

/* ---- Counters ---- */
.counters {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
	gap: 1.5rem;
	text-align: center;
}

.counter__num {
	display: block;
	font-size: clamp(2.4rem, 1.6rem + 3.2vw, 4rem);
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1;
	color: #fff;
}

.counter__num::after {
	content: attr(data-suffix);
}

.counter__label {
	display: block;
	margin-top: 0.4rem;
	font-size: var(--fs-sm);
	font-weight: 600;
	color: rgb(255 255 255 / 82%);
}

/* ---- Trust strip ---- */
.trust {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
	gap: 1.25rem;
}

.trust__item {
	display: flex;
	gap: 0.9rem;
	padding: 1.25rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
}

.trust__item h3 {
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.trust__item p {
	margin: 0;
	font-size: var(--fs-xs);
	color: var(--muted);
}

/* ---- Process steps ---- */
.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: 1.5rem;
}

.step {
	position: relative;
	padding: 2.75rem 1.5rem 1.5rem;
	border-radius: var(--radius-lg);
	background: rgb(255 255 255 / 6%);
	transition: transform var(--t), background var(--t);
}

.step:hover {
	transform: translateY(-8px);
	background: rgb(255 255 255 / 10%);
}

/* Ring-shadowed circle, straight from the reference process band. */
.step__num {
	position: absolute;
	top: -22px;
	left: 1.5rem;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--orange);
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	box-shadow:
		0 0 0 12px rgb(255 122 0 / 10%),
		0 0 0 24px rgb(255 122 0 / 4%);
}

.step h3 {
	font-size: 1.1rem;
	margin-bottom: 0.4rem;
	color: #fff;
}

.step p {
	margin: 0;
	font-size: var(--fs-sm);
	color: rgb(255 255 255 / 72%);
}

.steps {
	padding-top: 1.5rem;
}

/* ---- Area list ---- */
.arealist {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 190px), 1fr));
	gap: 0.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.arealist li {
	margin: 0;
}

.arealist a {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.6rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--body);
	transition: border-color var(--t), color var(--t), transform var(--t);
}

.arealist a:hover {
	border-color: var(--orange);
	color: var(--navy);
	transform: translateX(3px);
}

.arealist .icon {
	width: 14px;
	height: 14px;
	fill: var(--orange);
	flex: none;
}

/* ---- Area photo cards ---- */
.areacards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
	gap: 1.25rem;
}

.areacard {
	display: block;
	padding: 8px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 1px 10px rgb(0 0 0 / 12%);
	color: var(--ink);
	transition: transform var(--t), box-shadow var(--t);
}

.areacard:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 26px rgb(0 0 0 / 16%);
	color: var(--navy);
}

.areacard__media {
	position: relative;
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.areacard__media img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.5s var(--ease);
}

.areacard:hover .areacard__media img {
	transform: scale(1.06);
}

/*
 * Map badge, like the branch cards on the reference layout.
 * Selector has to out-rank `.areacard__media img` above, which would
 * otherwise stretch it to fill the card.
 */
.areacard__media img.areacard__map {
	position: absolute;
	right: 8px;
	bottom: 8px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	object-fit: contain;
	box-shadow: 0 2px 8px rgb(0 0 0 / 22%);
	transition: transform var(--t);
}

.areacard:hover .areacard__media img.areacard__map {
	transform: scale(1.08);
}

.areacard__name {
	display: block;
	padding: 0.65rem 0.5rem 0.35rem;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

/* ---- Locality tiles (no photo, by design) ---- */
.areatiles {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
	gap: 0.85rem;
}

.areatile {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1rem;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	color: var(--ink);
	transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.areatile:hover {
	border-color: transparent;
	box-shadow: 0 8px 22px rgb(11 61 145 / 14%);
	transform: translateY(-3px);
	color: var(--navy);
}

.areatile__map {
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 50%;
}

.areatile__text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
	min-width: 0;
}

.areatile__text strong {
	font-size: 0.9375rem;
	font-weight: 700;
	color: inherit;
}

.areatile__text em {
	font-size: var(--fs-xs);
	font-style: normal;
	color: var(--muted);
}

/* ---- Note under the city network ---- */
.netnote {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1rem;
	margin-top: 2rem;
	padding: 1.15rem 1.5rem;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--light);
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--ink);
	text-align: center;
}

.netnote .icon {
	width: 20px;
	height: 20px;
	fill: var(--orange);
	flex: none;
}

/* ---- Zone chips ---- */
.zonechips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin-top: 2rem;
}

.zonechip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 1.1rem;
	border: 1.5px solid var(--line);
	border-radius: 8px;
	background: #fff;
	font-size: var(--fs-sm);
	font-weight: 700;
	color: var(--navy);
	transition: background var(--t), border-color var(--t), color var(--t);
}

.zonechip span {
	display: grid;
	place-items: center;
	min-width: 24px;
	height: 20px;
	padding-inline: 0.35rem;
	border-radius: 999px;
	background: var(--orange-100);
	color: var(--orange-600);
	font-size: var(--fs-xs);
}

.zonechip:hover {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff;
}

.zonechip:hover span {
	background: rgb(255 255 255 / 18%);
	color: #fff;
}

/* ---- Zone blocks ---- */
.zoneblock {
	margin-bottom: 2.25rem;
}

.zoneblock:last-child {
	margin-bottom: 0;
}

.zoneblock__title {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.9rem;
	padding-bottom: 0.6rem;
	border-bottom: 2px solid var(--line);
	font-size: 1.1rem;
}

.zoneblock__title a {
	color: var(--navy);
}

.zoneblock__count {
	display: grid;
	place-items: center;
	min-width: 26px;
	height: 22px;
	padding-inline: 0.4rem;
	border-radius: var(--radius-pill);
	background: var(--orange-100);
	color: var(--orange-600);
	font-size: var(--fs-xs);
	font-weight: 700;
}

/* ---- Route cards ---- */
.routelist {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
	gap: 0.85rem;
}

.routecard {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1rem 1.15rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.routecard:hover {
	border-color: transparent;
	box-shadow: var(--shadow);
	transform: translateY(-3px);
}

.routecard__path {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9375rem;
	color: var(--ink);
}

.routecard__path .icon {
	width: 16px;
	height: 16px;
	fill: var(--orange);
	flex: none;
}

.routecard__meta {
	display: flex;
	gap: 0.85rem;
	font-size: var(--fs-xs);
	color: var(--muted);
}

/* ---- City page: the link across to its route page ---- */
.section--tight {
	padding-block: 1.75rem 0;
}

.pairlink {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border: 1px solid var(--line);
	border-left: 4px solid var(--orange);
	border-radius: var(--radius-lg);
	background: var(--tint, #f6f8fc);
	transition: border-color var(--t), box-shadow var(--t);
}

.pairlink:hover {
	border-color: var(--line);
	border-left-color: var(--orange);
	box-shadow: var(--shadow);
}

.pairlink__icon {
	display: grid;
	place-items: center;
	flex: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--navy);
}

.pairlink__icon .icon {
	width: 20px;
	height: 20px;
	fill: #fff;
}

.pairlink__copy {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
	flex: 1;
}

.pairlink__copy strong {
	font-size: 0.9375rem;
	color: var(--ink);
}

.pairlink__copy span {
	font-size: var(--fs-xs);
	color: var(--muted);
}

.pairlink > .icon {
	flex: none;
	width: 18px;
	height: 18px;
	fill: var(--orange);
}

@media (max-width: 40em) {
	.pairlink > .icon {
		display: none;
	}
}

/* ---- City page: delivery coverage chips ---- */
.chiplist {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.chiplist__item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 0.9rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	font-size: var(--fs-sm);
	color: var(--ink);
}

.chiplist__item .icon {
	width: 14px;
	height: 14px;
	fill: var(--orange);
	flex: none;
}

.chiplist__note {
	margin-top: 1rem;
	font-size: var(--fs-sm);
	color: var(--muted);
}

/* ---- Hub page: gap between the cities half and the localities half ---- */
.hubsplit {
	margin-top: 3.5rem;
}

/* ---- Review summary line ---- */
.reviewsum {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 0.75rem;
	font-size: var(--fs-sm);
	color: var(--muted);
}

.reviewsum strong {
	font-size: 1.1rem;
	color: var(--ink);
}

/* ---- Review card (home slider + reviews page) ---- */
.reviewcard {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	height: 100%;
	margin: 0;
	padding: 1.6rem 1.5rem 1.4rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
}

.reviewcard__quote {
	position: absolute;
	top: 1.2rem;
	right: 1.3rem;
	opacity: 0.12;
}

.reviewcard__quote .icon {
	width: 42px;
	height: 42px;
	fill: var(--navy);
}

.reviewcard blockquote {
	margin: 0;
	flex: 1;
	font-size: var(--fs-sm);
	line-height: 1.7;
	color: var(--body);
}

.reviewcard__by {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding-top: 0.9rem;
	border-top: 1px solid var(--line);
}

.reviewcard__pic,
.reviewcard__initial {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	flex: none;
}

.reviewcard__initial {
	display: grid;
	place-items: center;
	background: var(--navy-100);
	color: var(--navy);
	font-weight: 700;
	font-size: 1.1rem;
}

.reviewcard__by strong {
	display: block;
	font-size: 0.9375rem;
	line-height: 1.3;
}

.reviewcard__by em {
	font-size: var(--fs-xs);
	font-style: normal;
	color: var(--muted);
}

/* ---- Quote modal ---- */
.quotemodal {
	position: fixed;
	inset: 0;
	z-index: 1300;
	display: grid;
	place-items: center;
	padding: 1rem;
	background: rgb(6 31 75 / 72%);
	opacity: 0;
	transition: opacity 0.25s var(--ease);
	overflow-y: auto;
}

.quotemodal.is-open {
	opacity: 1;
}

.quotemodal[hidden] {
	display: none;
}

.quotemodal__panel {
	position: relative;
	width: min(100%, 460px);
	margin-block: auto;
	transform: translateY(14px);
	transition: transform 0.25s var(--ease);
}

.quotemodal.is-open .quotemodal__panel {
	transform: none;
}

.quotemodal__close {
	position: absolute;
	top: -14px;
	right: -8px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	cursor: pointer;
	box-shadow: var(--shadow);
	transition: background var(--t), transform var(--t);
}

.quotemodal__close:hover {
	background: var(--orange);
	transform: rotate(90deg);
}

.quotemodal__close .icon {
	width: 18px;
	height: 18px;
	fill: currentcolor;
}

/* --------------------------------------------------------------------------
   14. Utilities
   -------------------------------------------------------------------------- */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 1rem;
	z-index: 2000;
	padding: 0.7rem 1.2rem;
	background: var(--navy);
	color: #fff;
	border-radius: 0 0 var(--radius) var(--radius);
	font-weight: 700;
}

.skip-link:focus {
	top: 0;
	color: #fff;
}

.text-center {
	text-align: center;
}
.text-navy {
	color: var(--navy);
}
.text-orange {
	color: var(--orange);
}
.text-green {
	color: var(--green-600);
}
.text-muted {
	color: var(--muted);
}
.mb-0 {
	margin-bottom: 0;
}
.mt-2 {
	margin-top: 0.75rem;
}
.mt-3 {
	margin-top: 1.25rem;
}
.mt-4 {
	margin-top: 2rem;
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.btn-row--center {
	justify-content: center;
}

.hide-desktop {
	display: none;
}

@media (max-width: 991px) {
	.hide-mobile {
		display: none !important;
	}
	.hide-desktop {
		display: initial;
	}
}
