/* ==========================================================================
   DOST GO — Main Stylesheet
   Lightweight, no framework, mobile-first.
   ========================================================================== */

:root {
	/* DOST GO brand palette — "Lochinvar" (client-supplied) */
	--dostgo-50:  #F1FCFA;
	--dostgo-100: #D1F6F0;
	--dostgo-200: #A2EDE1;
	--dostgo-300: #6CDCCF;
	--dostgo-400: #3EC3B7;
	--dostgo-500: #25A79E;
	--dostgo-600: #1D928C;

	--dostgo-primary: var(--dostgo-600);   /* Main brand teal */
	--dostgo-primary-hover: var(--dostgo-500);
	--dostgo-accent: var(--dostgo-400);
	--dostgo-black: #000000;
	--dostgo-dark: #101318;
	--dostgo-light: var(--dostgo-50);
	--dostgo-border: #e2e4ea;
	--dostgo-radius: 10px;

	/* Typography: Jura for headings, Inter for everything else */
	/*--dostgo-font-heading: 'Jura', sans-serif;*/
	/*--dostgo-font-body: 'Inter', sans-serif;*/

	
	--dostgo-font-heading: 'Inter', sans-serif;
	--dostgo-font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--dostgo-font-body);
	color: var(--dostgo-black);
	background: #fff;
	line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.dostgo-logo,
.dostgo-btn {
	font-family: var(--dostgo-font-heading);
	color: var(--dostgo-black);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--dostgo-primary); text-decoration: none; }
a:hover { color: var(--dostgo-primary-hover); }

.dostgo-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ---------- Buttons ---------- */
.dostgo-btn {
	display: inline-block;
	background: var(--dostgo-primary);
	color: #fff;
	padding: 12px 24px;
	border-radius: var(--dostgo-radius);
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: background .2s ease;
}
.dostgo-btn:hover { background: var(--dostgo-primary-hover); color: #fff; }
.dostgo-btn--lg { padding: 16px 32px; font-size: 1.1rem; }
.dostgo-btn--block { width: 100%; text-align: center; }
.dostgo-center { text-align: center; margin-top: 30px; }

/* ---------- Header ---------- */
.dostgo-logo img {
    width: 163px;
}
.dostgo-header { border-bottom: 1px solid var(--dostgo-border); background: #fff; position: sticky; top: 0; z-index: 100; }
.dostgo-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 20px; }
.dostgo-logo a { font-size: 1.4rem; font-weight: 700; color: var(--dostgo-black); }
.dostgo-logo__fallback img { height: 42px; width: auto; }

/* Nav + CTA grouped together, pushed to the far right on desktop */
.dostgo-nav-wrapper { display: flex; align-items: center; gap: 32px; }
.dostgo-nav__menu { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; font-family: var(--dostgo-font-body); }
.dostgo-nav__menu a { color: var(--dostgo-black); font-weight: 500; white-space: nowrap; }
.dostgo-nav__menu a:hover { color: var(--dostgo-primary); }

/* Header CTA button uses Inter, not the heading font */
.dostgo-btn--header { font-family: var(--dostgo-font-body); white-space: nowrap; }

/* Hamburger toggle — hidden on desktop */
.dostgo-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 34px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 210;
}
.dostgo-menu-toggle__bar {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--dostgo-black);
	border-radius: 2px;
	transition: transform .25s ease, opacity .25s ease;
}
/* Hamburger -> X animation when panel is open */
.dostgo-menu-toggle.is-active .dostgo-menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dostgo-menu-toggle.is-active .dostgo-menu-toggle__bar:nth-child(2) { opacity: 0; }
.dostgo-menu-toggle.is-active .dostgo-menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop behind the mobile slide-in panel */
.dostgo-nav-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.45);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
	z-index: 190;
}
.dostgo-nav-backdrop.is-active { opacity: 1; visibility: visible; }

@media (max-width: 768px) {
	.dostgo-menu-toggle { display: flex; }
	.dostgo-nav-backdrop { display: block; }

	/* Slide-in panel: 50% viewport width, off-canvas from the right */
	.dostgo-nav-wrapper {
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		width: 50%;
		min-width: 260px;
		background: #fff;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 28px;
		padding: 90px 24px 24px;
		box-shadow: -8px 0 24px rgba(0,0,0,.12);
		transform: translateX(100%);
		transition: transform .35s ease;
		z-index: 200;
	}
	.dostgo-nav-wrapper.is-active { transform: translateX(0); }

	.dostgo-nav__menu { flex-direction: column; gap: 18px; width: 100%; }
	.dostgo-btn--header { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
	.dostgo-nav-wrapper { width: 75%; } /* keep panel usable on very small phones */
}

/* ---------- Hero ---------- */
.dostgo-hero { background: linear-gradient(135deg, var(--dostgo-600), var(--dostgo-black)); color: #fff; padding: 60px 0; }
.dostgo-hero h1 { color: #fff; }
.dostgo-hero__inner { display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
.dostgo-hero__text { flex: 1 1 380px; }
.dostgo-hero__text h1 { font-size: 2.4rem; margin-bottom: 16px; }
.dostgo-hero__form { flex: 1 1 380px; background: #fff; border-radius: var(--dostgo-radius); padding: 24px; color: var(--dostgo-dark); }

/* ---------- Booking Form ---------- */
.dostgo-booking-form .dostgo-form-row { margin-bottom: 14px; }
.dostgo-booking-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
.dostgo-booking-form input,
.dostgo-booking-form select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--dostgo-border);
	border-radius: 6px;
	font-size: 1rem;
}
.dostgo-form-row--split { display: flex; gap: 12px; }
.dostgo-form-row--split > div { flex: 1; }
.dostgo-booking-response { margin-top: 14px; padding: 10px 14px; border-radius: 6px; display: none; }
.dostgo-booking-response.success { display: block; background: #e6f7ec; color: #106a33; }
.dostgo-booking-response.error { display: block; background: #fdeaea; color: #9d1c1c; }

/* ---------- Fleet Grid / Cards ---------- */
.dostgo-fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin: 30px 0; }
.dostgo-fleet-card { border: 1px solid var(--dostgo-border); border-radius: var(--dostgo-radius); overflow: hidden; background: #fff; transition: box-shadow .2s ease; }
.dostgo-fleet-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.dostgo-fleet-card__thumb { position: relative; background: var(--dostgo-light); min-height: 180px; display: flex; align-items: center; justify-content: center; }
.dostgo-fleet-card__placeholder { font-size: 3rem; }
.dostgo-fleet-card__body { padding: 16px; }
.dostgo-fleet-card__meta { list-style: none; padding: 0; margin: 10px 0; font-size: .92rem; }
.dostgo-fleet-card__meta li { margin-bottom: 4px; }

.dostgo-badge { position: absolute; top: 10px; right: 10px; padding: 4px 10px; border-radius: 20px; font-size: .75rem; font-weight: 700; color: #fff; background: #999; font-family: var(--dostgo-font-body); }
.dostgo-badge--available { background: var(--dostgo-500); }
.dostgo-badge--booked { background: #d9822b; }
.dostgo-badge--maintenance { background: #b0392f; }

/* ---------- Single Vehicle ---------- */
.dostgo-single-fleet { display: flex; flex-wrap: wrap; gap: 40px; padding: 40px 20px; }
.dostgo-single-fleet__media,
.dostgo-single-fleet__details { flex: 1 1 420px; }
.dostgo-roi-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.dostgo-roi-table th, .dostgo-roi-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--dostgo-border); }
.dostgo-roi-table th { color: #555; font-weight: 600; width: 55%; }

/* ---------- Footer (dark, professional) ---------- */
.dostgo-footer {
	position: relative;
	background: var(--dostgo-dark);
	color: rgba(255, 255, 255, 0.7);
	margin-top: 60px;
	overflow: hidden;
}

.dostgo-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--dostgo-300), var(--dostgo-600), var(--dostgo-300));
}

/* soft brand-color glow, purely decorative */
.dostgo-footer::after {
	content: '';
	position: absolute;
	top: -180px;
	right: -120px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--dostgo-600), transparent 70%);
	opacity: .18;
	filter: blur(70px);
	pointer-events: none;
}

.dostgo-footer .dostgo-container { position: relative; z-index: 1; }

/* Brand row: logo/tagline + WhatsApp CTA */
.dostgo-footer-brand-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 18px;
	padding: 34px 0 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dostgo-footer-brand-row__text {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.dostgo-footer-brand-row__logo {
	display: block;
	height: 38px;
	width: auto;
}

.dostgo-footer-brand-row__tagline {
	font-family: var(--dostgo-font-body);
	font-size: .9rem;
	color: rgba(255, 255, 255, 0.5);
	padding-left: 16px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.dostgo-footer-brand-row__cta {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 24px;
	border-radius: 30px;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
	color: #fff;
	font-family: var(--dostgo-font-body);
	font-weight: 700;
	font-size: .9rem;
	box-shadow: 0 10px 24px rgba(29, 146, 140, 0.28);
	transition: transform .2s ease, box-shadow .2s ease;
}

.dostgo-footer-brand-row__cta:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(29, 146, 140, 0.38);
}

/* Contact cards: Investor / Corporate / Supplier */
.dostgo-footer-contact-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 32px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dostgo-footer-contact-strip__col {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.dostgo-footer-contact-strip__col:hover {
	border-color: var(--dostgo-500);
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-3px);
}

.dostgo-footer-contact-strip__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dostgo-footer-contact-strip__col h5 {
	font-family: var(--dostgo-font-body);
	color: #fff;
	font-size: .98rem;
	font-weight: 700;
	margin: 0 0 8px;
}

.dostgo-footer-contact-strip__col a {
	display: block;
	font-family: var(--dostgo-font-body);
	color: rgba(255, 255, 255, 0.6);
	font-size: .86rem;
	font-weight: 500;
	margin-bottom: 4px;
}

.dostgo-footer-contact-strip__col a:hover { color: var(--dostgo-300); }

/* Main footer grid: About column + 3 menu columns */
.dostgo-footer-main {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	padding: 44px 0;
}

.dostgo-footer-main__about h5,
.dostgo-footer-main__col h5 {
	font-family: var(--dostgo-font-body);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 18px;
	position: relative;
	padding-bottom: 12px;
}

.dostgo-footer-main__about h5::after,
.dostgo-footer-main__col h5::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 28px;
	height: 2px;
	background: linear-gradient(90deg, var(--dostgo-300), var(--dostgo-600));
}

.dostgo-footer-main__about p {
	font-family: var(--dostgo-font-body);
	color: rgba(255, 255, 255, 0.55);
	font-size: .92rem;
	line-height: 1.6;
	margin: 0 0 22px;
	max-width: 40ch;
}

.dostgo-social-icons { display: flex; gap: 10px; }
.dostgo-social-icons__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.75);
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.dostgo-social-icons__link:hover {
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
	color: #fff;
	border-color: transparent;
	transform: translateY(-3px);
}

.dostgo-footer-main__menu { list-style: none; margin: 0; padding: 0; font-family: var(--dostgo-font-body); }
.dostgo-footer-main__menu li { margin-bottom: 13px; }
.dostgo-footer-main__menu a {
	color: rgba(255, 255, 255, 0.55);
	font-size: .92rem;
	transition: color .2s ease, padding-left .2s ease;
}
.dostgo-footer-main__menu a:hover { color: var(--dostgo-300); padding-left: 4px; }

/* Bottom legal bar */
.dostgo-footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 20px 0; }
.dostgo-footer-bottom__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.dostgo-footer-bottom__copy { font-family: var(--dostgo-font-body); color: rgba(255, 255, 255, 0.45); font-size: .84rem; }
.dostgo-footer-bottom__right { display: flex; align-items: center; gap: 20px; }
.dostgo-footer-bottom__legal { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; font-family: var(--dostgo-font-body); font-size: .84rem; }
.dostgo-footer-bottom__legal a { color: rgba(255, 255, 255, 0.45); }
.dostgo-footer-bottom__legal a:hover { color: var(--dostgo-300); }

.dostgo-scroll-top {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
	color: #fff;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(29, 146, 140, 0.3);
	transition: transform .2s ease, box-shadow .2s ease;
}
.dostgo-scroll-top:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(29, 146, 140, 0.42); }

@media (max-width: 900px) {
	.dostgo-footer-contact-strip { grid-template-columns: 1fr 1fr; }
	.dostgo-footer-contact-strip__col:last-child { grid-column: 1 / -1; }
	.dostgo-footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
	.dostgo-footer-main__about { grid-column: 1 / -1; }
}

/* Mobile: 2-column layout for the footer menus instead of stacking to 1 */
@media (max-width: 560px) {
	.dostgo-footer-brand-row { flex-direction: column; align-items: flex-start; padding: 28px 0 24px; }
	.dostgo-footer-brand-row__text { flex-direction: column; align-items: flex-start; gap: 10px; }
	.dostgo-footer-brand-row__tagline { padding-left: 0; border-left: none; }
	.dostgo-footer-brand-row__cta { width: 100%; justify-content: center; }

	.dostgo-footer-contact-strip { grid-template-columns: 1fr 1fr; gap: 14px; padding: 26px 0; }
	.dostgo-footer-contact-strip__col { flex-direction: column; padding: 16px; }
	.dostgo-footer-contact-strip__col:last-child { grid-column: auto; }

	.dostgo-footer-main { grid-template-columns: 1fr 1fr; gap: 28px 20px; padding: 34px 0; }
	.dostgo-footer-main__about { grid-column: 1 / -1; }

	.dostgo-footer-bottom__inner { flex-direction: column; align-items: flex-start; }
}



/* ---------- Content ---------- */
.dostgo-content { padding: 40px 20px; }

@media (max-width: 768px) {
	.dostgo-hero__text h1 { font-size: 1.8rem; }
}

/* ---------- Hero Video Section ---------- */
.dostgo-hero-video {
	position: relative;
	width: 100%;
	min-height: 520px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--dostgo-dark);
}

.dostgo-hero-video__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.dostgo-hero-video__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.75) 0%,
		rgba(0, 0, 0, 0.35) 45%,
		rgba(0, 0, 0, 0) 80%
	);
}

.dostgo-hero-video__inner {
	position: relative;
	z-index: 3;
	width: 100%;
	padding-bottom: 70px;
	text-align: center;
}

.dostgo-hero-video__title {
	font-family: var(--dostgo-font-heading);
	color: #fff;
	font-size: 3.2rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 0 0 0px;
}

.dostgo-hero-video__subtitle {
	font-family: var(--dostgo-font-heading);
	color: #fff;
	font-size: 2.2rem;
	font-weight: 500;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.dostgo-hero-video__highlight {
	/*color: var(--dostgo-accent);*/
	color: #fff;
}

@media (max-width: 768px) {
	.dostgo-hero-video { min-height: 320px; }
	.dostgo-hero-video__title { font-size: 2rem; }
	.dostgo-hero-video__subtitle { font-size: 1.1rem; }
}

/* ---------- Our Services Section ---------- */
.dostgo-services {
	padding: 45px 0;
}
 
.dostgo-services__heading {
	text-align: center;
	margin-bottom: 50px;
}
 
.dostgo-services__heading h2 {
	font-family: var(--dostgo-font-heading);
	font-size: 2.4rem;
	margin: 0;
}
 
.dostgo-services__swash {
	width: 200px;
	height: 34px;
	margin-top: 6px;
}
 
.dostgo-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
 
.dostgo-service-card {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: 16px;
	overflow: hidden;
	isolation: isolate;
	box-shadow: 0 4px 18px rgba(16, 19, 24, 0.1);
	transition: box-shadow .35s ease, transform .35s ease;
}
 
.dostgo-service-card:hover {
	box-shadow: 0 20px 42px rgba(16, 19, 24, 0.22);
	transform: translateY(-6px);
}
 
.dostgo-service-card__thumb {
	position: absolute;
	inset: 0;
	margin: 0;
	border-radius: 0;
	background: var(--dostgo-light);
}
 
.dostgo-service-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s ease;
}
 
.dostgo-service-card:hover .dostgo-service-card__thumb img {
	transform: scale(1.09);
}
 
/* dark gradient scrim so the title/CTA stay readable over any photo */
.dostgo-service-card::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to top,
		rgba(9, 12, 16, 0.92) 0%,
		rgba(9, 12, 16, 0.55) 32%,
		rgba(9, 12, 16, 0.05) 62%,
		rgba(9, 12, 16, 0) 100%
	);
	transition: background .35s ease;
}
 
.dostgo-service-card:hover::before {
	background: linear-gradient(
		to top,
		rgba(9, 12, 16, 0.96) 0%,
		rgba(9, 12, 16, 0.6) 38%,
		rgba(9, 12, 16, 0.08) 66%,
		rgba(9, 12, 16, 0) 100%
	);
}
 
/* thin accent bar that grows in on hover — small premium detail */
.dostgo-service-card::after {
	content: '';
	position: absolute;
	left: 24px;
	bottom: 72px;
	z-index: 2;
	width: 30px;
	height: 3px;
	border-radius: 2px;
	background: var(--dostgo-accent);
	transition: width .35s ease;
}
 
.dostgo-service-card:hover::after {
	width: 46px;
}
 
.dostgo-service-card__title {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 78px;
	z-index: 2;
	font-family: var(--dostgo-font-body);
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
	margin: 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
 
.dostgo-service-card .dostgo-btn--sm {
	position: absolute;
	left: 24px;
	bottom: 22px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	padding: 0;
	border-radius: 0;
	color: #fff;
	font-size: .85rem;
	font-family: var(--dostgo-font-body);
	font-weight: 500;
	letter-spacing: .03em;
	text-transform: uppercase;
	transition: color .2s ease, gap .25s ease;
}
 
.dostgo-service-card .dostgo-btn--sm::after {
	content: '';
	width: 16px;
	height: 10px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
	transition: transform .25s ease;
}
 
.dostgo-service-card .dostgo-btn--sm:hover {
	background: none;
	color: var(--dostgo-accent);
	gap: 10px;
}
 
.dostgo-service-card .dostgo-btn--sm:hover::after {
	transform: translateX(3px);
}
 
.dostgo-btn--sm {
	display: inline-block;
	padding: 8px 22px;
	font-size: .85rem;
	border-radius: 30px;
	font-weight: 600;
}
 
@media (max-width: 992px) {
	.dostgo-services__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
 
@media (max-width: 576px) {
	.dostgo-services { padding: 44px 0; }
	.dostgo-services__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
	.dostgo-services__heading { margin-bottom: 34px; }
	.dostgo-services__heading h2 { font-size: 1.8rem; }
	.dostgo-service-card { aspect-ratio: 3 / 4; border-radius: 12px; }
	.dostgo-service-card__title { left: 14px; right: 14px; bottom: 56px; font-size: .92rem; }
	.dostgo-service-card::after { left: 14px; bottom: 46px; width: 22px; }
	.dostgo-service-card .dostgo-btn--sm { left: 14px; bottom: 14px; font-size: .76rem; }
}
 
@media (max-width: 380px) {
	.dostgo-services__grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ---------- Our Fleets Section ---------- */
.dostgo-fleets {
	padding: 45px 0;
	background: var(--dostgo-light);
}

.dostgo-fleets__tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 46px;
}

.dostgo-fleets__tab {
	font-family: var(--dostgo-font-body);
	font-size: .88rem;
	font-weight: 600;
	color: #4b5563;
	background: #fff;
	border: 1px solid var(--dostgo-border);
	border-radius: 30px;
	padding: 10px 24px;
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dostgo-fleets__tab:hover {
	border-color: var(--dostgo-400);
	color: var(--dostgo-600);
	transform: translateY(-1px);
}

.dostgo-fleets__tab.is-active {
	color: #fff;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
	border-color: transparent;
	box-shadow: 0 10px 22px rgba(29, 146, 140, 0.32);
}

.dostgo-fleets__carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
}

.dostgo-fleets__track {
	display: flex;
	gap: 26px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	padding: 10px 6px 20px;
}

.dostgo-fleets__track::-webkit-scrollbar { display: none; }

.dostgo-fleet-slide {
	position: relative;
	flex: 0 0 300px;
	background: #fff;
	border-radius: 18px;
	padding: 20px;
	border: 1px solid var(--dostgo-border);
	border-color: var(--dostgo-200);
	box-shadow: 0 4px 16px rgba(16, 19, 24, 0.06);
	overflow: hidden;
	transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
	scroll-snap-align: start;
}

/* thin gradient accent bar across the top of every card */
.dostgo-fleet-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 18px 18px 0 0;
	background: linear-gradient(90deg, var(--dostgo-300), var(--dostgo-600));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s ease;
	z-index: 2;
}

.dostgo-fleet-slide:hover {
	box-shadow: none;
	transform: translateY(-6px);
	border-color: var(--dostgo-200);
}

.dostgo-fleet-slide:hover::before {
	transform: scaleX(1);
}

.dostgo-fleet-slide[hidden] { display: none; }

.dostgo-fleet-slide__thumb {
	position: relative;
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.dostgo-fleet-slide__thumb img {
	width: 100%;
	height: 150px;
	object-fit: contain;
}

.dostgo-fleet-slide__placeholder { font-size: 2.6rem; }

.dostgo-fleet-slide__arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dostgo-black);
	transition: transform .25s ease, box-shadow .25s ease;
}

.dostgo-fleet-slide__arrow:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(29, 146, 140, 0.35);
	background: var(--dostgo-primary);
	color: #fff;
}

.dostgo-fleet-slide__badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: .64rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.dostgo-fleet-slide__badge::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
}

.dostgo-fleet-slide__badge--available { background: #16a34a; }
.dostgo-fleet-slide__badge--booked { background: #dc2626; }
.dostgo-fleet-slide__badge--maintenance { background: #737373; }

.dostgo-fleet-slide__title {
	font-family: var(--dostgo-font-body);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 14px;
	color: var(--dostgo-black);
	transition: color .25s ease;
}

.dostgo-fleet-slide:hover .dostgo-fleet-slide__title {
	color: var(--dostgo-600);
}

/* spec row — solid primary-colored block, white icons + white text */
.dostgo-fleet-slide__meta {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
	margin: 0;
	padding: 14px 6px;
	background: var(--dostgo-primary);
	border-radius: var(--dostgo-radius);
}

.dostgo-fleet-slide__meta li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	font-size: .68rem;
	font-weight: 600;
	line-height: 1.15;
	text-align: center;
	color: #fff;
}

.dostgo-fleet-slide__meta li:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 2px;
	right: 0;
	width: 1px;
	height: 26px;
	background: rgba(255, 255, 255, 0.4);
}

.dostgo-fleet-slide__meta li svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: #fff;
}

.dostgo-fleets__nav {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	color: #fff;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(29, 146, 140, 0.3);
	transition: transform .2s ease, box-shadow .2s ease;
}

.dostgo-fleets__nav:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 28px rgba(29, 146, 140, 0.42);
}

@media (max-width: 992px) {
	.dostgo-fleet-slide { flex-basis: 280px; }
}

/* mobile: exactly one full-width card visible, swipe/scroll-snap to the next */
@media (max-width: 576px) {
	.dostgo-fleets { padding: 44px 0; }
	.dostgo-fleets__tabs { gap: 8px; margin-bottom: 30px; }
	.dostgo-fleets__tab { padding: 9px 18px; font-size: .8rem; }
	.dostgo-fleets__nav { display: none; }
	.dostgo-fleets__carousel { gap: 0; }
	.dostgo-fleets__track {
		scroll-snap-type: x mandatory;
		gap: 16px;
		margin: 0;
		padding: 8px 2px 18px;
	}
	.dostgo-fleet-slide {
		flex: 0 0 100%;
		max-width: 100%;
		scroll-snap-align: center;
		scroll-snap-stop: always;
	}
}

/* ---------- Trusted Partners Section ---------- */
.dostgo-partners {
	padding: 40px 0;
	overflow: hidden;
}

.dostgo-partners__viewport {
	overflow: hidden;
	width: 100%;
	mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.dostgo-partners__track {
	display: flex;
	align-items: center;
	width: max-content;
	gap: 24px;
	animation: dostgo-partners-scroll 70s linear infinite;
}

.dostgo-partners__viewport:hover .dostgo-partners__track {
	animation-play-state: paused;
}

.dostgo-partners__item {
	flex: 0 0 200px;
	height: 110px;
	background: var(--dostgo-light);
	border-radius: var(--dostgo-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.dostgo-partners__item img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	/*filter: grayscale(100%);*/
	/*opacity: .75;*/
	transition: filter .2s ease, opacity .2s ease;
}

.dostgo-partners__item:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

@keyframes dostgo-partners-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
	.dostgo-partners__item { flex-basis: 150px; height: 90px; padding: 14px; }
	.dostgo-partners__track { animation-duration: 18s; }
}

/* ---------- Testimonials Section (luxury style carousel) ---------- */
.dostgo-testimonials {
	padding: 40px 0;
	background: linear-gradient(180deg, #fff 0%, var(--dostgo-light) 100%);
}

.dostgo-testimonials__carousel {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 10px;
}

.dostgo-testimonials__track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 6px 4px 14px;
	flex: 1;
	min-width: 0;
}

.dostgo-testimonials__track::-webkit-scrollbar { display: none; }

.dostgo-testimonial-card {
	scroll-snap-align: start;
	flex: 0 0 calc(33.333% - 16px);
	background: #fff;
	border: 1px solid var(--dostgo-border);
	border-radius: 18px;
	padding: 34px 30px;
	position: relative;
	display: flex;
	flex-direction: column;
}

.dostgo-testimonial-card__quote {
	display: block;
	margin-bottom: 18px;
}

.dostgo-testimonial-card__stars {
	display: flex;
	gap: 3px;
	margin-bottom: 16px;
}

.dostgo-testimonial-card__text {
	font-family: var(--dostgo-font-body);
	font-size: .96rem;
	font-style: italic;
	line-height: 1.7;
	color: #374151;
	margin: 0 0 26px;
}

.dostgo-testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid var(--dostgo-border);
	margin-top: auto;
}

.dostgo-testimonial-card__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.dostgo-testimonial-card__avatar--initials {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
	color: #fff;
	font-family: var(--dostgo-font-heading);
	font-weight: 700;
	font-size: 1.05rem;
}

.dostgo-testimonial-card__author > span {
	display: flex;
	flex-direction: column;
}

.dostgo-testimonial-card__name {
	font-family: var(--dostgo-font-heading);
	font-weight: 700;
	font-size: .95rem;
	color: var(--dostgo-black);
}

.dostgo-testimonial-card__role {
	font-family: var(--dostgo-font-body);
	font-size: .78rem;
	color: var(--dostgo-primary);
	font-weight: 600;
	margin-top: 2px;
}

.dostgo-testimonials__nav {
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: none;
	color: #fff;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity .2s ease;
}

.dostgo-testimonials__nav:hover { opacity: .88; }

@media (max-width: 992px) {
	.dostgo-testimonial-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 640px) {
	.dostgo-testimonials { padding: 46px 0 56px; }
	.dostgo-testimonials__carousel { gap: 0; }
	.dostgo-testimonials__nav { display: none; }
	.dostgo-testimonials__track { padding: 6px 0 14px; }
	.dostgo-testimonial-card {
		flex: 0 0 100%;
		width: 100%;
		padding: 26px 22px;
	}
	.dostgo-testimonial-card__text { min-height: 0; font-size: .92rem; }
}
 
/* ---------- Investments Section (Be An Investor page) ---------- */
.dostgo-investments {
	padding: 50px 0;
}

.dostgo-investments__heading {
	text-align: center;
	margin-bottom: 50px;
}

.dostgo-investments__eyebrow {
	/*font-family: var(--dostgo-font-heading);*/
	/*color: #9CA3AF;*/
	/*font-size: 1.05rem;*/
	/*margin: 0 0 4px;*/
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-family: var(--dostgo-font-heading);
	color: var(--dostgo-primary);
	margin: 0 0 4px;
}

.dostgo-investments__heading h2 {
	font-family: var(--dostgo-font-heading);
	font-size: 2.4rem;
	margin: 0;
}

.dostgo-investments__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.dostgo-investment-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: var(--dostgo-light);
	border-radius: var(--dostgo-radius);
	padding: 18px 20px;
	text-decoration: none;
	color: var(--dostgo-black);
	transition: transform .2s ease, box-shadow .2s ease;
}

.dostgo-investment-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.dostgo-investment-card__left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.dostgo-investment-card__icon {
	width: 44px;
	height: 44px;
	object-fit: contain;
	flex-shrink: 0;
}

.dostgo-investment-card__title {
	font-family: var(--dostgo-font-body);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
}

.dostgo-investment-card__arrow {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
}

@media (max-width: 768px) {
	.dostgo-investments__grid { grid-template-columns: 1fr; }
	.dostgo-investment-card__title { font-size: 1rem; }
	.dostgo-investments__heading h2 { font-size: 1.8rem; }
} 

/* ---------- Investor Fleet Grid (Limousine page) ---------- */
.dostgo-investor-fleets {
	padding: 70px 0;
}

.dostgo-investor-fleets__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 36px;
}

.dostgo-investor-fleets__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.dostgo-investor-fleets__tab {
	font-family: var(--dostgo-font-heading);
	font-size: .95rem;
	font-weight: 600;
	color: var(--dostgo-black);
	background: var(--dostgo-light);
	border: none;
	border-radius: 30px;
	padding: 10px 24px;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}

.dostgo-investor-fleets__tab.is-active {
	color: #fff;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
}

.dostgo-investor-fleets__search {
	position: relative;
	display: flex;
	align-items: center;
}

.dostgo-investor-fleets__search input {
	font-family: var(--dostgo-font-body);
	font-size: .9rem;
	border: 1px solid #e2e2e2;
	background: #fff;
	border-radius: 30px;
	padding: 12px 44px 12px 18px;
	width: 220px;
	max-width: 100%;
}

.dostgo-investor-fleets__search input:focus {
	outline: none;
	border-color: var(--dostgo-primary);
}

.dostgo-investor-fleets__search svg {
	position: absolute;
	right: 16px;
	color: #9CA3AF;
	pointer-events: none;
}

.dostgo-investor-fleets__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.dostgo-investor-card {
	background: #fff;
	border: 1px solid var(--dostgo-border);
	border-radius: var(--dostgo-radius);
	padding: 18px;
	box-shadow: 0 2px 14px rgba(16, 19, 24, 0.05);
	transition: box-shadow .2s ease, transform .2s ease;
	display: flex;
	flex-direction: column;
}

.dostgo-investor-card:hover {
	box-shadow: 0 10px 28px rgba(16, 19, 24, 0.1);
	transform: translateY(-2px);
}

.dostgo-investor-card[hidden] { display: none; }

.dostgo-investor-card__thumb {
	position: relative;
	min-height: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	background: var(--dostgo-light);
	border-radius: 8px;
	overflow: hidden;
}

.dostgo-investor-card__thumb img {
	width: 100%;
	height: 170px;
	object-fit: contain;
}

.dostgo-investor-card__title {
	font-family: var(--dostgo-font-body);
	font-size: 1.15rem;
	text-align: center;
	margin: 0 0 14px;
}

.dostgo-investor-card__price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
	color: #fff;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 12px;
}

.dostgo-investor-card__price-label {
	font-size: .78rem;
	font-weight: 600;
	opacity: .9;
}

.dostgo-investor-card__price-value {
	font-size: 1.05rem;
	font-weight: 700;
}

.dostgo-investor-card__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin: 0 0 16px;
	padding: 14px 0;
	border-top: 1px solid var(--dostgo-border);
	border-bottom: 1px solid var(--dostgo-border);
}

.dostgo-investor-card__stats > div {
	position: relative;
	text-align: center;
	padding: 0 8px;
}

/* thin divider lines between the 3 stats, instead of grey boxes */
.dostgo-investor-card__stats > div:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 90px;
	background: var(--dostgo-border);
}

.dostgo-investor-card__label {
	display: block;
	font-size: .63rem;
	font-weight: 600;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: #8b93a1;
	margin-bottom: 8px;
	line-height: 1.3;
}

.dostgo-investor-card__label em {
	display: block;
	font-style: normal;
	font-size: .58rem;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	opacity: .75;
	margin-top: 1px;
}

.dostgo-investor-card__value {
	display: block;
	font-family: var(--dostgo-font-body);
	font-size: 14px;
	font-weight: 700;
	color: var(--dostgo-black);
	letter-spacing: -.01em;
}

/* middle stat (Profit Per Month) highlighted in brand teal for emphasis */
.dostgo-investor-card__stats > div:nth-child(2) .dostgo-investor-card__value {
	color: var(--dostgo-primary);
}

.dostgo-investor-card__extra {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px dashed var(--dostgo-border);
	border-radius: 8px;
	padding: 9px 14px;
	font-size: .82rem;
	margin-bottom: 12px;
}

.dostgo-investor-card__extra-label {
	color: #6b7280;
	font-weight: 600;
}

.dostgo-investor-card__extra-value {
	font-weight: 700;
	color: var(--dostgo-primary);
}

.dostgo-investor-card__cta {
	display: flex;
	gap: 10px;
	margin-top: auto;
}

.dostgo-investor-card__btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: .82rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	padding: 11px 10px;
	transition: opacity .2s ease;
}

.dostgo-investor-card__btn:hover { opacity: .88; color: #fff; }

.dostgo-investor-card__btn--call {
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
}

.dostgo-investor-card__btn--whatsapp {
	background: #25D366;
}

.dostgo-investor-fleets__empty {
	text-align: center;
	margin-top: 30px;
}

@media (max-width: 992px) {
	.dostgo-investor-fleets__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
	.dostgo-investor-fleets__grid { grid-template-columns: 1fr; }
	.dostgo-investor-fleets__toolbar { flex-direction: column; align-items: stretch; }
	.dostgo-investor-fleets__search input { width: 100%; }
	.dostgo-investor-card__cta { flex-direction: column; }
}

/* ---------- Investment Guide Section (Limousine page) ---------- */
.dostgo-investment-guide {
	padding: 50px 0;
}

.dostgo-investment-guide__image {
	max-width: 1200px;
	margin: 0 auto;
}

.dostgo-investment-guide__image img {
	width: 100%;
	margin-top: -4em;
	height: auto;
	border-radius: var(--dostgo-radius);
	display: block;
}

@media (max-width: 768px) {
	.dostgo-investment-guide { padding: 40px 0; }
	.dostgo-investment-guide__image { max-width: 100%; }
}

/* ---------- About Company / Our Story Section ---------- */
.dostgo-story {
	padding: 50px 0;
}
 
.dostgo-story__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 60px;
	align-items: start;
}
 
.dostgo-story__media {
	position: sticky;
	top: 100px;
}
 
.dostgo-story__img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: var(--dostgo-radius);
	position: relative;
	z-index: 1;
}
 
.dostgo-story__media::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 45%;
	background: linear-gradient(to top, rgba(16, 19, 24, 0.65), rgba(16, 19, 24, 0));
	border-radius: 0 0 var(--dostgo-radius) var(--dostgo-radius);
	z-index: 2;
	pointer-events: none;
}
 
.dostgo-story__placeholder {
	width: 100%;
	aspect-ratio: 3 / 4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
	background: var(--dostgo-light);
	border-radius: var(--dostgo-radius);
	position: relative;
	z-index: 1;
}
 
.dostgo-story__badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 108px;
	height: 108px;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 10px 26px rgba(29, 146, 140, 0.35);
}
 
.dostgo-story__badge-value {
	font-family: var(--dostgo-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
}
 
.dostgo-story__badge-label {
	font-size: .68rem;
	font-weight: 600;
	line-height: 1.3;
	margin-top: 4px;
	opacity: .95;
}
 
.dostgo-story__eyebrow {
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-family: var(--dostgo-font-heading);
	color: var(--dostgo-primary);
	margin: 0 0 4px;
}
 
.dostgo-story__content h2 {
	font-family: var(--dostgo-font-heading);
	font-size: 2.2rem;
	margin: 0 0 6px;
	line-height: 1.15;
}
 
.dostgo-story__content .dostgo-services__swash {
	display: block;
	width: 180px;
	height: 30px;
	margin: 4px 0 20px;
}
 
.dostgo-story__text {
	color: #4b5563;
	line-height: 1.7;
	margin: 0 0 16px;
}
 
.dostgo-story__points {
	list-style: none;
	margin: 8px 0 28px;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 20px;
}
 
.dostgo-story__points li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .92rem;
	font-weight: 500;
	color: var(--dostgo-black);
}
 
.dostgo-story__points li svg {
	flex-shrink: 0;
	color: var(--dostgo-primary);
	background: var(--dostgo-light);
	border-radius: 50%;
	padding: 4px;
	box-sizing: content-box;
}
 
.dostgo-story__stats {
	display: grid;
	grid-template-columns: repeat(3, auto);
	justify-content: start;
	gap: 0;
	padding-top: 20px;
	border-top: 1px solid var(--dostgo-border);
}
 
.dostgo-story__stats > div {
	position: relative;
	padding: 0 28px;
}
 
.dostgo-story__stats > div:first-child {
	padding-left: 0;
}
 
.dostgo-story__stats > div:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 4px;
	right: 0;
	width: 1px;
	height: 36px;
	background: var(--dostgo-border);
}
 
.dostgo-story__stats-value {
	display: block;
	font-family: var(--dostgo-font-heading);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--dostgo-black);
}
 
.dostgo-story__stats-label {
	display: block;
	font-size: .78rem;
	color: #6b7280;
	margin-top: 2px;
}
 
@media (max-width: 900px) {
	.dostgo-story__grid { grid-template-columns: 1fr; gap: 40px; }
	.dostgo-story__media { position: relative; top: auto; }
	.dostgo-story__img,
	.dostgo-story__placeholder { aspect-ratio: 4 / 3; }
	.dostgo-story__badge { width: 92px; height: 92px; right: 10px; bottom: -16px; }
}
 
@media (max-width: 576px) {
	.dostgo-story__content h2 { font-size: 1.8rem; }
	.dostgo-story__points { grid-template-columns: 1fr; }
	.dostgo-story__stats { grid-template-columns: repeat(3, 1fr); gap: 0; }
	.dostgo-story__stats > div { padding: 0 10px; text-align: center; }
	.dostgo-story__stats > div:first-child { padding-left: 10px; }
}


/* ---------- Mission / Vision & Our Promises Section ---------- */

.dostgo-mission-vision {
	padding: 50px 0;
	background: var(--dostgo-light);
}
 
.dostgo-mv-layout {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 56px;
	align-items: center;
	margin-top: 44px;
}
 
/* -- Tabs -- */
.dostgo-mv-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 6px;
	border-bottom: 1px solid var(--dostgo-border);
	margin-bottom: 28px;
}
 
.dostgo-mv-tab {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 12px 18px 14px;
	font-family: var(--dostgo-font-body);
	font-size: .92rem;
	font-weight: 600;
	color: #8b93a1;
	cursor: pointer;
	transition: color .2s ease, border-color .2s ease;
	margin-bottom: -1px;
}
 
.dostgo-mv-tab svg {
	flex-shrink: 0;
	opacity: .75;
	transition: opacity .2s ease;
}
 
.dostgo-mv-tab:hover {
	color: var(--dostgo-black);
}
 
.dostgo-mv-tab.is-active {
	color: var(--dostgo-primary);
	border-bottom-color: var(--dostgo-primary);
}
 
.dostgo-mv-tab.is-active svg {
	opacity: 1;
}
 
/* -- Panels -- */
.dostgo-mv-panels {
	position: relative;
	min-height: 260px;
}
 
.dostgo-mv-panel {
	display: none;
}
 
.dostgo-mv-panel.is-active {
	display: block;
	animation: dostgoMvFade .35s ease;
}
 
@keyframes dostgoMvFade {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}
 
.dostgo-mv-panel__title {
	font-family: var(--dostgo-font-heading);
	font-size: 1.5rem;
	margin: 0 0 6px;
	color: var(--dostgo-black);
}
 
.dostgo-mv-panel__rule {
	display: block;
	width: 46px;
	height: 3px;
	border-radius: 2px;
	background: var(--dostgo-primary);
	margin: 0 0 18px;
}
 
.dostgo-mv-panel p {
	color: #4b5563;
	line-height: 1.75;
	margin: 0 0 14px;
	font-size: .96rem;
}
 
.dostgo-mv-panel p:last-child {
	margin-bottom: 0;
}
 
/* -- Media (right side image) -- */
.dostgo-mv-media {
	border-radius: var(--dostgo-radius);
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(16, 19, 24, 0.1);
}
 
.dostgo-mv-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
}
 
.dostgo-mv-media__placeholder {
	width: 100%;
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
	background: #fff;
}
 
@media (max-width: 992px) {
	.dostgo-mv-layout { grid-template-columns: 1fr; gap: 36px; }
	.dostgo-mv-media { order: -1; max-width: 460px; margin: 0 auto; width: 100%; }
	.dostgo-mv-media img,
	.dostgo-mv-media__placeholder { min-height: 300px; }
}
 
@media (max-width: 640px) {
	.dostgo-mission-vision { padding: 44px 0; }
	.dostgo-mv-layout { margin-top: 32px; }
	.dostgo-mv-tabs { gap: 2px 4px; }
	.dostgo-mv-tab { padding: 10px 12px 12px; font-size: .8rem; gap: 6px; }
	.dostgo-mv-tab svg { width: 16px; height: 16px; }
	.dostgo-mv-panel__title { font-size: 1.3rem; }
}


/* ---------- Why Choose DostGo Section ---------- */
.dostgo-why-us {
	padding: 50px 0;
}
 
.dostgo-why-us__sub {
	max-width: 560px;
	margin: 14px auto 0;
	color: #6b7280;
	font-size: .98rem;
	line-height: 1.6;
}
 
.dostgo-why-us__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 44px;
}
 
.dostgo-why-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--dostgo-border);
	border-left: 3px solid transparent;
	border-radius: var(--dostgo-radius);
	padding: 26px 24px;
	transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
 
.dostgo-why-card:hover {
	box-shadow: 0 12px 28px rgba(16, 19, 24, 0.08);
	transform: translateY(-3px);
	border-left-color: var(--dostgo-primary);
}
 
.dostgo-why-card__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--dostgo-light);
	color: var(--dostgo-primary);
}
 
.dostgo-why-card__title {
	font-family: var(--dostgo-font-body);
	font-size: 1.05rem;
	font-weight: 500;
	margin: 0 0 6px;
	color: var(--dostgo-black);
}
 
.dostgo-why-card__text {
	color: #6b7280;
	font-size: .88rem;
	line-height: 1.6;
	margin: 0;
}
 
@media (max-width: 992px) {
	.dostgo-why-us__grid { grid-template-columns: 1fr 1fr; }
}
 
@media (max-width: 640px) {
	.dostgo-why-us { padding: 44px 0; }
	.dostgo-why-us__grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
	.dostgo-why-card { padding: 22px 20px; }
}


/* ---------- Service Detail Pages (Our Services child pages) ---------- */
.dostgo-service-detail {
	position: relative;
	padding: 64px 0;
	overflow: hidden;
}

.dostgo-service-detail::before {
	content: '';
	position: absolute;
	top: -160px;
	left: -140px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--dostgo-200), transparent 70%);
	opacity: .45;
	filter: blur(70px);
	pointer-events: none;
	z-index: 0;
}

.dostgo-service-detail__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 60px;
	align-items: stretch;
}

/* Image now stretches to match the content column's natural height,
   so short-content pages don't end up with an oversized image. A
   min-height keeps it from ever looking too short/cramped. */
.dostgo-service-detail__media {
	position: relative;
	min-height: 420px;
	border-radius: var(--dostgo-radius);
	overflow: hidden;
	box-shadow: 0 14px 34px rgba(16, 19, 24, 0.12);
}

.dostgo-service-detail__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dostgo-service-detail__badge {
	position: absolute;
	top: 18px;
	left: 18px;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
	color: #fff;
	font-family: var(--dostgo-font-body);
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	padding: 7px 14px;
	border-radius: 20px;
	box-shadow: 0 8px 18px rgba(29, 146, 140, 0.35);
}

.dostgo-service-detail__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.dostgo-service-detail__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .85rem;
	font-weight: 600;
	color: var(--dostgo-black);
	margin-bottom: 18px;
	width: fit-content;
	transition: color .2s ease, gap .2s ease;
}

.dostgo-service-detail__back:hover {
	color: var(--dostgo-primary);
	gap: 10px;
}

/* eyebrow — plain text, no background */
.dostgo-service-detail__eyebrow {
	display: block;
	color: var(--dostgo-primary);
	font-family: var(--dostgo-font-body);
	font-size: .85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	margin: 0 0 10px;
}

.dostgo-service-detail__content h1 {
	font-family: var(--dostgo-font-heading);
	font-size: 2.3rem;
	margin: 0 0 6px;
	line-height: 1.15;
	color: var(--dostgo-black);
}

.dostgo-service-detail__content .dostgo-services__swash {
	display: block;
	width: 180px;
	height: 30px;
	margin: 4px 0 20px;
}

.dostgo-service-detail__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 4px;
	padding-top: 24px;
	border-top: 1px solid var(--dostgo-border);
}

.dostgo-service-detail__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 30px;
	font-weight: 700;
	font-size: .92rem;
	color: #fff;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .25s ease;
}

.dostgo-service-detail__btn:hover {
	color: #fff;
	transform: translateY(-3px);
}

.dostgo-service-detail__btn--call {
	background: linear-gradient(135deg, #2b2f36, var(--dostgo-black));
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.dostgo-service-detail__btn--call:hover {
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.dostgo-service-detail__btn--whatsapp {
	background: #25D366;
	box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

.dostgo-service-detail__btn--whatsapp:hover {
	box-shadow: 0 14px 30px rgba(37, 211, 102, 0.36);
}

@media (max-width: 900px) {
	.dostgo-service-detail__grid { grid-template-columns: 1fr; gap: 36px; }
	.dostgo-service-detail__media { min-height: 0; aspect-ratio: 4 / 3; }
}

@media (max-width: 576px) {
	.dostgo-service-detail { padding: 44px 0; }
	.dostgo-service-detail__content h1 { font-size: 1.8rem; }
	.dostgo-service-detail__cta { flex-direction: column; }
	.dostgo-service-detail__btn { width: 100%; justify-content: center; }
}


/* ---------- Collaborate With Us — Hero Section ---------- */
.dostgo-collaborate-hero {
	position: relative;
	padding: 40px 0;
	overflow: hidden;
}
 
/*.dostgo-collaborate-hero::before {*/
/*	content: '';*/
/*	position: absolute;*/
/*	top: -160px;*/
/*	left: 50%;*/
/*	transform: translateX(-50%);*/
/*	width: 640px;*/
/*	height: 420px;*/
/*	background: radial-gradient(circle, var(--dostgo-200), transparent 70%);*/
/*	opacity: .5;*/
/*	filter: blur(70px);*/
/*	pointer-events: none;*/
/*	z-index: 0;*/
/*}*/
 
.dostgo-collaborate-hero .dostgo-container {
	position: relative;
	z-index: 1;
}
 
.dostgo-collaborate-hero__sub {
	max-width: 560px;
	margin: 14px auto 0;
	color: #6b7280;
	font-size: 1rem;
	line-height: 1.6;
}
 
.dostgo-collaborate-hero__media {
	max-width: 980px;
	margin: 44px auto 0;
	border-radius: var(--dostgo-radius);
	overflow: hidden;
	
}
 
.dostgo-collaborate-hero__media img {
	display: block;
	width: 100%;
	height: auto;
}
 
.dostgo-collaborate-hero__cta {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 40px;
}
 
.dostgo-collaborate-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	border-radius: 30px;
	font-family: var(--dostgo-font-body);
	font-weight: 700;
	font-size: .96rem;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .25s ease, background .2s ease;
}
 
.dostgo-collaborate-hero__btn--primary {
	color: #fff;
	background: linear-gradient(135deg, var(--dostgo-400), var(--dostgo-600));
	box-shadow: 0 10px 24px rgba(29, 146, 140, 0.3);
}
 
.dostgo-collaborate-hero__btn--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(29, 146, 140, 0.4);
	color: #fff;
}
 
.dostgo-collaborate-hero__btn--secondary {
	color: #128C7E;
	background: #fff;
	border: 1.5px solid #25D366;
	box-shadow: 0 6px 16px rgba(37, 211, 102, 0.14);
}
 
.dostgo-collaborate-hero__btn--secondary:hover {
	transform: translateY(-3px);
	background: #25D366;
	color: #fff;
	box-shadow: 0 14px 28px rgba(37, 211, 102, 0.32);
}
 
@media (max-width: 640px) {
	.dostgo-collaborate-hero { padding: 50px 0 56px; }
	.dostgo-collaborate-hero__media { margin-top: 32px; }
	.dostgo-collaborate-hero__cta { margin-top: 30px; gap: 12px; }
	.dostgo-collaborate-hero__btn { flex: 1 1 auto; justify-content: center; padding: 14px 20px; font-size: .9rem; }
}
 
@media (max-width: 420px) {
	.dostgo-collaborate-hero__cta { flex-direction: column; align-items: stretch; }
	.dostgo-collaborate-hero__btn { width: 100%; }
}


/* ---------- Collaborate With Us — Our Network (partners image) ---------- */
.dostgo-collab-partners {
	padding: 50px 0;
}

.dostgo-collab-partners__image {
	max-width: 1000px;
	margin: -40px auto 0;
}

.dostgo-collab-partners__image img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 640px) {
	.dostgo-collab-partners { padding: 50px 0 56px; }
	.dostgo-collab-partners__image { margin-top: 32px; }
}

/* ---------- Collaborate With Us — Benefits Of Collaborating ---------- */
.dostgo-collab-benefits {
	padding: 50px 0;
}

.dostgo-collab-benefits__image {
	max-width: 950px;
	margin: 46px auto 0;
}

.dostgo-collab-benefits__image img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 640px) {
	.dostgo-collab-benefits { padding: 50px 0 56px; }
	.dostgo-collab-benefits__image { margin-top: 32px; }
}
 