/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/


/**************************/
/*     General Styles     */
/**************************/
:root {
	--primary: #0b2154;
	--primary-light: #081633;
	--secondary: #d81324;
	--tertiary: #a90f1c;
	--accent-dark: #000000;
	--gradient: linear-gradient(135deg, #d81324 0%, #a90f1c 100%);
	--muted: #656565;
	--muted-strong: #555b66;
	--surface: #ffffff;
	--surface-soft: #f5f5f5;
	--surface-strong: #ffffff;
	--border: #e7ebf0;
	--ink: #0b2154;
	--shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

body {
	color: var(--ink);
	font-family: "Heebo", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	background: var(--surface);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0;
}

h1 {
	font-size: 74px;
	line-height: 0.95;
}

button {
	font-family: "Teko", "Heebo", Arial, sans-serif;
}

p,
ul,
h4 {
	margin: 0;
	padding: 0;
}

a {
	color: #fff;
	text-decoration: none;
}

li {
  	list-style-type: none;
}

/* Section Background */
.home,
.about,
.services,
.plans,
.work,
.contact {
	height: 110vh;
	position: relative;
}

.services,
.testimonial {
  	background-color: var(--surface-soft);
}

.work,
.location {
	background-color: var(--primary);
}

.about,
.plans,
.company,
.newsletter {
  	background-color: var(--surface-soft);
}

.contact,
.footer {
	background-color: var(--primary);
}

.bottom {
  	background-color: #050b1d;
}

/* Gradient Border And Background On Icons */
.home_text,
.home .fas,
.plans .far,
.information .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas {
	padding: 15px 0;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#d81324),
		to(#d81324)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer a:hover,
.footer .fab:hover {
	cursor: pointer;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background-color: rgba(5, 11, 29, 0.96);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(12px);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
	/* width: 108px; */
	/* height: 32px; */
	width: 205px;
	height: auto;
	filter: none;
}

.navbar .logo-text {
	color: #fff;
	font-weight: 500;
	line-height: 1rem;
	font-size: 1.575rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: absolute;
	top: 100%;
	right: 1rem;
	left: 1rem;
	width: auto;
	max-height: calc(100svh - 5.5rem);
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	padding: 0.75rem 1rem 1rem;
	background-color: rgba(5, 11, 29, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.34);
	transform: translateY(-0.75rem);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 1040;
}

.offcanvas-collapse.open {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .dropdown-menu {
	border: none;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	background-color: rgba(5, 11, 29, 0.98);
	box-shadow: var(--shadow);
}

.navbar .dropdown-item {
	color: rgba(255, 255, 255, 0.78);
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 0.875rem;
	padding-top: 0.625rem;
	text-decoration: none;
	padding-bottom: 0.625rem;
}

.navbar .dropdown-item:hover {
	color: #fff;
  	background-color: var(--secondary);
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	border: none;
	margin: 0.5rem auto 0.5rem auto;
	background-color: rgba(255, 255, 255, 0.12);
}

.navbar .nav-item .nav-link {
	position: relative;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	transition: all 0.2s ease;
}

.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: #fff;
	background-clip: initial;
	-webkit-background-clip: initial;
	-webkit-text-fill-color: #fff;
}

.navbar .nav-item .nav-link:after {
	content: "";
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 0.1rem;
	height: 0.18rem;
	margin-left: 0;
	border: 0;
	background: var(--secondary);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.navbar .nav-item .nav-link:hover:after,
.navbar .nav-item .nav-link.active:after {
	transform: scaleX(1);
}

.navbar .dropdown-toggle.active:after,
.navbar .dropdown:has(.dropdown-item.active) > .dropdown-toggle:after {
	display: block;
	margin-left: 0;
	border: 0;
	transform: scaleX(1);
}

.navbar .nav-item .nav-link.active {
	background: rgba(216, 19, 36, 0.1);
}

.navbar .dropdown-item.active {
	color: #fff;
	background: var(--secondary);
	-webkit-text-fill-color: #fff;
}

.navbar .dropdown-item:hover {
	-webkit-text-fill-color: #fff;
}

@media only screen and (max-width: 991px) {
	.navbar .dropdown {
		position: relative;
	}

	.navbar .dropdown-toggle {
		padding-right: 4rem;
	}

	.navbar .dropdown-toggle:after {
		right: 4rem;
	}

	.navbar .dropdown-toggle:not(.active):hover:after,
	.navbar .dropdown-toggle:not(.active):focus:after {
		transform: scaleX(0);
	}

	.navbar .dropdown-toggle:before {
		content: "+";
		position: absolute;
		top: 50%;
		right: 0.9rem;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.45rem;
		height: 1.45rem;
		padding: 0;
		color: #fff;
		background: rgba(216, 19, 36, 0.24);
		border: 1px solid rgba(216, 19, 36, 0.65);
		font-size: 1rem;
		line-height: 1;
		letter-spacing: 0.08em;
		transform: translateY(-50%);
	}

	.navbar .dropdown.show .dropdown-toggle:before {
		content: "-";
		background: var(--secondary);
	}

	.navbar .dropdown-menu {
		margin: 0.2rem 0 0.65rem 0.9rem;
		padding: 0.35rem 0 0.35rem 0.9rem;
		border-left: 3px solid var(--secondary);
		background: rgba(255, 255, 255, 0.04);
		box-shadow: none;
	}

	.navbar .dropdown-divider {
		display: none;
	}

	.navbar .dropdown-item {
		position: relative;
		margin: 0.15rem 0;
		padding: 0.65rem 0.8rem 0.65rem 1.5rem;
		color: rgba(255, 255, 255, 0.88);
		background: rgba(255, 255, 255, 0.035);
	}

	.navbar .dropdown-item:before {
		content: "";
		position: absolute;
		left: 0.65rem;
		top: 50%;
		width: 0.38rem;
		height: 0.38rem;
		background: var(--secondary);
		transform: translateY(-50%) rotate(45deg);
	}
}

.navbar .fa-stack {
	width: 2em;
	font-size: 0.75rem;
	margin-right: 0.25rem;
}

.navbar .fa-stack-2x {
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#d81324),
		to(#d81324)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
  	color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
  	color: var(--primary);
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}

.navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/****************/
/*     Home     */
/****************/
.home {
	background-image: url(../assets/images/home.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.para {
  	width: 50%;
}

.para-light {
  	opacity: 0.86;
	line-height: 1.7;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.24) 100%),
		linear-gradient(135deg, rgba(216, 19, 36, 0.32), transparent 38%);
	z-index: 1;
}

.header {
	z-index: 2;
}

.hero-content {
	max-width: 760px;
	padding-left: 50px;
}

.hero-content .para {
	width: 100%;
	max-width: 680px;
}

.eyebrow {
	color: var(--secondary);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.45rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.hero-actions .btn {
	margin-left: 0 !important;
}

.hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.hero-proof span,
.trust-card {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.09);
	backdrop-filter: blur(6px);
}

.hero-proof span {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: 0.45rem 0.8rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: #fff;
	border-radius: 0;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-proof span:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(135deg, var(--secondary), var(--primary));
	opacity: 0;
	transition: opacity 0.25s ease;
}

.hero-proof span:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.24);
	box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.28);
}

.hero-proof span:hover:before {
	opacity: 1;
}

.trust-strip {
	background: var(--surface);
	color: var(--ink);
}

.trust-card {
	border-radius: 0;
	height: 100%;
	padding: 1.5rem;
	background: var(--surface-strong);
	border-color: var(--border);
	box-shadow: var(--shadow);
	border-top: 4px solid var(--secondary);
}

.trust-card h5 {
	color: var(--ink);
	margin-bottom: 0.5rem;
}

.trust-card p {
	color: var(--muted);
	line-height: 1.65;
}

.about {
	color: var(--ink) !important;
}

.about .para-light {
	color: var(--muted-strong);
	opacity: 1;
}

.about > .container > .row > div:first-child > p:first-child,
.work .section-title,
.plans .section-title {
	color: var(--secondary);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.45rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.route-highlight {
	background-color: var(--surface-soft);
}

.route-highlight h2,
.route-highlight h3,
.page-hero h1,
.section-heading h2 {
	color: var(--ink);
}

.route-list,
.route-board {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem 2rem;
	margin-top: 1.5rem;
}

.route-list li {
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border);
	color: #2a2f38;
}

.route-board {
	gap: 1rem;
}

.route-card {
	position: relative;
	overflow: hidden;
	padding: 1.25rem 1.35rem;
	background: #fff;
	border: 1px solid rgba(11, 33, 84, 0.1);
	border-left: 4px solid var(--secondary);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.route-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(216, 19, 36, 0.1), transparent 52%);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.route-card:hover {
	transform: translateY(-6px);
	border-color: rgba(216, 19, 36, 0.35);
	box-shadow: 0 1.2rem 2.2rem rgba(11, 33, 84, 0.16);
}

.route-card:hover:before {
	opacity: 1;
}

.route-tag,
.route-path,
.route-card p {
	position: relative;
	z-index: 1;
}

.route-tag {
	display: inline-block;
	margin-bottom: 0.85rem;
	padding: 0.2rem 0.65rem;
	background: rgba(216, 19, 36, 0.1);
	color: var(--secondary);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.route-path {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--ink);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.05;
}

.route-path i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	height: 2rem;
	background: var(--secondary);
	color: #fff;
	font-size: 0.95rem;
	transition: transform 0.25s ease;
}

.route-card:hover .route-path i {
	transform: translateX(4px);
}

.route-card p {
	margin: 0.7rem 0 0;
	color: #5b6472;
	font-weight: 600;
}

.cta-panel {
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.88), rgba(11, 33, 84, 0.92));
	color: #fff;
	border-left: 4px solid var(--secondary);
	box-shadow: var(--shadow);
	padding: 2rem;
}

.page-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(11, 33, 84, 0.76)),
		var(--primary);
	padding: 4.5rem 0;
}

.page-hero:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: min(48vw, 42rem);
	height: 100%;
	background:
		linear-gradient(135deg, transparent 0 18%, rgba(216, 19, 36, 0.22) 18% 22%, transparent 22% 36%, rgba(255, 255, 255, 0.08) 36% 39%, transparent 39%),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px);
	clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
	opacity: 0.75;
	pointer-events: none;
}

.page-hero .container {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	color: #fff;
	max-width: 68rem;
}

.page-hero .eyebrow {
	position: relative;
	display: inline-block;
	padding-left: 1.1rem;
}

.page-hero .eyebrow:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 0.35rem;
	height: 1.2rem;
	background: var(--secondary);
	transform: translateY(-50%) skewX(-12deg);
}

.page-hero p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.05rem;
	line-height: 1.75;
}

.section-heading {
	margin-bottom: 2rem;
}

.section-heading p {
	color: var(--muted);
	line-height: 1.75;
	max-width: 760px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.compact-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
	border-radius: 0;
	height: 100%;
	padding: 1.5rem;
	background: var(--surface-strong);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.feature-card:hover {
	color: #fff;
	background: var(--secondary);
	transform: translateY(-4px);
}

.feature-card h4,
.feature-card h5 {
	color: var(--ink);
	margin-bottom: 0.65rem;
}

.feature-card p {
	color: var(--muted);
	line-height: 1.65;
}

.feature-card:hover h4,
.feature-card:hover h5,
.feature-card:hover p {
	color: #fff;
}

.driver-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
}

.driver-step {
	padding: 1.2rem;
	background: #fff;
	border: 1px solid var(--border);
	border-left: 4px solid var(--secondary);
	box-shadow: var(--shadow);
}

.driver-step span {
	display: block;
	color: var(--secondary);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1;
}

.driver-step strong {
	display: block;
	margin-top: 0.45rem;
	color: var(--ink);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.3rem;
	text-transform: uppercase;
}

.driver-step p {
	margin: 0.35rem 0 0;
	color: var(--muted);
}

.career-contact-panel {
	margin-top: 1.5rem;
	padding: 1.35rem;
	background: var(--primary);
	color: #fff;
	border-left: 4px solid var(--secondary);
}

.career-contact-panel p {
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 1rem;
}

.career-floating-actions {
	position: fixed;
	right: 1.25rem;
	bottom: 5.25rem;
	z-index: 1045;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	align-items: flex-end;
}

.whatsapp-float,
.viber-float {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.75rem 1rem;
	color: #fff;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.whatsapp-float {
	background: #25d366;
}

.viber-float {
	background: #7360f2;
}

.whatsapp-float:hover {
	color: #fff;
	background: #1faa52;
	transform: translateY(-2px);
}

.viber-float:hover {
	color: #fff;
	background: #5b49d6;
	transform: translateY(-2px);
}

.whatsapp-float i,
.viber-float i {
	font-size: 1.2rem;
}

.content-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
	gap: 2rem;
	align-items: center;
}

.content-split img,
.media-gallery img,
.career-hero img,
.contact-map img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.content-split img {
	max-height: 480px;
	border-radius: 0;
	box-shadow: var(--shadow);
}

.export-story-section {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.export-story {
	grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
	gap: clamp(2rem, 5vw, 4rem);
}

.export-visual {
	position: relative;
	min-height: 390px;
	overflow: hidden;
	border-left: 6px solid var(--secondary);
	box-shadow: 0 1.4rem 3rem rgba(11, 33, 84, 0.16);
}

.export-visual:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(135deg, rgba(11, 33, 84, 0.18), transparent 45%, rgba(216, 19, 36, 0.12));
	pointer-events: none;
}

.export-visual img {
	width: 100%;
	height: 100%;
	min-height: 390px;
	max-height: none;
	object-fit: cover;
	object-position: center;
	transition: transform 0.45s ease;
}

.export-story:hover .export-visual img {
	transform: scale(1.04);
}

.export-visual-badge {
	position: absolute;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 2;
	display: grid;
	min-width: 8rem;
	padding: 0.85rem 1rem;
	background: var(--secondary);
	color: #fff;
	text-align: center;
	box-shadow: 0 0.9rem 1.8rem rgba(0, 0, 0, 0.25);
}

.export-visual-badge span {
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 0.9;
}

.export-visual-badge small {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.cold-intro-section {
	background:
		linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.cold-storage-split {
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
}

.cold-feature-grid {
	margin-top: 1.75rem;
}

.cold-feature-card {
	position: relative;
	overflow: hidden;
}

.cold-feature-card i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
	background: rgba(216, 19, 36, 0.1);
	color: var(--secondary);
	font-size: 1.2rem;
	transition: background 0.2s ease, color 0.2s ease;
}

.cold-feature-card:hover i {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.cold-visual {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	border-left: 6px solid var(--secondary);
	box-shadow: 0 1.4rem 3rem rgba(11, 33, 84, 0.16);
}

.cold-visual:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, transparent 42%, rgba(8, 22, 51, 0.72)),
		linear-gradient(135deg, rgba(216, 19, 36, 0.12), transparent 38%);
	pointer-events: none;
}

.cold-visual img {
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
	object-position: center;
	transition: transform 0.45s ease;
}

.cold-storage-split:hover .cold-visual img {
	transform: scale(1.04);
}

.cold-visual-panel {
	position: absolute;
	left: 1.25rem;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.15rem;
	background: rgba(8, 22, 51, 0.88);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(6px);
}

.cold-visual-panel span {
	color: var(--secondary);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.cold-visual-panel p {
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-weight: 700;
}

.cold-gallery-section {
	padding-top: 3rem;
	background: #fff;
}

.cold-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 210px;
	gap: 1rem;
}

.cold-gallery-item {
	position: relative;
	min-height: 210px;
	margin: 0;
	overflow: hidden;
	background: var(--primary);
	box-shadow: var(--shadow);
}

.cold-gallery-item-large {
	grid-column: span 2;
	grid-row: span 2;
}

.cold-gallery-item-wide {
	grid-column: span 2;
}

.cold-gallery-item img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.cold-gallery-item:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.74));
	opacity: 0.86;
	pointer-events: none;
}

.cold-gallery-item:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 0.35rem;
	height: 100%;
	background: var(--secondary);
	transform: scaleY(0.45);
	transform-origin: top;
	transition: transform 0.25s ease;
}

.cold-gallery-item:hover img {
	transform: scale(1.06);
	filter: saturate(1.1) contrast(1.04);
}

.cold-gallery-item:hover:after {
	transform: scaleY(1);
}

.cold-gallery-item figcaption {
	position: absolute;
	left: 1.1rem;
	right: 1.1rem;
	bottom: 1rem;
	z-index: 3;
	color: #fff;
}

.cold-gallery-item figcaption span {
	display: block;
	margin-bottom: 0.3rem;
	color: var(--secondary);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cold-gallery-item figcaption strong {
	display: block;
	font-size: 1.05rem;
	line-height: 1.3;
}

.about-image {
	border-radius: 0;
}

.media-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.media-gallery img {
	aspect-ratio: 4 / 3;
}

.fleet-gallery {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.fleet-item {
	position: relative;
	min-height: 260px;
	margin: 0;
	background: var(--primary);
	cursor: zoom-in;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.fleet-item-large {
	grid-column: span 2;
}

.fleet-item img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	cursor: zoom-in;
	transition: transform 0.35s ease, filter 0.35s ease;
}

.fleet-item:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.78) 100%),
		linear-gradient(135deg, rgba(216, 19, 36, 0.22), rgba(0, 0, 0, 0) 45%);
	opacity: 0.9;
	transition: opacity 0.25s ease;
}

.fleet-item:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 4px;
	height: 100%;
	background: var(--secondary);
}

.fleet-item figcaption {
	position: absolute;
	left: 1.25rem;
	right: 1.25rem;
	bottom: 1.15rem;
	z-index: 3;
}

.fleet-item span {
	display: block;
	color: var(--secondary);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fleet-item strong {
	display: block;
	max-width: 18rem;
	color: #fff;
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: clamp(1.35rem, 2vw, 1.8rem);
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.fleet-item:hover img {
	filter: saturate(1.08) contrast(1.05);
	transform: scale(1.05);
}

.fleet-item:hover:before {
	opacity: 1;
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 3vw, 2.5rem);
	background: rgba(0, 0, 0, 0.9);
}

.gallery-lightbox.is-open {
	display: flex;
}

.gallery-lightbox__image {
	display: block;
	max-width: min(92vw, 1200px);
	max-height: 82vh;
	object-fit: contain;
	box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.45);
}

.gallery-lightbox__caption {
	position: absolute;
	left: 50%;
	bottom: 1.25rem;
	transform: translateX(-50%);
	width: min(92vw, 900px);
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	text-align: center;
	font-weight: 700;
}

.gallery-lightbox__button {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(8, 22, 51, 0.7);
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox__button:hover {
	background: var(--secondary);
	border-color: var(--secondary);
	transform: translateY(-1px);
}

.gallery-lightbox__close {
	top: 1.25rem;
	right: 1.25rem;
}

.gallery-lightbox__prev,
.gallery-lightbox__next {
	top: 50%;
	transform: translateY(-50%);
}

.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover {
	transform: translateY(-50%) translateY(-1px);
}

.gallery-lightbox__prev {
	left: 1.25rem;
}

.gallery-lightbox__next {
	right: 1.25rem;
}

body.gallery-lightbox-open {
	overflow: hidden;
}

.fleet-transition {
	margin: -1rem 0 3rem;
	padding: 0 clamp(1.25rem, 4vw, 4rem);
}

.fleet-transition-inline {
	margin: 0 0 2rem;
	padding: 0;
}

.fleet-transition-inner {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 1.25rem;
	max-width: 82rem;
	margin: 0 auto;
	padding: 1.15rem 1.5rem;
	color: #fff;
	background:
		linear-gradient(90deg, var(--secondary) 0 5px, transparent 5px),
		linear-gradient(135deg, var(--primary), #050b1d);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.fleet-transition-inline .fleet-transition-inner {
	max-width: none;
}

.fleet-transition-inner:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 34%;
	height: 100%;
	background: linear-gradient(120deg, transparent 0 28%, rgba(216, 19, 36, 0.25) 28% 42%, transparent 42%);
	pointer-events: none;
}

.fleet-transition span {
	position: relative;
	z-index: 1;
	color: var(--secondary);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.fleet-transition p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 600;
}

.cta-section {
	background:
		linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)),
		var(--primary);
	color: #fff;
	padding: 3rem 0;
}

.cta-section p {
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.7;
}

.contact-card {
	border-radius: 0;
	padding: 1.5rem;
	border: 1px solid var(--border);
	background: var(--surface-strong);
	box-shadow: var(--shadow);
}

.contact-line {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	margin-top: 1rem;
	color: var(--muted);
}

.contact-line a {
	color: var(--muted);
}

.contact-channel-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 1.25rem 0 1.35rem;
}

.contact-channel {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.85rem 1rem;
	color: #fff;
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.12rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 0.9rem 1.8rem rgba(8, 22, 51, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-channel:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 1.1rem 2rem rgba(8, 22, 51, 0.22);
}

.contact-channel-whatsapp {
	background: #25d366;
}

.contact-channel-viber {
	background: #7360f2;
}

.contact-channel i {
	font-size: 1.2rem;
}

.contact-quick-actions {
	margin-top: 1.75rem;
}

.muted-copy {
	color: var(--muted);
	line-height: 1.75;
}

.contact-form-wrap {
	width: 90%;
}

.form-status {
	display: none;
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	color: #fff;
	font-weight: 700;
}

.form-status-success {
	background: #16803a;
}

.form-status-error {
	background: var(--secondary);
}

body:has(.contact-form-wrap) .form-status {
	display: none;
}

.contact-form-visual {
	position: relative;
	width: min(92%, 58rem);
	min-height: 410px;
	margin-left: auto;
	overflow: hidden;
	border-left: 6px solid var(--secondary);
	background: var(--primary);
	box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.28);
}

.contact-form-visual:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(8, 22, 51, 0.64), rgba(8, 22, 51, 0.1) 52%),
		linear-gradient(180deg, transparent 38%, rgba(8, 22, 51, 0.86)),
		linear-gradient(135deg, rgba(216, 19, 36, 0.18), transparent 44%);
	pointer-events: none;
}

.contact-form-visual img {
	width: 100%;
	height: 100%;
	min-height: 410px;
	display: block;
	object-fit: cover;
	object-position: center;
	opacity: 0.9;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.contact-form-visual:hover img {
	transform: scale(1.04);
	filter: saturate(1.08) contrast(1.04);
}

.contact-form-visual-card {
	position: absolute;
	left: 1.25rem;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 2;
	padding: 1rem 1.15rem;
	background: rgba(8, 22, 51, 0.54);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: #fff;
	backdrop-filter: blur(3px);
}

.contact-form-visual-card span {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--secondary);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-form-visual-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-weight: 700;
	line-height: 1.5;
}

.map-section {
	background:
		linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.map-section .section-heading {
	margin-bottom: 2.75rem;
	text-align: center;
}

.map-section .section-heading p {
	margin: 0.75rem auto 0;
}

.map-card {
	overflow: hidden;
	background: var(--primary);
	box-shadow: 0 1.4rem 3rem rgba(11, 33, 84, 0.16);
}

.map-card-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.25rem 1.35rem;
	background:
		linear-gradient(135deg, rgba(216, 19, 36, 0.18), transparent 38%),
		var(--primary);
	color: #fff;
}

.map-card-title {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.map-card-title i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	background: var(--secondary);
	color: #fff;
	font-size: 1.15rem;
}

.map-card-title span {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.map-card-title strong {
	display: block;
	color: #fff;
	font-size: 1.15rem;
}

.map-frame-wrap {
	position: relative;
	padding: 0.85rem;
	background: #fff;
}

.map-frame {
	width: 100%;
	height: 30rem;
	display: block;
	border: 0;
	border-radius: 0;
	filter: saturate(0.88) contrast(1.02);
}

.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.pill-list span {
	position: relative;
	overflow: hidden;
	z-index: 0;
	isolation: isolate;
	border-radius: 0;
	padding: 0.55rem 0.85rem;
	color: var(--ink);
	background: #fff1f2;
	border: 1px solid #ffd5d8;
	font-weight: 600;
	transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pill-list span:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--secondary), var(--primary));
	opacity: 0;
	transition: opacity 0.25s ease;
	z-index: -1;
}

.pill-list span:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.24);
	transform: translateY(-4px);
	box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.22);
}

.pill-list span:hover:before {
	opacity: 1;
}

.pill-list span::selection {
	background: transparent;
}

.market-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 2rem;
}

.market-card {
	border-radius: 0;
	display: flex;
	min-height: 220px;
	padding: 1.5rem;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	background: var(--surface-strong);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.market-card:hover {
	transform: translateY(-4px);
	border-color: rgba(216, 19, 36, 0.36);
	box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
}

.market-card img {
	width: 100%;
	height: 120px;
	object-fit: contain;
	margin-bottom: 1.25rem;
}

.market-card h4 {
	color: var(--ink);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.location {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background:
		linear-gradient(90deg, rgba(216, 19, 36, 0.12), rgba(216, 19, 36, 0)),
		#081633;
	border-top: 4px solid var(--secondary);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.location h6,
.footer h4 {
	color: #fff;
	font-weight: 800;
}

.location p,
.footer p,
.bottom p {
	color: rgba(255, 255, 255, 0.78);
}

.location .row {
	row-gap: 1.5rem;
}

.location .far,
.location .fas {
	width: 72px;
	height: 72px;
	padding: 0;
	border: 2px solid rgba(216, 19, 36, 0.65);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(216, 19, 36, 0.08);
	-webkit-text-fill-color: var(--secondary);
	color: var(--secondary);
}

.location h6 {
	margin-bottom: 0.35rem;
	font-size: 1.15rem;
	letter-spacing: 0.04em;
}

.footer {
	background:
		linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)),
		var(--primary);
	border-top: 1px solid rgba(216, 19, 36, 0.35);
	position: relative;
	overflow: hidden;
}

.footer img {
	max-width: 200px;
	height: auto;
}

.footer .fas {
	color: var(--secondary);
}

.footer-instagram {
	margin-top: 2.75rem;
}

.footer-instagram .fab {
	color: #fff;
	font-size: 2.35rem;
	line-height: 1;
}

.footer-lead {
	max-width: 760px;
	margin: 1.25rem 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.05rem;
	line-height: 1.75;
}

.footer-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	max-width: 860px;
	margin-top: 1.6rem;
}

.footer-highlights div {
	min-height: 92px;
	padding: 1rem 1.1rem;
	border-left: 3px solid var(--secondary);
	background: rgba(255, 255, 255, 0.06);
}

.footer-highlights span {
	display: block;
	margin-bottom: 0.45rem;
	color: var(--secondary);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1;
}

.footer-highlights strong {
	color: #fff;
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.15;
}

.footer-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.5rem;
	padding: 0.85rem 1.4rem;
	color: #fff;
	background: var(--secondary);
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.2s ease, transform 0.2s ease;
}

.footer-cta:hover {
	color: #fff;
	background: #a90f1c;
	transform: translateY(-2px);
}

.bottom {
	font-size: 0.9rem;
}

.bottom-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.35rem;
	text-align: center;
}

.bottom-inner p {
	margin: 0;
}

.bottom-legal-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.55rem;
}

.bottom-legal-links a,
.bottom-legal-links span {
	color: rgba(255, 255, 255, 0.78);
}

.bottom-legal-links a:hover {
	color: #fff;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.navbar-toggler:focus-visible {
	outline: 3px solid rgba(255, 57, 66, 0.5);
	outline-offset: 3px;
}


/***********************/
/*     Information     */
/***********************/
.information .container-fluid .row div:first-child {
  	background-color: var(--primary);
}

.information .container-fluid .row div:last-child {
	color: #fff !important;
  	background: var(--gradient);
}

.information .container-fluid .row div:nth-child(2) {
  	background-color: var(--primary-light);
}

.information .fas {
	width: 78px;
	height: 78px;
	margin-bottom: 0.5rem;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.12);
	-webkit-text-fill-color: #fff;
	color: #fff;
}

.information h4 {
	color: #fff;
}

.information .para-light {
	color: rgba(255, 255, 255, 0.86);
	opacity: 1;
}


/******************/
/*     Button     */
/******************/
.btn {
	color: white;
	border: 0;
	border-radius: 0;
	padding: 15px 36px;
	font-family: "Teko", "Heebo", Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--gradient);
	box-shadow: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
	color: white;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.18);
	transform: translateY(-2px);
}

/* Email - Newsletter Button */
.btn-secondary {
	color: #fff;
	border: 0;
	border-radius: 0;
	padding: 15px 36px;
	background: var(--primary);
}

.btn-secondary:hover {
	color: #fff;
	padding: 15px 36px;
	background: var(--gradient);
}

/* Other Pages Button */
.btn-tertiary {
	color: #fff;
	border: 0;
	border-radius: 0;
	padding: 15px 36px;
	background: var(--secondary);
	box-shadow: none;
}

.btn-tertiary:hover {
	color: #fff;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.18);
	transform: translateY(-2px);
}


/********************/
/*     Services     */
/********************/
.services .card {
	padding: 20px;
	border-radius: 0;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--shadow);
}

.services .card:hover {
	transform: translateY(-4px);
	border-color: var(--secondary);
	background: var(--secondary);
	color: #fff;
	box-shadow: 0 28px 90px -60px rgba(15, 23, 42, 0.42);
}


/*****************/
/*     Plans     */
/*****************/
.plans .card {
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--shadow);
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 8.25rem;
	padding-bottom: 8.5rem;
}

.slider-1 .section-title {
  	text-align: center;
}

.slider-1 .h2-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.testimonial-card {
	border: 1px solid rgba(216, 19, 36, 0.3);
	border-radius: 0;
	box-shadow: var(--shadow);
	background: rgba(255, 255, 255, 0.92);
}

.slider-1 .slider-container {
  	position: relative;
}

.slider-1 .swiper-container {
	width: 86%;
	position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
  	color: var(--secondary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .card {
	border: none;
	position: relative;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 80px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	margin-bottom: 1.25rem;
}

.slider-1 .card-body {
  	padding: 0;
}

.slider-1 .testimonial-text {
  	margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: var(--ink);
}

.slider-1 .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/**********************/
/*     Newsletter     */
/**********************/
.form-control-input,
.form-control-textarea {
	width: 100%;
	appearance: none;
	border-radius: 0;
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding-left: 1.5rem;
	padding-top: 0.775rem;
	padding-bottom: 0.775rem;
	border: 1px solid var(--border);
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	z-index: 99;
	right: 20px;
	width: 52px;
	height: 52px;
	bottom: 20px;
	border: none;
	outline: none;
	display: none;
	position: fixed;
	cursor: pointer;
	border-radius: 0;
	color: #fff;
	background: var(--secondary);
	box-shadow: var(--shadow);
	transition: background 0.2s ease, transform 0.2s ease;
}

#myBtn:hover {
  	background: var(--primary);
	transform: translateY(-3px);
}

#myBtn img {
	width: 18px;
	margin-left: 0.125rem;
	margin-bottom: 0.25rem;
	filter: brightness(0) invert(1);
}


/***********************/
/*     Kontakt         */
/***********************/

.contact-div {
	border: 1px solid rgba(216, 19, 36, 0.42);
	border-radius: 0;
    background: transparent;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.contact-wrapper {
	display: flex; 
	gap: 20px;
}

/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	position: relative;
	overflow: hidden;
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(11, 33, 84, 0.72)),
		var(--primary);
}

.ex-header:before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: min(42vw, 36rem);
	height: 100%;
	background:
		radial-gradient(circle at 24% 64%, rgba(216, 19, 36, 0.34) 0 0.35rem, transparent 0.38rem),
		radial-gradient(circle at 62% 35%, rgba(255, 255, 255, 0.18) 0 0.28rem, transparent 0.31rem),
		linear-gradient(135deg, transparent 0 30%, rgba(216, 19, 36, 0.12) 30% 34%, transparent 34%),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 24px);
	clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
	pointer-events: none;
}

.ex-header h1 {
  	color: #fff;
	position: relative;
	z-index: 1;
}

.ex-header h1:after {
	content: "";
	display: block;
	width: clamp(18rem, 42vw, 42rem);
	height: 1.35rem;
	margin-top: 1.45rem;
	background:
		linear-gradient(90deg, var(--secondary) 0 5.2rem, transparent 5.2rem 6.1rem, rgba(255, 255, 255, 0.42) 6.1rem 100%);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	filter: drop-shadow(0 0.7rem 1.2rem rgba(0, 0, 0, 0.16));
}

.ex-header h1:before {
	content: "";
	position: absolute;
	left: 6.1rem;
	bottom: -1.98rem;
	width: clamp(11rem, 32vw, 34rem);
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18));
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
  	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: var(--surface);
	border-left: 4px solid var(--secondary);
}

.legal-section {
	background: var(--surface-soft);
}

.legal-content {
	max-width: 980px;
	margin: 0 auto;
	padding: 2rem;
	background: #fff;
	border-left: 4px solid var(--secondary);
	box-shadow: var(--shadow);
}

.legal-content h2,
.legal-content h3 {
	color: var(--ink);
	margin-top: 1.75rem;
	margin-bottom: 0.75rem;
}

.legal-content h2:first-child,
.legal-content h3:first-child {
	margin-top: 0;
}

.legal-content p,
.legal-content li {
	color: var(--muted-strong);
	line-height: 1.75;
}

.legal-content a {
	color: var(--secondary);
	font-weight: 700;
}

.legal-content ul {
	padding-left: 1.25rem;
}

.legal-note {
	padding: 1rem 1.15rem;
	background: #fff1f2;
	border-left: 3px solid var(--secondary);
	color: var(--ink);
	font-weight: 700;
}

.legal-table {
	width: 100%;
	margin: 1rem 0 1.5rem;
	border-collapse: collapse;
}

.legal-table th,
.legal-table td {
	padding: 0.85rem;
	border: 1px solid var(--border);
	vertical-align: top;
	color: var(--muted-strong);
}

.legal-table th {
	color: var(--ink);
	background: var(--surface-soft);
	font-weight: 800;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
  	color: var(--secondary);
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
  	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}


/*************************/
/*     Media Queries     */
/*************************/
@media only screen and (max-width: 1024px) {
	.services,
	.work,
	.testimonial,
	.about,
	.contact,
	.plans {
		height: 100%;
	}
}

@media (min-width: 992px) {
	.slider-1 .swiper-container {
		width: 92%;
	}

	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	/* Navigation */
	.navbar {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1.75rem;
		background-color: rgba(5, 11, 29, 0.72);
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: rgba(5, 11, 29, 0.96);
		box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		width: auto;
		max-height: none;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
}

@media only screen and (max-width: 540px) {
	h1 {
		font-size: 30px;
	}

	.para {
		width: 100%;
	}

	.navbar {
		padding-top: 0.45rem;
		padding-bottom: 0.45rem;
	}

	.navbar > .container {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.navbar .logo-image img {
		width: 142px;
	}

	.navbar .navbar-toggler {
		margin-right: 0;
		padding: 0.25rem;
	}

	.navbar-dark .navbar-toggler-icon {
		width: 2rem;
		height: 2rem;
	}

	.offcanvas-collapse {
		position: absolute;
		top: 100%;
		left: 1rem;
		right: 1rem;
		bottom: auto;
		width: auto;
		max-height: calc(100svh - 5.5rem);
		padding: 0.75rem 1rem 1rem;
		overflow-y: auto;
		visibility: hidden;
		opacity: 0;
		background: rgba(5, 11, 29, 0.98);
		border: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.34);
		transform: translateY(-0.75rem);
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
		z-index: 1040;
	}

	.offcanvas-collapse.open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.navbar .navbar-nav {
		gap: 0.25rem;
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		display: block;
		padding: 0.85rem 0.9rem;
	}

	.navbar .nav-item .dropdown-toggle {
		padding-right: 4rem;
	}

	.navbar .nav-item .dropdown-toggle:after {
		right: 4rem;
	}

	.navbar .nav-item .dropdown-toggle:not(.active):hover:after,
	.navbar .nav-item .dropdown-toggle:not(.active):focus:after {
		transform: scaleX(0);
	}

	.navbar .nav-item .nav-link:after {
		left: 0.9rem;
		right: 0.9rem;
		bottom: 0.35rem;
	}

	.navbar .dropdown-menu {
		margin: 0.2rem 0 0.65rem 0.9rem;
		padding: 0.35rem 0 0.35rem 0.9rem;
		border-left: 3px solid var(--secondary);
		background: rgba(255, 255, 255, 0.04);
		box-shadow: none;
	}

	.hero-content {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	.video-wrapper {
		align-items: flex-start !important;
		height: auto !important;
		min-height: 100svh !important;
		padding-top: 5.35rem;
		padding-bottom: 2.25rem;
		background-position: 56% center !important;
	}

	.video-wrapper .header {
		width: 100%;
		text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
	}

	.video-wrapper .container {
		padding-top: 1.25rem !important;
		padding-bottom: 0 !important;
	}

	.hero-content .eyebrow {
		margin-bottom: 0.75rem !important;
		font-size: 1.08rem;
		line-height: 1.15;
		letter-spacing: 0.16em;
	}

	.hero-content .headline {
		max-width: 19rem;
		font-size: clamp(2.2rem, 12vw, 3.05rem);
		line-height: 0.92;
	}

	.hero-content .para {
		max-width: 100%;
		padding-top: 0.6rem !important;
		padding-bottom: 0.45rem !important;
		font-size: 0.98rem;
		line-height: 1.55;
	}

	.hero-proof {
		gap: 0.55rem;
		margin-top: 1rem;
	}

	.hero-proof span {
		padding: 0.48rem 0.68rem;
		font-size: 0.82rem;
	}

	.hero-actions {
		gap: 0.75rem;
		margin-top: 1.25rem;
	}

	.hero-actions .btn {
		margin-top: 0 !important;
		width: 100%;
		padding: 0.8rem 1rem;
		text-align: center;
	}

	.ex-header h1:after {
		width: min(100%, 18rem);
	}

	.ex-header h1:before {
		left: 5.8rem;
		width: calc(100% - 6rem);
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.route-list,
	.route-board {
		grid-template-columns: 1fr;
	}

	.route-path {
		flex-wrap: wrap;
	}

	.export-visual,
	.export-visual img,
	.cold-visual,
	.cold-visual img {
		min-height: 280px;
	}

	.cold-visual-panel {
		align-items: flex-start;
		flex-direction: column;
	}

	.map-card-info {
		align-items: stretch;
		flex-direction: column;
	}

	.map-frame {
		height: 22rem;
	}

	.feature-grid,
	.driver-steps,
	.content-split,
	.media-gallery,
	.fleet-gallery,
	.cold-gallery,
	.market-grid,
	.footer-highlights {
		grid-template-columns: 1fr;
	}

	.cold-gallery {
		grid-auto-rows: auto;
	}

	.cold-gallery-item,
	.cold-gallery-item-large,
	.cold-gallery-item-wide {
		grid-column: auto;
		grid-row: auto;
		min-height: 260px;
	}

	.fleet-item-large {
		grid-column: auto;
	}

	.fleet-transition-inner {
		grid-template-columns: 1fr;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.contact-wrapper {
		flex-direction: column;
	}

	.contact-channel-grid {
		grid-template-columns: 1fr;
	}

	.career-floating-actions {
		right: 1rem;
		bottom: 5rem;
	}

	.whatsapp-float,
	.viber-float {
		padding: 0.7rem 0.85rem;
		font-size: 0.85rem;
	}

}

.gtranslate_wrapper {
	position: fixed !important;
	left: 1rem !important;
	bottom: 1rem !important;
	z-index: 9999 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 0.3rem !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.gtranslate_wrapper a,
.gtranslate_wrapper .glink {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 34px !important;
	height: 24px !important;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 3px !important;
	overflow: hidden !important;
	font-size: 0 !important;
	line-height: 1 !important;
	transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.gtranslate_wrapper a:hover,
.gtranslate_wrapper .glink:hover {
	opacity: 0.86 !important;
	transform: translateY(-1px) !important;
}

.gtranslate_wrapper img {
	display: block !important;
	width: 32px !important;
	height: 21px !important;
	margin: 0 !important;
	border-radius: 2px !important;
	object-fit: cover !important;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) !important;
}
