/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Stop horizontal scroll on mobile */
html, body, #wrapper {
	max-width: 100%;
	overflow-x: hidden;
}

.running-car {
	overflow: hidden;
}

.fbox-icon {
	text-align: center;
}

.fbox-icon a {
	width: 70px;
	height: 70px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 45%), linear-gradient(135deg, #0b1f4d, #0c132a);
	color: #f4d372;
	border: 1px solid rgba(255,255,255,0.15);
	box-shadow: 0 10px 20px rgba(0,0,0,0.28);
	line-height: 1;
	text-align: center;
}

.fbox-icon a i {
	font-size: 28px;
	color: #f4d372 !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

/* Adjust wheel position for new car image */
.running-car img.wheel {
	left: 405px;
	transform: none;
	bottom: -8px;
	width: 130px;
	height: 130px;
}

@media (max-width: 991px) {
	.running-car img.wheel {
		left: 285px;
		transform: none;
		bottom: -6px;
		width: 105px;
		height: 105px;
	}
}

@media (max-width: 767px) {
	.running-car img.wheel {
		left: 205px;
		transform: none;
		bottom: -6px;
		width: 90px;
		height: 90px;
	}
}

@media (max-width: 575px) {
	.running-car img.wheel {
		left: 170px;
		transform: none;
		bottom: -6px;
		width: 80px;
		height: 80px;
	}
}

.transport-grid .transport-card {
	position: relative;
	min-height: 200px;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	box-shadow: 0 18px 38px rgba(0,0,0,0.28);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.transport-grid .transport-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.78) 100%);
}

.transport-grid .transport-card img,
.transport-grid .transport-card {
	display: block;
}

.transport-grid .transport-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 46px rgba(0,0,0,0.38);
}

.transport-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 8px;
	padding: 18px;
	color: #fff;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
}

.transport-overlay h4 {
	margin: 0;
	color: #f4d372;
	font-size: 19px;
	font-weight: 800;
}

.transport-overlay p {
	margin: 0;
	color: #e8ecff;
	line-height: 1.5;
}

.transport-section {
	max-width: 100%;
	padding: 32px 0;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: none;
}

.transport-heading {
	color: #0b1f4d;
	font-weight: 800;
}

.transport-subtext {
	color: #1f2a3d;
}

.transport-cta {
	padding: 4px 10px;
	font-size: 11px;
	min-width: 100px;
	text-align: center;
	border-color: #d4af37 !important;
	color: #f8e3a1 !important;
	background: linear-gradient(135deg, rgba(212,175,55,0.35), rgba(244,211,114,0.22));
	box-shadow: 0 8px 20px rgba(0,0,0,0.18), 0 0 14px rgba(244,211,114,0.45);
	border-radius: 999px;
}

.transport-cta:hover {
	background: linear-gradient(135deg, #f4d372, #d4af37) !important;
	color: #0b1f4d !important;
	box-shadow: 0 10px 22px rgba(0,0,0,0.22), 0 0 16px rgba(244,211,114,0.6);
}

.transport-cta-light {
	border-color: #f4d372 !important;
	color: #f8e3a1 !important;
	background: rgba(244,211,114,0.12);
}

.transport-cta-light:hover {
	background: #f4d372 !important;
	color: #0b1f4d !important;
}

.whatsapp-floating {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 999;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	background: linear-gradient(135deg, #25d366, #128c7e);
	color: #ffffff;
	box-shadow: 0 10px 20px rgba(0,0,0,0.25);
	font-weight: 700;
}

.whatsapp-floating i {
	font-size: 22px;
}

.whatsapp-floating .wa-text {
	font-size: 13px;
}

@media (max-width: 767px) {
	.whatsapp-floating {
		padding: 10px;
		gap: 6px;
	}
	.whatsapp-floating .wa-text {
		display: none;
	}
}

/* About slider adjustments */
.about-slider .slider-inner {
	padding: 60px 0 40px;
}
.about-slider .container {
	display: flex;
	align-items: center;
}
.about-slider .row {
	width: 100%;
}

/* About page */
.about-hero {
	padding: 60px 0 40px;
	background: #f8fafc;
}

.about-title {
	font-size: 44px;
	line-height: 1.1;
	font-weight: 800;
	margin: 14px 0;
	color: #0b1f4d;
}

.about-lead {
	color: #253044;
	font-size: 17px;
	line-height: 1.7;
}

.about-photo {
	min-height: 460px;
	border-radius: 18px;
	background-size: cover;
	background-position: center;
	box-shadow: 0 24px 50px rgba(0,0,0,0.22);
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 12px;
	margin-top: 18px;
}

@media (max-width: 991px) {
	.about-photo {
		min-height: 360px;
	}
}

.about-stats .stat {
	padding: 10px 12px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(11,31,77,0.08), rgba(8,11,24,0.12));
	color: #0b1f4d;
	border: 1px solid rgba(11,31,77,0.08);
}

.about-stats .stat-value {
	display: block;
	font-size: 20px;
	font-weight: 800;
	color: #0b1f4d;
}

.about-stats .stat-label {
	color: #4a5672;
	font-size: 12px;
}

.about-grid {
	padding: 60px 0;
}

.about-card {
	background: #0b1f4d;
	color: #e7ecff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 18px 36px rgba(0,0,0,0.25);
	height: 100%;
}

.about-card h4 {
	color: #f4d372;
	margin: 8px 0;
	font-size: 20px;
}

.about-card p {
	margin: 0;
	line-height: 1.6;
	color: #d9e0ff;
}

.about-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.12);
	color: #f4d372;
	font-size: 24px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}

.promo-footer {
	background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06), transparent 35%), radial-gradient(circle at 80% 10%, rgba(255,255,255,0.08), transparent 30%), linear-gradient(135deg, #0b1f4d 0%, #0c132a 50%, #080b18 100%);
	color: #e7ecff;
	box-shadow: 0 12px 30px rgba(0,0,0,0.2);
	border: none;
	margin-top: -50px;
}

/* Footer */
.footer-modern {
	background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06), transparent 35%), radial-gradient(circle at 80% 10%, rgba(255,255,255,0.08), transparent 30%), linear-gradient(135deg, #0b1f4d 0%, #0c132a 50%, #080b18 100%);
	color: #e7ecff;
	padding-top: 60px;
}

/* Header & menu bar theme */
#header.transparent-header,
#header.transparent-header #header-wrap,
#header.sticky-header #header-wrap {
	background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06), transparent 35%), radial-gradient(circle at 80% 10%, rgba(255,255,255,0.08), transparent 30%), linear-gradient(135deg, #0b1f4d 0%, #0c132a 50%, #080b18 100%);
}

#header #header-wrap {
	box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.primary-menu .sub-menu-container {
	background: #0b1f4d;
	border-color: rgba(255,255,255,0.08);
}

.primary-menu .sub-menu-container .menu-link {
	color: #e7ecff;
}

.primary-menu .sub-menu-container .menu-link:hover {
	color: #89b4ff;
}

/* Feature cards */
.feature-box-lux {
	background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05), transparent 40%), linear-gradient(145deg, rgba(11,31,77,0.85), rgba(8,11,24,0.92));
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 20px 45px rgba(0,0,0,0.35);
	border-radius: 16px;
	padding: 24px 22px;
	height: 100%;
}

.feature-box-lux .fbox-icon a {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
	border: 1px solid rgba(255,255,255,0.12);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 18px rgba(0,0,0,0.25);
}

.feature-box-lux .fbox-icon img {
	width: 36px;
	height: 36px;
	filter: drop-shadow(0 6px 10px rgba(0,0,0,0.35));
}


.feature-box-lux .fbox-content h3 {
	color: #f4d372;
	font-size: 20px;
	margin-bottom: 10px;
}

.feature-box-lux .fbox-content p {
	color: #d9e0ff;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 0;
}

.footer-logo {
	filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}

.footer-heading {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.2px;
	margin-bottom: 14px;
	color: #ffffff;
}

.footer-tagline {
	color: #cfd6ff;
	line-height: 1.6;
	max-width: 320px;
}

.footer-contact {
	display: grid;
	gap: 12px;
	color: #dce2ff;
}

.footer-contact li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	line-height: 1.5;
}

.footer-contact .footer-line {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.footer-contact .footer-line i {
	color: #89b4ff;
	font-size: 18px;
	margin-top: 2px;
}

.service-grid {
	padding: 60px 0;
	background: linear-gradient(135deg, #0b1f4d 0%, #0e1c3a 100%);
	border: 1px solid rgba(255,255,255,0.07);
	box-shadow: 0 28px 60px rgba(0,0,0,0.35);
}

.service-card {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 14px;
	padding: 18px 16px;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(0,0,0,0.25);
	border-color: rgba(244,211,114,0.4);
}

.service-card h4 {
	color: #f4d372;
	font-size: 18px;
	margin-bottom: 8px;
}

.service-card p {
	color: #d9e0ff;
	margin-bottom: 0;
	line-height: 1.55;
	flex: 1;
}

.service-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(244,211,114,0.25), rgba(137,180,255,0.1));
	color: #f4d372;
	margin-bottom: 10px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 16px rgba(0,0,0,0.25);
}

.service-cta {
	border-color: #f4d372 !important;
	color: #f4d372 !important;
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.service-cta:hover {
	background: #f4d372 !important;
	color: #0b1f4d !important;
	box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* Mercedes Servis cards */
.mercedes-section {
	background: linear-gradient(145deg, rgba(8,11,24,0.95), rgba(11,31,77,0.9));
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 28px 60px rgba(0,0,0,0.35);
	position: relative;
	overflow: hidden;
}

.mercedes-section::before {
	content: "";
	position: absolute;
	inset: -20% 40% auto auto;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle, rgba(244,211,114,0.22), transparent 55%);
	filter: blur(4px);
	opacity: 0.7;
}

.mercedes-section::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 20%, rgba(137,180,255,0.12), transparent 35%);
	pointer-events: none;
}

.mercedes-banner {
	position: relative;
	background: linear-gradient(120deg, rgba(11,31,77,0.85), rgba(244,211,114,0.15));
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 16px;
	padding: 18px 18px 14px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 18px 36px rgba(0,0,0,0.25);
}

.mercedes-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 85% 10%, rgba(244,211,114,0.25), transparent 45%);
	opacity: 0.7;
	pointer-events: none;
}

.banner-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.mercedes-banner h3 {
	color: #f4d372;
	margin: 8px 0 4px;
}

.mercedes-banner p {
	color: #dce3ff;
	margin-bottom: 0;
}

.mercedes-hero {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 16px;
	padding: 18px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 16px 32px rgba(0,0,0,0.28);
	backdrop-filter: blur(2px);
}

.mercedes-hero h3 {
	color: #f4d372;
	margin: 10px 0;
}

.mercedes-hero p {
	color: #d9e0ff;
}

.mercedes-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.stat {
	position: relative;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.12);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 12px 24px rgba(0,0,0,0.2);
	overflow: hidden;
}

.stat::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(244,211,114,0.18), transparent 60%);
	opacity: 0.8;
	pointer-events: none;
}

.stat-value {
	display: block;
	color: #f4d372;
	font-weight: 800;
	font-size: 18px;
	line-height: 1.2;
}

.stat-label {
	color: #c7d4ff;
	font-size: 12px;
}

.mercedes-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.2);
	color: #f4d372;
	background: rgba(255,255,255,0.05);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 8px 18px rgba(0,0,0,0.25);
	margin-bottom: 8px;
	position: relative;
	overflow: hidden;
}

.mercedes-badge::after {
	content: "";
	position: absolute;
	top: 0;
	left: -30%;
	width: 40%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255,255,255,0.18), transparent 60%);
	transform: skewX(-20deg);
}

.mercedes-icon {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(137,180,255,0.25), rgba(244,211,114,0.15));
	color: #f4d372;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 18px rgba(0,0,0,0.25);
	font-size: 24px;
}

.mercedes-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	padding: 16px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	position: relative;
	overflow: hidden;
}

.mercedes-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.28);
	border-color: rgba(137,180,255,0.4);
}

.mercedes-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 20%, rgba(244,211,114,0.08), transparent 50%);
	opacity: 0.9;
	pointer-events: none;
}

.mercedes-card h4 {
	color: #f4d372;
	margin-bottom: 4px;
}

.mercedes-card p {
	color: #d9e0ff;
	margin: 0;
	line-height: 1.55;
}

.mercedes-timeline {
	position: relative;
	padding: 12px 0;
}

.timeline-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: linear-gradient(180deg, rgba(244,211,114,0.6), rgba(137,180,255,0.6));
	opacity: 0.5;
}

.timeline-item {
	position: relative;
	margin: 0 0 26px;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-item .timeline-dot {
	position: absolute;
	left: 50%;
	top: 12px;
	transform: translateX(-50%);
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #f4d372;
	box-shadow: 0 0 0 6px rgba(244,211,114,0.12), 0 10px 20px rgba(0,0,0,0.25);
	z-index: 2;
}

.timeline-item.left {
	display: flex;
	justify-content: flex-start;
	padding-right: 45%;
}

.timeline-item.right {
	display: flex;
	justify-content: flex-end;
	padding-left: 45%;
}

.timeline-item .mercedes-card {
	max-width: 55%;
}

@media (max-width: 991px) {
	.timeline-line {
		left: 18px;
	}
	.timeline-item {
		padding-left: 46px !important;
		padding-right: 0 !important;
	}
	.timeline-item .mercedes-card {
		max-width: 100%;
	}
	.timeline-item .timeline-dot {
		left: 18px;
	}
}

.mercedes-grid h4 {
	color: #f4d372;
	margin-bottom: 4px;
}

.mercedes-grid p {
	color: #d9e0ff;
	margin: 0;
	line-height: 1.55;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(244,211,114,0.12);
	color: #f4d372;
	border: 1px solid rgba(244,211,114,0.35);
	font-size: 13px;
}

.footer-contact .label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #8fa2d8;
}

.footer-contact .value {
	display: inline-block;
	color: #e7ecff;
}

.footer-contact a.value:hover {
	color: #89b4ff;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	margin-top: 10px;
}

.footer-links a {
	color: #cfd6ff;
	font-weight: 600;
}

.footer-links a:hover {
	color: #89b4ff;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}

.footer-social .social-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.08);
	color: #e7ecff;
	box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.footer-social .social-icon:hover {
	background: #cfd6ff;
	color: #0b1f4d;
}

.footer-cta {
	margin-top: 12px;
	border-color: #cfd6ff !important;
	color: #ffffff !important;
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.footer-cta:hover {
	background: #cfd6ff !important;
	color: #0b1f4d !important;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	margin-top: 40px;
	padding: 18px 0 26px;
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	color: #99a6d5;
	font-size: 14px;
}

.footer-badge {
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	color: #e7ecff;
	font-weight: 700;
	letter-spacing: 0.3px;
}

@media (max-width: 991px) {
	.footer-modern {
		padding-top: 40px;
	}
	.footer-bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}




/* Vision & Mission */
.vm-card {background:#0b1f4d;color:#e7ecff;border-radius:16px;padding:20px;box-shadow:0 18px 36px rgba(0,0,0,0.25);height:100%;}
.vm-card h3 {color:#f4d372;margin:8px 0;font-size:22px;}
.vm-card p {color:#d9e0ff;line-height:1.6;}
.vm-list {padding-left:18px;color:#cfd6ff;line-height:1.5;}
.vm-list li {margin-bottom:6px;}
.vm-highlight {background:#ffffff;border:1px solid rgba(11,31,77,0.08);border-radius:14px;padding:16px;box-shadow:0 10px 24px rgba(0,0,0,0.12);height:100%; text-align:left;}
.vm-highlight h4 {color:#0b1f4d;margin:6px 0;}
.vm-highlight p {color:#4a5672;line-height:1.5;}
.vm-icon {width:44px;height:44px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;background:linear-gradient(135deg, rgba(244,211,114,0.2), rgba(137,180,255,0.15));color:#0b1f4d;font-size:20px;}

.vm-panel {
	background:#0b1f4d;
	color:#e7ecff;
	border-radius:16px;
	padding:20px;
	box-shadow:0 18px 36px rgba(0,0,0,0.25);
	height:100%;
}
.vm-panel h3 {
	color:#f4d372;
	margin:8px 0;
	font-size:22px;
}
.vm-panel p {
	color:#d9e0ff;
	line-height:1.6;
}

.vm-hero {
	padding:40px 0 20px;
	background:#f8fafc;
}
.vm-title {
	font-size:32px;
	color:#0b1f4d;
	font-weight:800;
}
.vm-subtext {
	color:#2d3850;
	margin-top:10px;
}

/* Vision/Mission feature layout */
.vm-feature {
	padding: 40px 0;
	background: #ffffff;
}

.vm-headline {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 800;
	color: #0b1f4d;
	margin-bottom: 10px;
}

.vm-copy {
	color: #2d3850;
	line-height: 1.7;
	margin-bottom: 12px;
}

.vm-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #0b53ff;
	font-weight: 700;
}

.vm-link::after {
	content: "›";
	font-size: 16px;
	transition: transform 0.2s ease;
}

.vm-link:hover::after {
	transform: translateX(3px);
}

.vm-device img {
	width: 100%;
	height: auto;
	display: block;
}

.personel-feature {
	padding: 50px 0;
	background: #ffffff;
}

.personel-title {
	font-size: 32px;
	font-weight: 800;
	color: #0b1f4d;
	margin-bottom: 10px;
}

.personel-copy {
	color: #2d3850;
	line-height: 1.7;
	margin-bottom: 12px;
}

.personel-image {
	max-width: 520px;
}


.vm-divider {
	margin: 0;
	border: 0;
	border-top: 1px solid rgba(0,0,0,0.06);
}


/* Personel Tasimaciligi */
.personel-hero {
	padding: 60px 0;
	background: #ffffff;
}
.personel-hero .container {
	padding-left: 0;
	padding-right: 0;
	max-width: 1260px;
}
.personel-title {
	font-size: 34px;
	line-height: 1.2;
	font-weight: 800;
	color: #0b1f4d;
	margin-bottom: 12px;
}
.personel-copy {
	color: #2d3850;
	line-height: 1.7;
	margin-bottom: 12px;
}
.personel-list {
	list-style: none;
	padding: 0;
	margin: 0;
	color: #2d3850;
}
.personel-list li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
}
.personel-list li::before {
	content: "?";
	position: absolute;
	left: 0;
	color: #0b1f4d;
}
.personel-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, #0b1f4d, #0c132a);
	color: #f8e3a1;
	border: 1px solid #0b1f4d;
	box-shadow: 0 10px 24px rgba(0,0,0,0.16);
	text-decoration: none;
}
.personel-btn-outline {
	background: #ffffff;
	color: #0b1f4d;
	border-color: #0b1f4d;
}
.personel-btn:hover {
	text-decoration: none;
	opacity: 0.92;
}
.personel-btn-outline:hover {
	background: #0b1f4d;
	color: #ffffff;
}
.personel-hero-image {
	max-width: 520px;
	border-radius: 16px;
	box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.personel-grid {
	padding: 50px 0;
	background: #f8fafc;
}
.personel-card {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 14px;
	padding: 16px;
	box-shadow: 0 12px 28px rgba(0,0,0,0.08);
	height: 100%;
}
.personel-card h4 {
	color: #0b1f4d;
	margin: 8px 0;
	font-size: 18px;
	font-weight: 800;
}
.personel-card p {
	margin: 0;
	color: #2d3850;
	line-height: 1.6;
}
.personel-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(244,211,114,0.2), rgba(137,180,255,0.15));
	color: #0b1f4d;
	font-size: 20px;
}


.side-menu {
	background: linear-gradient(135deg, #0b1f4d 0%, #0c132a 60%, #080b18 100%);
	padding: 16px;
	border-radius: 14px;
	box-shadow: 0 14px 28px rgba(0,0,0,0.2);
	margin-left: -40px;
}
.side-menu ul {list-style: none; margin: 0; padding: 0;}
.side-menu li + li {margin-top: 12px;}
.side-menu a {
	color: #e7ecff;
	font-weight: 700;
	text-decoration: none;
	display: block;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.side-menu a:hover {
	background: rgba(255,255,255,0.12);
	color: #f4d372;
}

.personel-hero .row {
	align-items: center;
}


/* Bakim page */
.service-hero {
	padding: 60px 0;
	background: #ffffff;
}
.service-title {
	font-size: 34px;
	line-height: 1.2;
	font-weight: 800;
	color: #0b1f4d;
	margin-bottom: 12px;
}
.service-copy {
	color: #2d3850;
	line-height: 1.7;
	margin-bottom: 12px;
}
.service-list {
	list-style: none;
	padding: 0;
	margin: 0;
	color: #2d3850;
}
.service-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}
.service-bullet-icon {
	width: 28px;
	height: 28px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(244,211,114,0.25), rgba(137,180,255,0.2));
	color: #0b1f4d;
	font-size: 14px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
	flex-shrink: 0;
}
.service-bullet-text {flex: 1;}
.service-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, #0b1f4d, #0c132a);
	color: #f8e3a1;
	border: 1px solid #0b1f4d;
	box-shadow: 0 10px 24px rgba(0,0,0,0.16);
	text-decoration: none;
}
.service-btn-outline {
	background: #ffffff;
	color: #0b1f4d;
	border-color: #0b1f4d;
}
.service-btn:hover {opacity: 0.92; text-decoration: none;}
.service-btn-outline:hover {background: #0b1f4d; color: #ffffff;}
.service-hero-image {max-width: 520px; border-radius: 16px; box-shadow: 0 18px 40px rgba(0,0,0,0.18);}
@media (max-width: 767px) {
	.service-hero-image {
		max-width: 100%;
	}
}

/* Contact page */
.contact-hero {
	padding: 70px 0;
	background: #ffffff;
}

/* Gallery */
.gallery-section {
	padding: 60px 0;
	background: #ffffff;
}
.gallery-title {
	font-size: 32px;
	font-weight: 800;
	color: #0b1f4d;
	margin-bottom: 6px;
}
.gallery-subtext {
	color: #2d3850;
	margin: 0;
}
.gallery-card {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.14);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gallery-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 48px rgba(0,0,0,0.16);
}
.gallery-card button,
.gallery-card img {
	cursor: zoom-in;
}
.gallery-modal {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.82);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
}
.gallery-modal.show {display: flex;}
.gallery-modal img {
	max-width: 90vw;
	max-height: 90vh;
	border-radius: 14px;
	box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.gallery-modal-close {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.15);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.gallery-modal-close:hover {background: rgba(255,255,255,0.25);}
.contact-title {
	font-size: 34px;
	line-height: 1.2;
	font-weight: 800;
	color: #0b1f4d;
	margin-bottom: 12px;
}
.contact-copy {
	color: #2d3850;
	line-height: 1.7;
	margin-bottom: 18px;
}
.contact-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.contact-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(244,211,114,0.15), rgba(137,180,255,0.18));
	color: #0b1f4d;
	font-weight: 700;
	font-size: 13px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}
.contact-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	border: 1px solid rgba(11,31,77,0.12);
	color: #0b1f4d;
	background: #ffffff;
	box-shadow: 0 12px 24px rgba(0,0,0,0.08);
	transition: all 0.2s ease;
}
.contact-cta-primary {
	background: linear-gradient(135deg, #0b1f4d, #0e1c3a);
	color: #f4d372;
	border-color: #0b1f4d;
}
.contact-cta-ghost:hover {background: rgba(11,31,77,0.05);}
.contact-cta-primary:hover {opacity: 0.95;}
.contact-card {
	background: linear-gradient(135deg, #0b1f4d, #0e1c3a);
	border-radius: 18px;
	padding: 18px;
	box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}
.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-list li:last-child {border-bottom: none;}
.contact-icon {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(244,211,114,0.2);
	color: #f4d372;
	font-size: 18px;
	flex-shrink: 0;
}
.contact-label {
	color: #f4d372;
	font-weight: 700;
	line-height: 1.3;
}
.contact-text {
	color: #e8eeff;
	line-height: 1.5;
	text-decoration: none;
}
.contact-text a {color: #e8eeff; text-decoration: none;}
.contact-text a:hover {color: #f4d372;}
.map-embed {
	border-radius: 18px;
	overflow: hidden;
	height: 520px;
	background: #f7f9fc;
	box-shadow: 0 22px 44px rgba(0,0,0,0.14);
}
.map-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
}
@media (max-width: 767px) {
	.contact-hero {
		padding: 50px 0;
	}
	.contact-card {margin-top: 14px;}
	.map-embed {height: 360px;}
}
