@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap");


:root {
	--sky: #00AEEF;
	--sky-dark: #0092cc;
	--sky-light: #e8f7fd;
	--navy: #002D62;
	--navy-dark: #001f44;
	--navy-light: #eef3fc;
	--white: #ffffff;
	--off-white: #f8fafc;
	--grey: #f1f4f8;
	--text-dark: #1a2332;
	--text-body: #2d3748;

	--text-muted: #8a9ab0;
	--border: #e2e8f0;
	--shadow-sm: 0 4px 12px rgba(0, 45, 98, 0.08);
	--shadow-md: 0 10px 30px rgba(0, 45, 98, 0.12);
	--shadow-lg: 0 20px 60px rgba(0, 45, 98, 0.18);
	--shadow-sky: 0 8px 30px rgba(0, 174, 239, 0.35);
	--radius: 14px;
	--radius-pill: 999px;
	--transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-color {
	color: #ffffff !important;
}


.sticky-contact-btn {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	background: var(--sky);
	color: #fff !important;
	padding: 1.5em 0.85em;
	border-radius: 12px 0 0 12px;
	text-decoration: none !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.8em;
	box-shadow: -6px 0 25px rgba(0, 45, 98, 0.22);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none !important;
	cursor: pointer;
}

.sticky-contact-btn:hover {
	background: var(--navy);
	padding-right: 1.25em;
	transform: translateY(-50%) translateX(-4px);
}

.sticky-contact-icon {
	font-size: 1.6em;
	animation: sticky-pulse 2s infinite;
}

@keyframes sticky-pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.15);
	}

	100% {
		transform: scale(1);
	}
}

.sticky-contact-text {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 0.85em;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #fff;
}

@media screen and (max-width: 768px) {
	.sticky-contact-btn {
		padding: 1.2em 0.6em;
	}

	.sticky-contact-text {
		display: none;
	}
}


html {
	scroll-behavior: smooth;
}

body,
input,
select,
textarea,
button {
	font-family: 'Inter', Helvetica, sans-serif !important;
	color: var(--text-body);
}

body {
	background: #000 !important;

	color: #fff !important;
}


body::after {
	content: "";
	position: fixed;
	top: -5%;

	left: -5%;
	width: 110%;
	height: 110%;
	background-image: url('https://images.unsplash.com/photo-1580674684081-7617fbf3d745?q=80&w=1920&auto=format&fit=crop') !important;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	filter: blur(8px) brightness(0.6);

	z-index: -2;
	pointer-events: none;
}


body::before {
	display: none !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', 'Inter', sans-serif !important;
	color: var(--navy) !important;
	letter-spacing: 0.03em !important;
	text-transform: none !important;
}

p {
	color: #1a1a1a;

}


header.major p,
.header.major p,
.quote-section header.major p,
.subpage-section header.major p,
article#main header p {
	color: #ffffff !important;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);

	opacity: 0.95;
	font-family: 'Inter', sans-serif !important;
	font-weight: 500;
	font-size: 1.1em;
	letter-spacing: 0.03em;
	line-height: 1.65;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	text-transform: none !important;
}


header.major,
.header.major,
.stats-header {
	text-align: center !important;
	margin-bottom: 3.5em !important;
}

header.major h2,
.header.major h2,
.stats-header h2 {
	margin-left: auto !important;
	margin-right: auto !important;
	display: inline-block;
	position: relative;
	padding-bottom: 0.5em !important;
}

header.major h2::after,
.header.major h2::after,
.stats-header h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background: var(--sky);
}

header.major p,
.header.major p,
.stats-header p {
	max-width: 700px;
	margin-left: auto !important;
	margin-right: auto !important;
}



@keyframes pulse-sky {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.55);
	}

	50% {
		box-shadow: 0 0 0 14px rgba(0, 174, 239, 0);
	}
}

@keyframes pulse-navy {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(0, 45, 98, 0.45);
	}

	50% {
		box-shadow: 0 0 0 14px rgba(0, 45, 98, 0);
	}
}

@keyframes shimmer {
	from {
		left: -100%;
	}

	to {
		left: 100%;
	}
}

@keyframes floatUp {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes trackingSlide {
	0% {
		width: 0%;
		opacity: 0.6;
	}

	100% {
		width: 100%;
		opacity: 1;
	}
}

@keyframes pinPulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.8);
		opacity: 0.4;
	}
}

@keyframes countUp {
	from {
		opacity: 0;
		transform: scale(0.8);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}


#header {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	height: clamp(4.2em, 8vh, 5.3em);

	z-index: 10005;
	border: none !important;
	box-shadow: none !important;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1.5em;
	overflow: visible !important;
	transition: height 0.3s ease;
}

#header::before,
#header::after {
	display: none !important;
}

#header * {
	position: relative;
	z-index: 1;
}

#logo {
	position: absolute;
	left: 1.5em;
	top: 50%;
	transform: translateY(-50%);
	height: auto;
	line-height: 1;
}

#logo-link {
	border: none !important;
	display: flex;
	align-items: center;
	text-decoration: none;
}

#logo-link img {
	height: clamp(45px, 8vw, 75px);

	width: auto;
	display: block;
	margin-top: 6px;


	transition: height 0.3s ease;
}

.logo-icon {
	color: var(--sky);
	font-size: 1em;
}



#header nav {
	display: none !important;
}


#page-wrapper {
	padding-top: 0 !important;
}



#home {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	min-height: 700px;

	text-align: center;
	overflow: hidden;
	padding: 0 2em;
}


#home::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url('https://images.unsplash.com/photo-1570710891163-6d3b5c47248b?q=80&w=1920&auto=format&fit=crop') !important;
	background-size: cover;
	background-position: center 30%;

	background-repeat: no-repeat;
	background-attachment: fixed;

	transform: translateY(var(--parallax-offset, 0px));
	will-change: transform;
}


#home::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent !important;
	z-index: 1;
}

#home h1,
#home h2,
#home p {
	color: #fff !important;
}

#home .hero-content,
#home .hero-actions {
	z-index: 5 !important;
	position: relative !important;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	background: rgba(255, 255, 255, 0.096);
	border: 2px solid rgba(0, 46, 98, 0.13);
	border-radius: var(--radius-pill);
	padding: 0.4em 1.3em;
	font-size: 0.8em;
	font-weight: 600;
	letter-spacing: 0.08em;
	margin-bottom: 1.5em;
	animation: fadeIn 0.8s ease 0.3s both;
}

.hero-headline {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 2.6em;

	font-weight: 900;
	line-height: 1.15;
	letter-spacing: 0.02em;
	color: #ffffff !important;
	margin-bottom: 0.5em;
	text-transform: none !important;
	animation: fadeInUp 0.8s ease 0.5s both;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.hero-accent {
	color: var(--sky);
}

.hero-subheadline,
.major-subheadline {
	font-size: 1.1em;
	color: rgb(255, 255, 255) !important;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);

	font-family: 'Inter', sans-serif !important;
	letter-spacing: 0.03em;
	font-weight: 500;
	text-transform: none !important;
	margin-bottom: 2em;
	line-height: 1.65;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.hero-actions {
	animation: fadeInUp 0.8s ease 0.9s both;
	display: flex;
	gap: 1em;
	justify-content: center;
	flex-wrap: wrap;
}


.hero-cta-primary {
	background: var(--sky) !important;
	color: var(--white) !important;
	border: none !important;
	box-shadow: none !important;
	animation: pulse-sky 2.5s ease infinite;
	font-weight: 700 !important;
	transition: var(--transition) !important;
}

.hero-cta-primary:hover {
	background: var(--sky-dark) !important;
	animation: none;
	transform: translateY(-2px);
}

.hero-cta-ghost {
	background: transparent !important;
	color: var(--white) !important;
	border: 2px solid var(--white) !important;
	box-shadow: none !important;
	font-weight: 700 !important;
	transition: var(--transition) !important;
}

.hero-cta-ghost:hover {
	background: rgba(255, 255, 255, 0.15) !important;
	border-color: var(--white) !important;
	transform: translateY(-2px);
}

#hero .more {
	position: absolute;
	bottom: 2.2em;
	z-index: 3;
	color: rgba(0, 45, 98, 0.7) !important;
	font-size: 0.68em;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border: none !important;
}

@media screen and (max-width: 736px) {
	.hero-headline {
		font-size: 2em;
	}
}

@media screen and (max-width: 480px) {
	.hero-headline {
		font-size: 1.6em;
	}
}




#services,
#me-powerhouse,
#about,
#why-us,
#stats,
#coverage,
#partners,
#quote,
#faq,
#coverage-section,
#quote-section,
#faq-section,
#me-powerhouse-section,
#logistics-flow {
	background: transparent !important;
	color: var(--navy) !important;
	padding: 6em 0 !important;
	position: relative;
	z-index: 2;
}

#services::before,
#about::before,
#why-us::before,
#stats::before,
#coverage::before,
#partners::before,
#quote::before,
#faq::before,
#coverage-section::before,
#quote-section::before,
#faq-section::before,
#me-powerhouse-section::before,
#logistics-flow::before {
	display: none !important;
}





#services header.major h2::after {
	background: var(--sky);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5em;
	margin-top: 2.5em;
}

.service-card {
	display: flex;
	flex-direction: column;
	background: var(--white) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius);
	padding: 3em 1.8em 2.5em;
	text-align: center;
	transition: var(--transition);
	cursor: default;
	position: relative;
	overflow: visible;
	box-shadow: var(--shadow-sm);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.service-card .button {
	margin-top: auto !important;
	align-self: center;
}


.service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-md);
	border-color: var(--sky) !important;
}


.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card:hover::before {
	transform: scaleX(1);
}


.contact-form-wrap {
	max-width: 900px;
	margin: 0 auto;
}

.contact-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5em;
	margin-top: 2em;
}

.contact-card {
	background: var(--white);
	border: 1px solid var(--border);
	padding: 2em 1.5em;
	border-radius: var(--radius);
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: var(--sky);
}

.contact-card-icon {
	font-size: 2em;
	margin-bottom: 0.5em;
}

.contact-card h3 {
	color: var(--navy) !important;
	font-size: 1.15em !important;
	font-weight: 700 !important;
	margin-bottom: 0.6em !important;
}

.contact-card h5 {
	color: #001a35 !important;

	font-size: 0.95em !important;
	font-weight: 600 !important;
	margin: 0 !important;
	line-height: 1.5 !important;
}

.contact-card h5 a {
	color: #001a35 !important;
	border-bottom: 2px solid rgba(0, 174, 239, 0.4) !important;
	transition: all 0.3s ease;
	text-decoration: none !important;
}

.contact-card h5 a:hover {
	color: var(--sky) !important;
	border-bottom-color: var(--sky) !important;
}


@media screen and (max-width: 736px) {
	#header {
		background: transparent !important;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}
}

@media screen and (max-width: 980px) {
	.contact-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 480px) {
	.contact-cards {
		grid-template-columns: 1fr;
	}
}

.service-icon {
	font-size: 3em;
	margin-bottom: 0.4em;
	display: block;
	transition: transform 0.3s ease;
	color: var(--sky);
}

.service-card:hover .service-icon {
	transform: floatUp 1.5s ease infinite;
	animation: floatUp 1.5s ease infinite;
}

.service-card h3 {
	font-size: 1.1em !important;
	letter-spacing: 0.06em;
	margin-bottom: 0.8em;
	color: var(--navy) !important;
	font-weight: 700;
}

.service-card p {
	font-size: 0.85em;
	color: var(--text-body) !important;
	line-height: 1.6;
}

.service-card .button {
	border-radius: var(--radius-pill) !important;
	font-size: 0.72em !important;
	background: var(--sky-light) !important;
	color: var(--sky-dark) !important;
	box-shadow: none !important;
	border: 1.5px solid var(--sky) !important;
	font-weight: 700;
	letter-spacing: 0.08em;
}

#about h2 {
	border-color: var(--sky) !important;
	margin-bottom: 0.8em;
}

#about p {
	color: var(--text-body) !important;
}



.section-tag {
	display: inline-block;
	color: var(--sky);
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 0.8em;
	border-bottom: 2px solid var(--sky);
	padding-bottom: 0.2em;
}

.about-highlights {
	list-style: none !important;
	padding: 0 !important;
	margin: 2.2em 0 2.5em !important;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.5em;
	flex-wrap: wrap;
}

.about-highlights li {
	display: flex;
	align-items: center;
	gap: 0.8em;
	font-size: 1.05em;
	color: var(--white) !important;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.highlight-icon {
	color: var(--sky);
	font-size: 1.1em;
	flex-shrink: 0;
	font-weight: 700;
}

#why-us header.major h2 {
	border-color: var(--sky) !important;
}

#why-us header.major p,
#why-us header p,
#about header.major p {
	color: #ffffff !important;
}

.why-features.features {
	border: none !important;
}

.why-features.features li {
	background: rgba(0, 0, 0, 0.45) !important;

	border-radius: var(--radius) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	padding: 3.2em 1.5em 2em !important;

	max-width: 310px !important;

	margin: 0 auto !important;

	transition: var(--transition);
	text-align: center;
	overflow: visible;
}

.why-features.features li:before {
	display: block !important;
	position: absolute;
	top: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 2rem !important;
	color: var(--sky) !important;
	width: auto !important;
	height: auto !important;
	line-height: 1 !important;
	margin: 0 !important;
}

.why-features.features li:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	transform: translateY(-8px);
	border-color: var(--sky) !important;
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.why-features.features li h3 {
	color: var(--navy) !important;
	font-size: 1.1em !important;
	margin-bottom: 1em !important;
}

.why-features.features li p {
	color: var(--text-body) !important;
	font-size: 0.9em;
	line-height: 1.6;
}




img {
	max-width: 100%;
	height: auto;
	display: block;
}



.coverage-section header.major h2 {
	color: var(--white) !important;
	border-color: var(--sky) !important;
}

.coverage-section header.major p {
	color: rgba(255, 255, 255, 0.7) !important;
}

.map-placeholder {
	margin: 2em auto;
	width: 100%;
	max-width: 860px;
}

.map-visual {
	position: relative;
	width: 100%;
	min-height: 300px;
	background: rgba(255, 255, 255, 0.05) !important;

	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}


.map-visual::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.08), transparent);
	animation: shimmer 3s ease infinite;
}

.map-label-center {
	font-size: 1.2em;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.06em;
}

.map-pin {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.pin-dot {
	width: 12px;
	height: 12px;
	background: var(--sky);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.3);
	animation: pinPulse 2s ease infinite;
}

.pin-label {
	font-size: 0.6em;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sky);
	white-space: nowrap;
}

.coverage-regions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.7em;
	margin-top: 2em;
}

.region-tag {
	background: var(--sky-light);
	border: 1.5px solid var(--sky);
	color: var(--sky-dark);
	font-size: 0.75em;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.45em 1.3em;
	border-radius: var(--radius-pill);
	transition: var(--transition);
}

.region-tag:hover {
	background: var(--sky);
	color: var(--white);
	border-color: var(--sky);
	transform: translateY(-2px);
}




.quote-section header.major h2 {
	color: var(--white) !important;
	border-color: var(--sky) !important;
}

.quote-section header.major p {
	color: rgb(255, 255, 255) !important;
}

.quote-form {
	max-width: 800px;
	margin: 0 auto;
	background: var(--white) !important;
	padding: 3em !important;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5em;
	margin-bottom: 1.5em;
}

.form-group label {
	color: var(--navy) !important;
	font-weight: 700;
	margin-bottom: 0.5em;
	display: block;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #94a3b8 !important;
	opacity: 1 !important;
}

.form-group input,
.form-group select,
.form-group textarea {
	background: #ffffff !important;
	border: 2px solid #e2e8f0 !important;
	color: #002D62 !important;

	border-radius: 8px !important;
	padding: 0.8em 1.2em !important;
	transition: all 0.3s ease;
	width: 100%;
	font-size: 0.95em !important;
	min-height: 3.8em !important;

	line-height: normal !important;
	display: block;
}

.form-group select {
	cursor: pointer;
	appearance: auto !important;
	-webkit-appearance: auto !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--sky) !important;
	box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1) !important;
	background: #fff !important;
}

.form-group.full-width {
	grid-column: 1 / -1;
}

@media screen and (max-width:736px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}



.faq-section {
	background: transparent !important;
}

.faq-list {
	max-width: 900px;
	margin: 3em auto 0;
	display: block !important;
	width: 100%;
}

.faq-item {
	background: var(--navy) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius);
	margin-bottom: 1em;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	overflow: hidden;
	display: block !important;
	width: 100% !important;
}

.faq-question {
	all: unset !important;
	color: #ffffff !important;
	font-weight: 700 !important;
	padding: 1.8em 2em !important;
	background: var(--navy) !important;
	width: 100% !important;
	box-sizing: border-box !important;
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	gap: 1.5em !important;
	cursor: pointer !important;
	text-align: left !important;
	transition: background 0.3s ease !important;
	white-space: normal !important;
}

.faq-question span:first-child {
	flex: 1 !important;
}

.faq-arrow {
	font-size: 0.8em !important;
	color: #ffffff !important;
	opacity: 0.8;
	flex-shrink: 0 !important;
	transition: transform 0.35s ease !important;
}

.faq-question:hover {
	background: var(--sky) !important;
}

.faq-item.open .faq-arrow {
	transform: rotate(180deg) !important;
}

.faq-answer {
	background: var(--white) !important;
	display: none;
}

.faq-item.open .faq-answer {
	display: block;
	animation: fadeIn 0.3s ease;
}

.faq-answer p {
	color: var(--text-body) !important;
	font-size: 0.95em !important;
	line-height: 1.7 !important;
	margin: 0 !important;
	padding: 1.5em 2em !important;
	border-top: 1px solid var(--border);
}


#footer {
	background: var(--navy) !important;
	border-top: 3px solid var(--sky);
	padding: 0;
}

.footer-col {
	text-align: left !important;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1em 2em;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 1.5em;
	align-items: start;
}

.footer-col h4 {
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--sky) !important;
	margin-bottom: 0.6em;
	font-family: 'Inter', sans-serif !important;
	text-align: left !important;
}

.footer-logo-text {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.15em;
	font-weight: 800;
	color: #fff;
	margin-bottom: 0.4em;
	text-align: left;
}

.footer-tagline {
	font-size: 0.82em;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.5;
	margin-bottom: 0.8em;
	text-align: left;
}

.footer-social {
	display: flex !important;
	gap: 0.8em;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	justify-content: flex-start;
}

.footer-social li {
	padding: 0 !important;
}

.footer-social li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.2em;
	height: 2.2em;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.08) !important;
	border: none !important;
	color: rgba(255, 255, 255, 0.65) !important;
	transition: var(--transition) !important;
	font-size: 0.9em;
}

.footer-social li a:hover {
	background: var(--sky) !important;
	color: #fff !important;
	transform: translateY(-3px);
}

.footer-nav-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	text-align: left;
}

.footer-nav-list li {
	margin-bottom: 0.5em;
}

.footer-nav-list li a {
	font-size: 0.85em;
	color: rgba(255, 255, 255, 0.55) !important;
	border: none !important;
	transition: color 0.25s ease !important;
}

.footer-nav-list li a:hover {
	color: var(--sky) !important;
}

.footer-contact-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	text-align: left;
}

.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.6em;
	margin-bottom: 0.8em;
	font-size: 0.82em;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.4;
}

.contact-icon {
	flex-shrink: 0;
	font-size: 0.9em;
}

.footer-contact-list li a {
	color: rgba(255, 255, 255, 0.55) !important;
	border: none !important;
	transition: color 0.25s ease !important;
}

.footer-contact-list li a:hover {
	color: var(--sky) !important;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 1.2em 2em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1em;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-bottom p {
	font-size: 0.75em;
	color: rgba(255, 255, 255, 0.25);
	margin: 0;
	letter-spacing: 0.05em;
}

.footer-legal a {
	color: rgba(255, 255, 255, 0.25) !important;
	border: none !important;
	transition: color 0.25s ease !important;
}

.footer-legal a:hover {
	color: var(--sky) !important;
}

@media screen and (max-width:1100px) {
	.footer-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 3em 1.5em;
	}
}

@media screen and (max-width:736px) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 2em;
		padding: 2.5em 1.5em;
		text-align: left !important;
	}

	.footer-col {
		text-align: left !important;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		padding: 2em 1.5em;
	}
}




.button.primary,
input[type="submit"].primary,
button.primary,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	background: var(--sky) !important;
	color: var(--white) !important;
	border-radius: var(--radius-pill) !important;
	box-shadow: var(--shadow-sky) !important;
	letter-spacing: 0.1em;
	font-weight: 700;
	font-family: 'Inter', sans-serif !important;
	border: none !important;
	transition: var(--transition) !important;
	position: relative;
	overflow: hidden;
}


.button.primary::after,
button.primary::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	transition: left 0.5s ease;
}

.button.primary:hover::after,
button.primary:hover::after {
	left: 150%;
}

.button.primary:hover,
input[type="submit"].primary:hover,
button.primary:hover {
	background: var(--sky-dark) !important;
	box-shadow: 0 12px 40px rgba(0, 174, 239, 0.5) !important;
	transform: translateY(-3px);
}


.nav-cta {
	animation: pulse-sky 2.5s ease infinite;
}


#hero .button.primary,
#quote input[type="submit"] {
	animation: pulse-sky 2.5s ease infinite;
}

#hero .button.primary:hover,
#quote input[type="submit"]:hover {
	animation: none;
}


.button:not(.primary):not(.nav-cta) {
	border-radius: var(--radius-pill) !important;
	background: transparent !important;
	border: 2px solid var(--navy) !important;
	color: var(--navy) !important;
	box-shadow: none !important;
	transition: var(--transition) !important;
}


#hero .button:not(.primary),
.stats-section .button:not(.primary),
#footer .button:not(.primary) {
	border-color: rgba(255, 255, 255, 0.65) !important;
	color: #fff !important;
}

.button:not(.primary):not(.nav-cta):hover {
	background: var(--navy) !important;
	color: #fff !important;
	transform: translateY(-3px);
}

#hero .button:not(.primary):hover {
	background: rgba(255, 255, 255, 0.2) !important;
	color: #fff !important;
}


.wrapper.style1 {
	background: var(--off-white) !important;
	color: var(--text-body) !important;
}

.wrapper.style2 {
	background: var(--white) !important;
	color: var(--text-body) !important;
}

.wrapper.style3 {
	background: var(--grey) !important;
	color: var(--text-body) !important;
}

.wrapper.style4 {
	background: var(--sky-light) !important;
	color: var(--text-body) !important;
}

.wrapper.style5 {
	background: var(--white) !important;
	color: var(--text-body) !important;
}


header.major h2 {
	border-color: var(--sky) !important;
	color: var(--navy) !important;
}

header.major p {
	color: var(--text-body) !important;
	top: 0 !important;
}

header p {
	color: var(--text-muted) !important;
}


@media screen and (max-width: 736px) {
	.wrapper {
		padding: 3.5em 1.5em 2em !important;
	}

	.hero-headline {
		font-size: 1.9em;
	}
}

@media screen and (max-width: 480px) {
	.hero-headline {
		font-size: 1.5em;
	}

	.partner-logo,
	.service-card {
		padding: 1.8em 1em;
	}
}


.loader-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100000;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-container.fade-out {
	opacity: 0;
	visibility: hidden;
}

.loader {
	font-size: 44px;
	font-weight: 900;
	font-family: 'Montserrat', sans-serif !important;
	letter-spacing: 6px;
	color: #00AEEF;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	line-height: 1;
	padding: 0;
	margin: 0;
	--_m: linear-gradient(90deg, #0000, #000 15% 85%, #0000);
	-webkit-mask: var(--_m);
	mask: var(--_m);
}

.loader:before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #EC287F;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
	-webkit-mask: linear-gradient(90deg, #0000, #000 50%, #0000);
	mask: linear-gradient(90deg, #0000, #000 50%, #0000);
	animation: scan-l8 1.8s infinite linear;
	display: flex;
	align-items: center;
	justify-content: center;
}

@keyframes scan-l8 {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}

@media screen and (max-width: 768px) and (min-width: 481px) {
	.loader {
		font-size: 32px;
		letter-spacing: 4px;
	}
}

@media screen and (max-width: 480px) {
	.loader {
		font-size: 24px;
		letter-spacing: 2px;
	}
}



.menu-wrap {
	position: fixed;
	top: clamp(1rem, 3vh, 1.5rem);
	right: clamp(3rem, 8vw, 4.5rem);

	z-index: 99999;
	transition: opacity 0.4s ease;
	--menu-size: clamp(42px, 8vw, 52px);
}


body.is-loading .menu-wrap {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.menu-wrap .toggler {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
	width: var(--menu-size);
	height: var(--menu-size);
	opacity: 0;
}

.menu-wrap .hamburger {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: var(--menu-size);
	height: var(--menu-size);
	padding: 0;
	background: rgba(0, 174, 239, 0.96);

	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.menu-wrap .hamburger>div {
	position: relative;
	flex: none;
	width: 60%;

	height: 2px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
}


.menu-wrap .hamburger>div::before,
.menu-wrap .hamburger>div::after {
	content: '';
	position: absolute;
	z-index: 1;
	top: -8px;

	width: 100%;
	height: 2px;
	background: inherit;
}

.menu-wrap .hamburger>div::after {
	top: 8px;
}


.menu-wrap .toggler:checked+.hamburger>div {
	transform: rotate(135deg);
}

.menu-wrap .toggler:checked+.hamburger>div:before,
.menu-wrap .toggler:checked+.hamburger>div:after {
	top: 0;
	transform: rotate(90deg);
}


.menu-wrap .toggler:checked~.menu {
	visibility: visible;
}

.menu-wrap .toggler:checked~.menu>div {
	transform: scale(1);
	transition-duration: 0.75s;
}

.menu-wrap .toggler:checked~.menu>div>div {
	opacity: 1;
	transition: opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-wrap .menu>div {
	background: rgba(0, 45, 98, 0.98);

	border-radius: 50%;
	width: 250vw;
	height: 250vw;
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	transform: scale(0);
	transition: all 0.4s ease;
}

.menu-wrap .menu>div>div {
	text-align: center;
	max-width: 90vw;
	max-height: 100vh;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.menu-wrap .menu>div>div ul li {
	list-style: none;
	color: #fff;
	font-size: 1.4rem;
	padding: 1.2rem;
}

.menu-wrap .menu>div>div ul li a,
.menu-wrap .menu>div>div ul li .menu-parent {
	color: inherit;
	text-decoration: none;
	transition: color 0.4s ease;
	font-family: 'Montserrat', sans-serif !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	border-bottom: none !important;
}

.menu-wrap .menu>div>div ul li a:hover,
.menu-wrap .menu>div>div ul li .menu-parent:hover {
	color: #00AEEF !important;

}

@media screen and (max-width: 480px) {
	.menu-wrap .menu>div>div ul li {
		padding: 0.8rem;
		font-size: 1.1rem;
	}
}




img {
	max-width: 100%;
	height: auto;
	display: block;
}


.inner,
.quote-form,
.stats-grid,
.faq-container {
	width: 90%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}


.hero-headline {
	font-size: clamp(1.5rem, 5vw, 2.6rem) !important;
}

#about .spotlight {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}

#about .spotlight .content {
	width: 100% !important;
	max-width: 100% !important;
	flex: none !important;
}


.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.8em;
}


@media screen and (max-width: 1024px) {


	#about .spotlight {
		padding: 5em 1.5em !important;
	}

	#about .spotlight .content {
		padding: 2.5em !important;
		margin: 0 !important;
	}


	.stats-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.5em;
	}


	.partners-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}


	.footer-inner {
		grid-template-columns: 1fr 1fr !important;
		gap: 2em;
	}


	.why-features.features {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 1.5em !important;
		padding: 0 !important;
	}

	.why-features.features li {
		width: 100% !important;
		max-width: 500px !important;
		text-align: center !important;
		margin: 0 auto !important;
	}
}




@media screen and (min-width: 737px) and (max-width: 768px) {
	#why-us .inner {
		width: 100% !important;
		max-width: 100% !important;
	}

	.why-features.features {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		gap: 1.5em !important;
	}

	.why-features.features li {
		width: 100% !important;
		max-width: 380px !important;

		text-align: center !important;
		margin: 0 auto !important;
		padding: 3.2em 1.5em 2em !important;
	}
}

@media screen and (max-width: 768px) {


	html,
	body,
	#page-wrapper {
		overflow-x: hidden !important;
		max-width: 100vw;
	}


	section,
	.wrapper,
	.stats-section,
	.coverage-section,
	.partners-section,
	.quote-section,
	.faq-section {
		padding-left: 1.2em !important;
		padding-right: 1.2em !important;
	}

	#why-us {
		padding: 5em 1.2em !important;
	}


	#about .spotlight {
		padding: 4em 1.2em !important;
		width: 100% !important;
	}

	#about .spotlight .content {
		padding: 2em 1.5em !important;
		margin: 0 !important;
		width: 100% !important;
		box-sizing: border-box;
	}


	.services-grid {
		grid-template-columns: 1fr !important;
	}


	.stats-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1em !important;
	}

	.stat-number {
		font-size: 2em !important;
	}


	.partners-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1em !important;
	}


	.why-features.features {
		display: flex !important;
		flex-direction: column !important;
		gap: 1em !important;
	}


	.footer-inner {
		grid-template-columns: 1fr !important;
		padding: 2.5em 1.2em 1.5em !important;
		gap: 2em !important;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		padding: 1.2em;
	}


	.form-row {
		grid-template-columns: 1fr !important;
	}


	#home {
		padding: 0 1.2em !important;
	}

	.hero-badge {
		font-size: 0.72em;
	}

	.hero-actions {
		flex-direction: column !important;
		align-items: center !important;
		gap: 0.8em !important;
	}

	.hero-actions .button,
	.button.primary.large,
	.button {
		width: 100% !important;
		max-width: 100% !important;
		text-align: center;
		height: auto !important;
		min-height: 3.5em !important;
		line-height: 1.4 !important;
		padding: 0.8em 1.5em !important;
		white-space: normal !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		overflow: visible !important;
	}




	.map-placeholder {
		padding: 0 1em;
	}

	.map-visual {
		min-height: 200px;
	}


	.menu-wrap .menu>div {
		width: 300vw;
		height: 300vw;
	}
}


@media screen and (max-width: 480px) {
	.hero-headline {
		font-size: clamp(1.3rem, 7vw, 1.8rem) !important;
	}

	.hero-subheadline {
		font-size: 0.9em !important;
	}

	.stat-number {
		font-size: 1.7em !important;
	}


	.stats-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}


	.partners-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}


	.menu-wrap .menu>div {
		width: 400vw;
		height: 400vw;
	}

	#header {
		height: 4em !important;
	}

	#logo-link img {
		height: 40px !important;
	}
}


.contact-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5em;
	margin-bottom: 3em;
}

.contact-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2em 1.5em;
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
}

.contact-card:hover {
	background: var(--off-white);
	border-color: var(--sky);
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.contact-card-icon {
	font-size: 2em;
	margin-bottom: 0.5em;
	color: var(--sky);
}

.contact-card h4 {
	color: var(--navy) !important;
	font-size: 0.9em;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.5em !important;
}

.contact-card p,
.contact-card a {
	color: rgba(255, 255, 255, 0.8) !important;
	font-size: 0.88em;
	line-height: 1.5;
	border: none !important;
}

.contact-card a:hover {
	color: var(--sky) !important;
}


.contact-form-wrap {
	max-width: 900px;
	margin: 0 auto;
	background: var(--white);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	border-radius: var(--radius);
	padding: 2.5em 2em;
}

.contact-form-wrap h3 {
	color: var(--navy) !important;
}

@media screen and (max-width: 768px) {
	.contact-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-form-wrap {
		padding: 1.5em 1em;
	}
}

@media screen and (max-width: 480px) {
	.contact-cards {
		grid-template-columns: 1fr;
	}
}




.me-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4em;
	align-items: center;
	margin: 3em 0 2.5em;
}


.me-map-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}

.me-map {
	position: relative;
	width: 100%;
	max-width: 400px;
	background: rgba(0, 49, 110, 0.856);
	border: 1px solid rgba(0, 174, 239, 0.2);
	border-radius: 16px;
	padding: 1.5em;
	box-shadow:
		0 0 40px rgba(0, 174, 239, 0.12),
		inset 0 0 30px rgba(0, 30, 80, 0.3);
}

.me-map-svg {
	width: 100%;
	height: auto;
	overflow: visible;
}


.trade-line {
	stroke: rgba(0, 174, 239, 0.35);
	stroke-width: 1.5;
	fill: none;
	animation: dash-move 3s linear infinite;
}

@keyframes dash-move {
	to {
		stroke-dashoffset: -20;
	}
}

.pulse-ring {
	animation: pulse-glow 2s ease-in-out infinite;
	transform-origin: center;
}

@keyframes pulse-glow {

	0%,
	100% {
		opacity: 0.3;
		r: 18;
	}

	50% {
		opacity: 0.9;
		r: 24;
	}
}

.map-label {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	font-weight: 600;
	fill: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.04em;
}

.map-label.sm {
	font-size: 8px;
	fill: rgba(255, 255, 255, 0.7);
}

.map-label.remote {
	font-size: 9px;
	fill: rgba(255, 200, 80, 0.85);
}

.map-badge {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	fill: var(--white) !important;
	letter-spacing: 0.06em;
	font-weight: 600;
	text-transform: uppercase;
}


.me-pillars {
	display: flex;
	flex-direction: column;
	gap: 1.5em;
}

.me-pillar {
	background: var(--white);
	border: 1px solid var(--border);
	border-left: 3px solid var(--sky);
	border-radius: 10px;
	padding: 1.4em 1.5em;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.me-pillar::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 174, 239, 0.04), transparent 60%);
	pointer-events: none;
}

.me-pillar:hover {
	background: var(--off-white);
	border-left-color: var(--navy);
	transform: translateX(4px);
	box-shadow: var(--shadow-md);
}

.me-pillar-icon {
	font-size: 1.6em;
	margin-bottom: 0.4em;
}

.me-pillar h3 {
	color: var(--navy) !important;
	font-size: 1em !important;
	font-weight: 700 !important;
	margin-bottom: 0.2em !important;
	letter-spacing: 0.02em;
}

.me-pillar-tag {
	color: var(--sky) !important;
	font-size: 0.72em !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.6em !important;
}

.me-pillar p:last-child {
	color: var(--text-body) !important;
	font-size: 0.85em !important;
	line-height: 1.6 !important;
	margin: 0 !important;
}


.me-cta {
	text-align: center;
	margin-top: 1em;
}


@media screen and (max-width: 1024px) {
	.me-layout {
		grid-template-columns: 1fr;
		gap: 2.5em;
	}

	.me-map-wrap {
		order: -1;
	}

	.me-map {
		max-width: 340px;
	}
}

@media screen and (max-width: 768px) {
	.me-powerhouse-section {
		padding: 3.5em 0;
	}

	.me-map {
		max-width: 280px;
	}

	.me-pillar {
		padding: 1em 1.2em;
	}
}


.menu ul li.has-submenu {
	position: relative;
}

.menu-parent {
	cursor: pointer;
	display: inline-block;
}

.submenu-arrow {
	font-size: 0.8em;
	margin-left: 2px;
}

.menu ul li .submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 30, 70, 0.98);
	border: 1px solid rgba(0, 174, 239, 0.3);
	border-radius: 6px;
	padding: 2px 0;
	min-width: 190px;
	max-height: 280px;

	overflow-y: auto;

	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
	z-index: 1000;
	scrollbar-width: thin;

	scrollbar-color: var(--sky) transparent;
}

.menu ul li .submenu::-webkit-scrollbar {
	width: 5px;
}

.menu ul li .submenu::-webkit-scrollbar-thumb {
	background: var(--sky);
	border-radius: 10px;
}

@media screen and (max-width: 768px) {
	.menu ul li .submenu {
		position: static;
		transform: none;
		background: transparent;
		box-shadow: none;
		border: none;
		padding-top: 5px;
		display: none;

	}
}


.menu ul li.has-submenu.open .submenu {
	display: block;
	animation: fadeInUpMenu 0.3s ease-out;
}

@keyframes fadeInUpMenu {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

.menu ul li .submenu li {
	display: block;
	margin: 0;
	padding: 0;
}

.menu ul li .submenu li a {
	display: block;
	padding: 8px 16px;
	font-size: 0.8em;
	text-align: left;
	border: none !important;
	color: #fff !important;
	transition: var(--transition);
}

.menu ul li .submenu li a:hover {
	background: rgba(0, 174, 239, 0.25);
	color: var(--sky) !important;
	padding-left: 20px;
}


.subpage-section,
.wrapper.style1,
.wrapper.style2,
.wrapper.style3,
.wrapper.style4,
.wrapper.special {
	background-color: transparent !important;
}



.service-detail-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2em;
	margin-top: 3em;
}

.service-detail-card {
	background: var(--white) !important;
	border: 1px solid var(--border);
	padding: 2.5em 2em;
	border-radius: var(--radius);
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.service-detail-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: var(--sky) !important;
}

.sdc-icon {
	font-size: 2.5em;
	margin-bottom: 0.5em;
}

.service-detail-card h3 {
	color: var(--navy) !important;
	font-size: 1.1em !important;
	font-weight: 700 !important;
	margin-bottom: 0.8em !important;
}

.service-detail-card p {
	color: var(--text-body) !important;
	font-size: 0.9em !important;
	line-height: 1.6 !important;
	margin: 0 !important;
}

@media screen and (max-width: 980px) {
	.service-detail-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.service-detail-grid {
		grid-template-columns: 1fr;
		gap: 1.5em;
	}
}

.flow-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5em;
	margin-top: 2em;
}

.flow-step {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2em 1.5em;
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
}

.flow-step:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: var(--sky) !important;
}

.flow-step .step-icon {
	font-size: 2.5em;
	margin-bottom: 0.5em;
	color: var(--sky);
}

.flow-step h3 {
	font-size: 1.1em !important;
	color: var(--navy) !important;
	margin-bottom: 0.8em;
	font-weight: 700;
}

.flow-step p {
	font-size: 0.9em;
	color: var(--text-body) !important;
	line-height: 1.6;
	margin: 0;
}

@media screen and (max-width: 980px) {
	.flow-steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	#logistics-flow {
		padding-left: 1.2em !important;
		padding-right: 1.2em !important;
	}

	.flow-steps {
		grid-template-columns: 1fr;
	}

	.flow-image-wrapper {
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.flow-image {
		max-width: 100%;
		width: 100%;
		height: auto;
		min-width: 0;
		display: block;
	}
}


body {
	top: 0 !important;
}

iframe.goog-te-banner-frame {
	display: none !important;
}

#goog-gt-tt,
.goog-te-balloon-frame {
	display: none !important;
}

.goog-text-highlight {
	background-color: transparent !important;
	box-shadow: none !important;
}

.lang-toggle {
	position: fixed;
	top: clamp(1rem, 3vh, 1.5rem);
	right: calc(clamp(3rem, 8vw, 4.5rem) + clamp(42px, 8vw, 52px) - 35px);
	z-index: 99999;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 8px;
	padding: 0 15px;
	height: clamp(42px, 8vw, 52px);
	color: #002D62;

	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lang-toggle:hover {
	background: #00AEEF;

	color: #fff;
}

@media screen and (max-width: 480px) {
	.lang-toggle {
		font-size: 14px;
		padding: 0 10px;
	}
}