:root {
	--bg: #0b0f19;
	--panel: #131a29;
	--text: #f5f7fb;
	--muted: #b8c0d4;
	--gold: #d4af37;
	--gold-dark: #b89328;
	--border: rgba(255, 255, 255, 0.08);
	--shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Poppins", sans-serif;
	background: linear-gradient(180deg, #0b0f19 0%, #111827 100%);
	color: var(--text);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

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

.navbar {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.2rem 6vw;
	background: rgba(11, 15, 25, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}

.logo {
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--gold);
}

nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

nav a {
	color: var(--muted);
	transition: color 0.2s ease;
}

nav a:hover,
nav a:focus-visible {
	color: var(--gold);
}

.hero,
.services,
.cars,
.contact-section,
footer {
	padding: 5rem 6vw;
}

.hero {
	min-height: calc(100vh - 80px);
	display: grid;
	align-items: center;
	background:
		linear-gradient(rgba(11, 15, 25, 0.72), rgba(11, 15, 25, 0.86)),
		url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.hero-content {
	max-width: 720px;
}

.hero h1 {
	font-size: clamp(2.4rem, 5vw, 4.5rem);
	line-height: 1.1;
	margin-bottom: 1rem;
}

.hero h1 span,
.services h2,
.cars h2 {
	color: var(--gold);
}

.hero p {
	max-width: 60ch;
	color: var(--muted);
	margin-bottom: 2rem;
}

.buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 0.9rem 1.4rem;
	border-radius: 999px;
	font-weight: 600;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-2px);
}

.btn.gold {
	background: var(--gold);
	color: #111;
}

.btn.gold:hover,
.btn.gold:focus-visible {
	background: var(--gold-dark);
}

.btn.outline {
	border: 1px solid var(--gold);
	color: var(--gold);
}

.btn.outline:hover,
.btn.outline:focus-visible {
	background: rgba(212, 175, 55, 0.12);
}

.services,
.cars,
.contact-section {
	background: transparent;
}

.services h2,
.cars h2,
.contact-section h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	margin-bottom: 2rem;
}

.contact-section {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2rem;
	align-items: start;
}

.eyebrow {
	display: inline-block;
	margin-bottom: 0.9rem;
	padding: 0.35rem 0.75rem;
	border: 1px solid rgba(212, 175, 55, 0.32);
	border-radius: 999px;
	color: var(--gold);
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.contact-copy p:last-child {
	color: var(--muted);
	max-width: 56ch;
}

.contact-card {
	background: linear-gradient(180deg, rgba(19, 26, 41, 0.98), rgba(13, 18, 29, 0.98));
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 1.75rem;
	box-shadow: var(--shadow);
	display: grid;
	gap: 1rem;
}

.contact-item {
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
}

.contact-item span {
	display: block;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gold);
	margin-bottom: 0.35rem;
}

.contact-item a,
.contact-item p {
	font-size: 1rem;
	color: var(--text);
	word-break: break-word;
}

.contact-item a:hover,
.contact-item a:focus-visible {
	color: var(--gold);
}

.contact-actions {
	margin-top: 0.5rem;
}

.service-grid,
.car-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.catalog-cta {
	margin-top: 2rem;
	justify-content: center;
}

.card,
.car {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 1.5rem;
	box-shadow: var(--shadow);
}

.card h3,
.car h3 {
	margin-bottom: 0.75rem;
}

.card p,
.car p {
	color: var(--muted);
}

.car {
	overflow: hidden;
	padding: 0;
}

.car img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.car h3,
.car p {
	padding-inline: 1.5rem;
}

.car h3 {
	padding-top: 1.2rem;
}

.car p {
	padding-bottom: 1.5rem;
}

footer {
	border-top: 1px solid var(--border);
	text-align: center;
	color: var(--muted);
}

.footer-content {
	max-width: 720px;
	margin: 0 auto;
	display: grid;
	gap: 0.6rem;
}

.footer-brand {
	color: var(--gold);
	font-weight: 700;
	font-size: 1.1rem;
}

.footer-text {
	color: var(--muted);
}

.footer-copy {
	font-size: 0.95rem;
}

.whatsapp-float {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 50;
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.85rem 1.15rem;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 22px 46px rgba(37, 211, 102, 0.34);
}

.whatsapp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	font-size: 1rem;
}

@media (max-width: 768px) {
	.whatsapp-float {
		right: 1rem;
		bottom: 1rem;
		padding: 0.8rem 1rem;
	}

	.whatsapp-text {
		display: none;
	}
	}

body.menu-open {
	overflow: hidden;
}

@media (max-width: 768px) {
	.navbar {
		flex-direction: column;
		align-items: flex-start;
	}

	nav {
		width: 100%;
	}

	.hero,
	.services,
	.cars,
	.contact-section,
	footer {
		padding: 4rem 1.25rem;
	}

	.hero {
		min-height: auto;
		padding-top: 6rem;
		padding-bottom: 6rem;
	}

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