body {
	margin: 0;
	font-family: "Manrope", "Segoe UI", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at 15% 20%, rgba(9, 190, 255, 0.18), transparent 40%),
		radial-gradient(circle at 85% 10%, rgba(255, 95, 0, 0.16), transparent 35%),
		linear-gradient(180deg, #fff6e9 0%, #ffffff 58%, #fff3f2 100%);
}

:root {
	--sunrise: #ff6f00;
	--amber: #ffc20e;
	--teal: #00b5d8;
	--coral: #ff3d6e;
	--ink: #12253f;
	--soft-ink: #4f607a;
	--paper: #ffffff;
	--paper-soft: #fffaf3;
	--line: #e6ebf3;
	--mint: #22c55e;
	--hero-mask: rgba(7, 16, 30, 0.54);
}

#wrap {
	transition: all 0.3s ease;
}

header {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(18, 37, 63, 0.08);
}

.logo img {
	width: 251px;
}

.background-blur {
	color: var(--sunrise);
}

.primary-gradient {
	background: linear-gradient(92deg, var(--sunrise) 0%, var(--coral) 45%, var(--teal) 100%);
}

.primary-gradient2 {
	background: linear-gradient(135deg, #ff7a00 0%, #ff3d6e 50%, #00b5d8 100%);
}

.navbar-nav .nav-link {
	color: var(--ink);
	font-weight: 700;
	letter-spacing: 0.02em;
}

.navbar-nav .nav-link:hover {
	color: var(--coral);
}

.navbar-toggler {
	border: none;
	box-shadow: none !important;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(18,37,63,0.88)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.25' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.btn-primary {
	background: linear-gradient(135deg, var(--coral), var(--sunrise));
	padding: 10px 22px;
	border: none;
	font-weight: 700;
}

.btn-primary:hover {
	opacity: 0.95;
}

.btn-primary svg {
	margin-top: 3px;
}

.hover-underline {
	text-decoration: none;
}

.hover-underline:hover {
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
.fw-900 {
	font-family: "Cinzel", Georgia, serif;
	font-weight: 800;
	color: var(--ink);
}

.fs-1 {
	font-weight: 800;
}

.top-contact {
	font-weight: 600;
}

.radio-number a {
	transition: 0.25s;
}

.radio-number a:hover {
	background-color: #ffffff;
	color: var(--ink);
	transform: translateY(-4px);
	box-shadow: 0 0.7rem 1.2rem rgba(18, 37, 63, 0.22) !important;
}

.hero {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #ffffff;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../images/car-bg.jpg") center center / cover no-repeat;
	transform: scale(1.08);
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(var(--hero-mask), rgba(11, 22, 40, 0.78)),
		radial-gradient(circle at top right, rgba(255, 111, 0, 0.34), transparent 44%),
		radial-gradient(circle at bottom left, rgba(0, 181, 216, 0.3), transparent 52%);
}

.hero-content {
	position: relative;
	z-index: 5;
	animation: rise 0.7s ease-out;
}

.badge-live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 50px;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 15px 35px rgba(255, 61, 110, 0.3);
	margin-bottom: 25px;
}

.hero h1 {
	font-size: clamp(2.65rem, 6vw, 4.7rem);
	line-height: 1.06;
	margin-bottom: 24px;
	color: #ffffff;
}

.gradient-text {
	background: linear-gradient(95deg, var(--amber), #ffd9a1 28%, #7bf8ff 58%, var(--teal) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero p {
	color: #f7f9ff;
	font-size: 1.12rem;
	line-height: 1.8;
	max-width: 720px;
	margin: auto;
}

.cta {
	margin-top: 40px;
}

.btn-call {
	background: linear-gradient(95deg, var(--sunrise), var(--coral));
	border: none;
	color: #fff;
	padding: 18px 42px;
	border-radius: 70px;
	font-size: 1.2rem;
	font-weight: 800;
	box-shadow: 0 20px 45px rgba(255, 61, 110, 0.35);
	transition: 0.35s;
}

.btn-call:hover {
	transform: translateY(-4px);
	color: #fff;
}

.status {
	margin-top: 18px;
	color: #ffffff;
	font-weight: 600;
}

.status span {
	width: 10px;
	height: 10px;
	display: inline-block;
	background: var(--mint);
	border-radius: 50%;
	margin-right: 8px;
	box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

.feature-box {
	margin-top: 70px;
	background: rgba(255, 255, 255, 0.09);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 24px;
	padding: 35px;
}

.feature-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto auto 15px;
	background: linear-gradient(135deg, var(--sunrise), var(--teal));
	color: #ffffff;
	font-size: 1.6rem;
}

.feature-box h5 {
	font-family: "Manrope", "Segoe UI", sans-serif;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 8px;
}

.feature-box p {
	font-size: 0.95rem;
	color: #e6f2ff;
	margin-bottom: 0;
}

.feature-box h3 {
	color: #ffffff;
	margin-bottom: 4px;
}

.feature-box small {
	color: #d9eaff !important;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.services {
	padding: 90px 0;
}

.services .card,
.contact .card {
	border: 1px solid var(--line);
	border-radius: 20px;
	background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
	box-shadow: 0 14px 30px rgba(18, 37, 63, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services .card:hover,
.contact .card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 36px rgba(18, 37, 63, 0.18) !important;
}

.services .feature-icon {
	width: 50px;
	height: 50px;
	color: #fff;
	background: linear-gradient(135deg, var(--teal), var(--sunrise));
}

.services .row .col-md-3:nth-child(even) .feature-icon {
	background: linear-gradient(135deg, var(--coral), var(--amber));
}

.services p,
.why-us p,
.contact p,
small,
.text-secondary {
	color: var(--soft-ink) !important;
}

.why-us {
	padding: 90px 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 247, 240, 0.9)),
		radial-gradient(circle at 18% 25%, rgba(255, 194, 14, 0.22), transparent 48%),
		radial-gradient(circle at 82% 72%, rgba(0, 181, 216, 0.2), transparent 45%);
}

.why-us .feature-icon {
	width: 32px;
	height: 32px;
	color: #fff;
	margin: 0 8px 0 0;
	display: inline-flex;
	background: linear-gradient(135deg, var(--coral), var(--sunrise));
}

.contact {
	padding: 90px 0;
}

.contact-boxBg {
	overflow: hidden;
	box-shadow: 0 20px 45px rgba(255, 61, 110, 0.28);
}

.contact-box {
	background: linear-gradient(180deg, #ffffff 0%, #fff8f0 100%) !important;
}

.contact-box .cta {
	text-align: center;
	margin-top: 25px;
}

.contact-box .status {
	font-size: 13px;
	display: inline-block;
	padding: 4px 15px;
	color: #137333;
	margin: 0 auto;
	background-color: rgba(34, 197, 94, 0.14);
}

footer {
	background: #fff5e9;
	border-color: rgba(18, 37, 63, 0.1) !important;
}

@keyframes rise {
	from {
		transform: translateY(28px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Responsive */
@media (max-width: 991px) {
	.top-contact .row > div {
		text-align: center;
	}

	.navbar {
		gap: 10px;
	}

	.navbar-collapse {
		border-top: 1px solid rgba(18, 37, 63, 0.08);
		margin-top: 10px;
		padding-top: 10px;
	}

	.navbar-nav {
		gap: 6px;
	}

	.btn-primary.rounded-pill {
		width: 100%;
		justify-content: center;
		order: 3;
	}
}

@media (max-width: 767px) {
	.hero {
		min-height: auto;
		padding: 88px 18px;
	}

	.feature-box {
		padding: 24px 14px;
		margin-top: 42px;
	}

	.hero h1 {
		font-size: 2.25rem;
	}

	.btn-call {
		width: 100%;
		font-size: 1rem;
		padding: 15px 16px;
	}

	.why-us,
	.services,
	.contact {
		padding: 56px 0;
	}

	.top-contact {
		font-size: 13px;
	}

	.top-contact .col-6 {
		width: 100%;
		text-align: center;
		margin-bottom: 4px;
	}

	.logo img {
		width: 195px;
	}
}

@media (max-width: 576px) {
	.services h2,
	.contact h2,
	.why-us h2 {
		font-size: 1.8rem;
	}
}



