/* Root tokens */
:root {
	--clr-bg: #000000;
	--clr-primary: #FF3F3C;
	--clr-text: #FFF;
	--transition: 0.3s ease;
	--header-height: 56px;
}

@media (min-width: 992px) {
	:root {
		--header-height: 100px;
	}
}

/* Basic reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: var(--clr-bg);
	color: var(--clr-text);
	line-height: 1.5;
}

@media (max-width: 768px) {
	body {
		font-size: 16px;
		line-height: 1.6;
	}
}

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

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

/* Utilities */
.container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 20px;
}

@media (max-width: 768px) {
	.container {
		padding-inline: 16px;
	}
}

.btn {
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	transition: var(--transition);
	font-family: 'Montserrat', sans-serif;
}

.btn--primary {
	background: var(--clr-primary);
	color: #FFF6F6;
}

.btn--primary:hover {
	filter: brightness(1.1);
}

.lock-scroll {
	overflow: hidden;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--clr-bg);
	height: var(--header-height);
	z-index: 1000;
}

.header__inner {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	height: 40px;
}

.nav {
	display: none;
	gap: 2rem;
}

/* Navigation */
.nav a {
	transition: var(--transition);
	font-weight: 700;
	font-size: 16px;
	color: #FFFFFF;
}

.nav a:hover,
.nav a:focus {
	color: var(--clr-primary);
}

.header__right {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.header__phones {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.header__phones-list {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.header__phone {
	white-space: nowrap;
	font-weight: 600;
	font-size: 14px;
	transition: var(--transition);
	text-decoration: none;
	color: inherit;
}

.header__phone:hover {
	color: var(--clr-primary);
}

.header__cta {
	display: inline-block;
}

.phone-icon {
	width: 1.5rem;
	height: 1.5rem;
}

.burger {
	background: none;
	border: 0;
	width: 34px;
	height: 18px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 0;
	position: relative;
	z-index: 1001;
}

.burger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--clr-text);
	transition: var(--transition);
	transform-origin: center;
}

.burger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
	opacity: 0;
}

.burger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile header styles */
@media (max-width: 992px) {
	.header {
		height: 56px;
	}

	.header__phones {
		display: flex;
		gap: 0.25rem;
	}
	
	.header__phones-list {
		gap: auto;
	}
	
	.header__phone {
		font-size: 12px;
		min-height: auto;
		white-space: nowrap;
		line-height: 1.2;
	}

	.header__cta {
		display: none;
	}

	.header__right {
		justify-content: flex-end;
	}

	.logo img {
		height: 36px;
	}

	.burger {
		display: flex;
	}
}

@media (min-width: 992px) {
	.nav {
		display: flex;
	}

	.logo img {
		height: 46px;
	}

	.btn {
		display: inline-block;
		font-weight: 600;
	}

	.burger {
		display: none;
	}

	.header__phones {
		display: flex;
	}

	.header__cta {
		display: inline-block;
	}
}

/* Mobile menu */
.mobile-menu {
	background: var(--clr-bg);
	overflow: hidden;
	max-height: 0;
	transition: max-height var(--transition);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
	max-height: 450px;
}

.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 1rem 1rem 0.5rem;
}

.mobile-menu__nav a {
	display: block;
	padding: 1rem 0;
	font-weight: 600;
	transition: var(--transition);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-decoration: none;
}

.mobile-menu__nav a:last-child {
	border-bottom: none;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus {
	color: var(--clr-primary);
	padding-left: 0.5rem;
}

.mobile-menu__phones {
	display: flex;
	align-items: center;
}

.mobile-menu__phones-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
}

.mobile-menu__phone {
	min-height: auto;
	font-weight: 600;
	transition: var(--transition);
	text-decoration: none;
	color: inherit;
}

.mobile-menu__phone:hover {
	color: var(--clr-primary);
}

.mobile-menu__phone .phone-icon {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

.mobile-menu__cta {
	width: calc(100% - 2rem);
	margin: 1rem 1rem 1.5rem;
	padding: 16px 24px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	min-height: 48px;
	background: var(--clr-primary);
	color: var(--clr-text);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
	box-shadow: 0 4px 12px rgba(255, 63, 60, 0.3);
}

.mobile-menu__cta:hover,
.mobile-menu__cta:focus {
	filter: brightness(1.1);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 63, 60, 0.4);
}

/* Hero section */
.hero {
	position: relative;
	min-height: calc(100vh - var(--header-height));
	margin-top: var(--header-height);
	display: flex;
	align-items: flex-start;
	color: var(--clr-text);
	overflow: hidden;
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 2rem;
	position: relative;
	width: 100%;
	z-index: 1;
	padding-top: 2rem;
}

.hero__text h1 {
	font-size: 60px;
	margin-bottom: 1rem;
	line-height: 1.2;
	font-weight: 700;
	color: #F3F3F3;
}

.hero__subtitle {
	font-size: 22px;
	margin-bottom: 1.5rem;
	font-weight: 700;
	color: #FFFFFF;
}

.hero__image {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.hero {
		min-height: 80vh;
	}

	.hero__content {
		padding-top: 4rem;
		gap: 1.5rem;
	}

	.hero__text h1 {
		font-size: 36px;
		margin-bottom: 0.75rem;
		font-weight: 700;
		color: #F3F3F3;
	}

	.hero__subtitle {
		font-size: 18px;
		margin-bottom: 1.25rem;
		font-weight: 700;
		color: #FFFFFF;
	}

	.btn {
		padding: 14px 28px;
		font-size: 16px;
		min-width: 200px;
		font-weight: 700;
		color: #FFF6F6;
	}
}

@media (min-width: 768px) {
	.hero__content {
		flex-direction: row;
		margin-top: 100px;
		text-align: left;
		justify-content: space-between;
		align-items: center;
		padding-top: 0;
	}

	.hero__image {
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		width: 100%;
		height: 100%;
	}

	.hero__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/* About section */
.about {
	padding: 60px 0 100px;
	background: var(--clr-bg);
	position: relative;
	overflow: hidden;
}

.about__content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.about__text {
	max-width: 560px;
	width: 100%;
}

.about__title {
	font-size: 48px;
	margin-bottom: 2rem;
	font-weight: 700;
	color: #F3F3F3;
}

.about__features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.about__feature {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 700;
	color: #FFFFFF;
}

.check-icon {
	flex-shrink: 0;
	margin-top: 2px;
	width: 24px;
	height: 24px;
}

.about__visual {
	width: 100%;
	max-width: 500px;
}

.about__car {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.about__car-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.about__cta {
	position: absolute;
	bottom: 200px;
	right: 13%;
	background: var(--clr-primary);
	color: var(--clr-text);
	font-size: 1rem;
	padding: 16px 32px;
	border-radius: 8px;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(255, 63, 60, 0.3);
	z-index: 3;
}

.about__cta:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 63, 60, 0.4);
}

/* About messengers component */
.about__messengers {
	position: absolute;
	bottom: 80px;
	right: 4%;
	text-align: center;
	z-index: 3;
}

.about__messengers-title {
	font-size: 16px;
	font-weight: 600;
	color: #FFFFFF;
	margin-bottom: 12px;
	line-height: 1.3;
}

.about__messengers-buttons {
	display: flex;
	gap: 8px;
	justify-content: center;
}

.about__messenger-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 0;
	border-radius: 20px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: var(--transition);
	min-width: 130px;
	justify-content: center;
}

.about__messenger-btn img {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.about__messenger-btn--viber {
	background: #7c529e;
	color: #FFFFFF;
}

.about__messenger-btn--whatsapp {
	background: #2cb742;
	color: #FFFFFF;
}

.about__messenger-btn--telegram {
	background: #0084ff;
	color: #FFFFFF;
}

.about__messenger-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
	.about {
		padding: 40px 0 60px;
	}

	.about__content {
		gap: 2rem;
	}

	.about__title {
		font-size: 32px;
		margin-bottom: 1.5rem;
		text-align: center;
		font-weight: 700;
		color: #F3F3F3;
	}

	.about__features {
		gap: 1.25rem;
	}

	.about__feature {
		font-size: 16px;
		line-height: 1.5;
		font-weight: 700;
		color: #FFFFFF;
	}

	.about__car-image {
		object-fit: cover;
	}

	.check-icon {
		width: 20px;
		height: 20px;
	}

	.about__visual {
		min-height: 300px;
	}

	.about__cta {
		position: static;
		margin-top: 2rem;
		width: 100%;
		max-width: 300px;
		text-align: center;
		padding: 14px 24px;
		font-size: 1rem;
	}

	.about__messengers {
		position: static;
		margin-top: 1.5rem;
		right: auto;
		bottom: auto;
	}

	.about__messengers-title {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.about__messengers-buttons {
		flex-direction: column;
		gap: 8px;
		max-width: 300px;
		margin: 0 auto;
	}

	.about__messenger-btn {
		min-width: auto;
		width: 100%;
		padding: 10px 16px;
		font-size: 14px;
	}

	.about__messenger-btn img {
		width: 18px;
		height: 18px;
	}
}

@media (min-width: 992px) {
	.about__content {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 4rem;
	}

	.about__text {
		flex: 1;
	}

	.about__visual {
		flex: 1;
	}

	.about__title {
		font-size: 48px;
		font-weight: 700;
		color: #F3F3F3;
	}

	.about__feature {
		font-size: 18px;
		font-weight: 700;
		color: #FFFFFF;
	}
}

/* How we work section */
.how-we-work {
	padding: 80px 0;
	background: var(--clr-bg);
	position: relative;
	overflow: hidden;
	min-height: 600px;
	display: flex;
	align-items: center;
}

.how-we-work__content {
	position: relative;
	z-index: 2;
	width: 100%;
}

.how-we-work__title {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 4rem;
	color: #F3F3F3;
}

.how-we-work__steps {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	margin-bottom: 4rem;
	flex-wrap: wrap;
}

.how-we-work__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	flex: 1;
	min-width: 120px;
}

.how-we-work__icon {
	width: 125px;
	height: 125px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
}

.how-we-work__icon img {
	width: 125px;
	height: 125px;
	filter: brightness(0) invert(1);
}

.how-we-work__label {
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	color: #FFFFFF;
	background: rgba(255, 255, 255, 0.1);
	padding: 8px 16px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	cursor: default;
}

.how-we-work__cta {
	text-align: center;
	margin-top: 2rem;
}

.how-we-work__cta .btn {
	background: var(--clr-primary);
	color: var(--clr-text);
	font-size: 1rem;
	padding: 16px 32px;
	border-radius: 8px;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(255, 63, 60, 0.3);
	transition: var(--transition);
}

.how-we-work__cta .btn:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 63, 60, 0.4);
}

.how-we-work__background {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
}

.how-we-work__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.how-we-work {
		padding: 60px 0;
		min-height: auto;
	}

	.how-we-work__title {
		font-size: 32px;
		margin-bottom: 2.5rem;
		font-weight: 700;
		color: #F3F3F3;
	}

	.how-we-work__steps {
		flex-direction: column;
		gap: 1.5rem;
		margin-bottom: 2.5rem;
	}

	.how-we-work__step {
		flex-direction: row;
		gap: 1rem;
		width: 100%;
		align-items: center;
		padding: 1rem;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 12px;
	}

	.how-we-work__icon {
		width: 80px;
		height: 80px;
		flex-shrink: 0;
	}

	.how-we-work__icon img {
		width: 80px;
		height: 80px;
	}

	.how-we-work__label {
		font-size: 16px;
		text-align: left;
		background: transparent;
		padding: 0;
		border-radius: 0;
		backdrop-filter: none;
		font-weight: 700;
		color: #FFFFFF;
	}

	.how-we-work__cta .btn {
		font-size: 1rem;
		padding: 14px 28px;
		width: 100%;
		max-width: 300px;
	}
}

/* Advantages section */
.advantages {
	padding: 20px 0;
	background: var(--clr-bg);
	position: relative;
	overflow: hidden;
	min-height: 600px;
	display: flex;
	align-items: center;
}

.advantages__background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.advantages__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.advantages__content {
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
}

.advantages__title {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 2rem;
	color: #F3F3F3;
}

.advantages__description {
	font-size: 20px;
	margin-bottom: 4rem;
	color: #FFFFFF;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
	font-weight: 400;
}

.advantages__logos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 39px;
	padding: 1rem 1rem 0.5rem;
	border: 1px solid var(--clr-text);
	max-width: 800px;
	margin: 0 auto;
}

.advantages__logo {
	display: flex;
	justify-content: center;
	min-height: 100px;
}

.advantages__logo img {
	max-width: 60%;
	max-height: 80%;
	height: 150px;
}

@media (max-width: 768px) {
	.advantages {
		padding: 60px 0;
		min-height: auto;
	}

	.advantages__title {
		font-size: 32px;
		margin-bottom: 1.5rem;
		font-weight: 700;
		color: #F3F3F3;
	}

	.advantages__description {
		font-size: 18px;
		margin-bottom: 2.5rem;
		padding: 0 1rem;
		font-weight: 400;
		color: #FFFFFF;
	}

	.advantages__logos {
		grid-template-columns: 1fr;
		padding: 1.5rem;
		border-radius: 20px;
	}

	.advantages__logo {
		min-height: 100px;
		padding: 1rem;
	}

	.advantages__logo img {
		max-width: 80%;
		height: 80px;
	}
}

/* Support section */
.support {
	padding: 80px 0;
	background: var(--clr-bg);
	position: relative;
	overflow: hidden;
	min-height: 600px;
	display: flex;
	align-items: center;
}

.support__background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.support__background img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.support__content {
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
}

.support__title {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 2rem;
	color: #F3F3F3;
}

.support__description {
	font-size: 24px;
	margin-bottom: 4rem;
	color: #FFFFFF;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
	font-weight: 400;
}

.support__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	max-width: 830px;
	margin: 0 auto;
}

.support__card {
	background: rgba(15, 15, 15, 0.5);
	border: 1px solid var(--clr-text);
	border-radius: 20px;
	padding: 1rem;
	text-align: left;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
}

.support__card-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.support__card:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-4px);
}

.support__icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.support__icon img {
	width: 100%;
	height: 100%;
	filter: brightness(0) invert(1);
}

.support__card-title {
	font-size: 18px;
	font-weight: 600;
	color: #FFFFFF;
}

.support__card-description {
	font-size: 16px;
	line-height: 1.5;
	color: #D0D0D0;
	opacity: 1;
	font-weight: 400;
}

@media (max-width: 768px) {
	.support {
		padding: 60px 0;
		min-height: auto;
	}

	.support__title {
		font-size: 32px;
		margin-bottom: 1.5rem;
		font-weight: 700;
		color: #F3F3F3;
	}

	.support__description {
		font-size: 20px;
		margin-bottom: 2.5rem;
		padding: 0 1rem;
		font-weight: 400;
		color: #FFFFFF;
	}

	.support__grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 0 0.5rem;
	}

	.support__card {
		padding: 1.25rem;
		border-radius: 15px;
	}

	.support__card-header {
		gap: 0.75rem;
		margin-bottom: 0.75rem;
	}

	.support__background img {
		object-fit: cover;
	}

	.support__icon {
		width: 48px;
		height: 48px;
	}

	.support__icon img {
		width: 48px;
		height: 48px;
	}

	.support__card-title {
		font-size: 16px;
		font-weight: 600;
		color: #FFFFFF;
	}

	.support__card-description {
		font-size: 14px;
		line-height: 1.4;
		font-weight: 400;
		color: #D0D0D0;
	}
}

/* Other services section */
.other-services {
	padding: 80px 0;
	background: var(--clr-bg);
	position: relative;
	overflow: hidden;
}

.other-services::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('/assets/images/other-services-cars.jpg') center/cover;
	opacity: 1;
	z-index: 0;
}

.other-services__content {
	width: 100%;
	position: relative;
	z-index: 1;
}

.other-services__header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 4rem;
}

.other-services__title {
	font-size: 48px;
	font-weight: 700;
	color: #F3F3F3;
	margin: 0;
}

.other-services__logo {
	height: 50px;
	flex-shrink: 0;
}

.other-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.other-services__card {
	position: relative;
	aspect-ratio: 1.8;
	width: 360px;
	height: 200px;
	border-radius: 20px;
	overflow: hidden;
	border: 2px solid var(--clr-primary);
	cursor: pointer;
	transition: var(--transition);
	justify-self: center;
	display: block;
	text-decoration: none;
	color: inherit;
}

.other-services__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(255, 63, 60, 0.3);
}

/* Unique backgrounds for each card */
.other-services__card--rent-kyiv {
	background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('/assets/images/other-services/autoKiev.png') center/cover;
}

.other-services__card--rent-lviv {
	background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('/assets/images/other-services/autoLviv.png') center/cover;
}

.other-services__card--rent-khmelnitsky {
	background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('/assets/images/other-services/autoKhmelnitsk.png') center/cover;
}

.other-services__card--buyout {
	background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('/assets/images/other-services/autovikup.png') center/cover;
}

.other-services__card--pawnshop {
	background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('/assets/images/other-services/auto-lombard.png') center/cover;
}

.other-services__card--sto-kyiv {
	background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('/assets/images/other-services/stoKiev.png') center/cover;
}

.other-services__card--sto-truck {
	background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('/assets/images/other-services/stovantag.png') center/cover;
}

.other-services__card--fuel {
	background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('/assets/images/other-services/diseloptom.png') center/cover;
}

.other-services__card--investment {
	background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('/assets/images/other-services/invest.png') center/cover;
}

.other-services__card-background {
	position: absolute;
	inset: 0;
	background: transparent;
	z-index: 1;
}

.other-services__card-content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1rem;
	z-index: 2;
}

.other-services__card-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--clr-text);
	line-height: 1.3;
}

@media (max-width: 768px) {
	.other-services {
		padding: 60px 0;
	}

	.other-services__header {
		margin-bottom: 2.5rem;
		flex-direction: column;
		gap: 1rem;
	}

	.other-services__title {
		font-size: 32px;
		font-weight: 700;
		color: #F3F3F3;
	}

	.other-services__logo {
		height: 36px;
	}

	.other-services__grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		max-width: 100%;
		padding: 0 1rem;
	}

	.other-services__card {
		width: 100%;
		max-width: 360px;
		height: 180px;
		justify-self: center;
		margin: 0 auto;
	}

	.other-services__card-content {
		padding: 0.75rem;
	}

	.other-services__card-title {
		font-size: 1rem;
		font-weight: 700;
		line-height: 1.2;
	}
}

@media (min-width: 769px) and (max-width: 1199px) {
	.other-services__grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 800px;
	}
}

/* Reviews section */
.reviews {
	padding: 80px 0;
	background: var(--clr-bg);
	position: relative;
	overflow: hidden;
}

.reviews::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('/assets/images/reviews-car.jpg') center/cover;
	opacity: 1;
	z-index: 0;
}

.reviews__content {
	width: 100%;
	position: relative;
	z-index: 1;
}

.reviews__title {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 4rem;
	color: #F3F3F3;
}

.reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.reviews__card {
	position: relative;
	background: #1C1C1C;
	border-radius: 20px;
	padding: 2rem 2rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: var(--transition);
	margin-top: 40px;
	cursor: default;
}

.reviews__card:hover {
	transform: translateY(-4px);
}

.reviews__avatar {
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--clr-bg);
}

.reviews__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reviews__info {
	margin-top: 0;
}

.reviews__name {
	font-size: 18px;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 1rem;
}

.reviews__text {
	font-size: 16px;
	line-height: 1.5;
	color: #D0D0D0;
	opacity: 1;
	font-weight: 400;
}

.reviews__rating {
	display: flex;
	gap: 0.2rem;
	justify-content: center;
	align-items: center;
}

.reviews__cta {
	text-align: center;
}

.reviews__cta .btn {
	background: var(--clr-primary);
	color: var(--clr-text);
	font-size: 1rem;
	padding: 16px 32px;
	border-radius: 8px;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(255, 63, 60, 0.3);
	transition: var(--transition);
}

.reviews__cta .btn:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 63, 60, 0.4);
}

@media (max-width: 768px) {
	.reviews {
		padding: 60px 0;
	}

	.reviews::before {
		visibility: hidden;
	}

	.reviews__title {
		font-size: 32px;
		margin-bottom: 2rem;
		font-weight: 700;
		color: #F3F3F3;
	}

	.reviews__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		margin-bottom: 2.5rem;
		padding: 0 1rem;
	}

	.reviews__card {
		padding: 2.5rem 1.25rem 1.25rem;
		margin-top: 40px;
		border-radius: 15px;
	}

	.reviews__avatar {
		width: 70px;
		height: 70px;
		top: -35px;
	}

	.reviews__name {
		font-size: 16px;
		margin-bottom: 0.75rem;
		font-weight: 700;
		color: #FFFFFF;
	}

	.reviews__text {
		font-size: 14px;
		line-height: 1.4;
		font-weight: 400;
		color: #D0D0D0;
	}

	.reviews__rating {
		margin-top: 1rem;
	}

	.reviews__cta .btn {
		font-size: 1rem;
		padding: 14px 28px;
		width: 100%;
		max-width: 300px;
	}
}

@media (min-width: 769px) and (max-width: 1199px) {
	.reviews__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Contacts section */
.contacts {
	padding: 80px 0;
	background: var(--clr-bg);
	position: relative;
	overflow: hidden;
}

.contacts::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('/assets/images/contacts-car.jpg') center/cover;
	opacity: 1;
	z-index: 0;
}

.contacts__content {
	width: 100%;
	position: relative;
	z-index: 1;
}

.contacts__title {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 4rem;
	color: #F3F3F3;
}

.contacts__wrapper {
	display: grid;
	grid-template-columns: 1fr 0.8fr;
	gap: 1rem;
	align-items: start;
}

.contacts__left-block {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contacts__top-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	align-items: start;
}

.contacts__left-column {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contacts__right-column {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}


.contacts__addresses {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.contacts__schedule-header {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.schedule-icon {
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}

.contacts__social-networks {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contacts__phones {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contacts__phones-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.contacts__phone {
	font-size: 20px;
	font-weight: 400;
	color: #FFFFFF;
	text-decoration: none;
	transition: var(--transition);
}

.contacts__phone:hover {
	color: var(--clr-primary);
}

.contacts__phone a {
	font-size: 20px;
	font-weight: 400;
	color: #FFFFFF;
	transition: var(--transition);
}

.contacts__phone a:hover {
	color: var(--clr-primary);
}

.contacts__messengers {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contacts__label {
	font-size: 20px;
	font-weight: 600;
	color: #FFFFFF;
	margin: 0;
}

.contacts__social {
	display: flex;
	gap: 1rem;
}

.contacts__social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	transition: var(--transition);
}

.contacts__social-link:hover {
	transform: scale(1.1);
}

.contacts__social-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contacts__schedule-title {
	font-size: 20px;
	font-weight: 600;
	color: #FFFFFF;
	margin-bottom: 0.5rem;
}

.contacts__schedule-item {
	font-size: 20px;
	color: #FFFFFF;
	margin: 0 0 0 55px;
	line-height: 1.4;
	font-weight: 400;
}

.contacts__address {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.location-icon {
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}

.phone-icon--contacts {
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}

.contacts__address span {
	font-size: 20px;
	font-weight: 700;
	color: #FFFFFF;
}

.contacts__map {
	width: 100%;
	height: 400px;
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contacts__map iframe {
	width: 100%;
	height: 100%;
	border: none;
}

@media (max-width: 768px) {
	.contacts {
		padding: 60px 0;
	}

	.contacts__title {
		font-size: 32px;
		margin-bottom: 2rem;
		font-weight: 700;
		color: #F3F3F3;
	}

	.contacts__wrapper {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.contacts__left-block {
		gap: 2rem;
		padding: 0 1rem;
	}

	.contacts__top-row {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contacts__left-column {
		gap: 2rem;
	}

	.contacts__right-column {
		gap: 2rem;
	}


	.contacts__addresses {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.contacts__phones {
		gap: 0.75rem;
	}

	.contacts__phones-list {
		gap: 0;
	}

	.contacts__phone {
		font-size: 20px;
		font-weight: 400;
		color: #FFFFFF;
		min-height: auto;
	}

	.contacts__phone a {
		font-size: 20px;
		font-weight: 400;
		color: #FFFFFF;
	}

	.contacts__messengers {
		gap: 1rem;
	}

	.contacts__label {
		font-size: 20px;
		margin-bottom: 0.5rem;
		font-weight: 600;
		color: #FFFFFF;
	}

	.contacts__social {
		gap: 0.75rem;
	}

	.contacts__social-link {
		width: 50px;
		height: 50px;
	}

	.contacts__schedule-title {
		font-size: 20px;
		font-weight: 600;
		color: #FFFFFF;
	}

	.contacts__schedule-item {
		font-size: 18px;
		font-weight: 400;
		color: #FFFFFF;
	}

	.contacts__address {
		gap: 0.75rem;
	}

	.contacts__address span {
		font-size: 20px;
		font-weight: 700;
		color: #FFFFFF;
	}

	.location-icon,
	.phone-icon--contacts {
		width: 40px;
		height: 40px;
	}

	.contacts__map {
		height: 280px;
		border-radius: 12px;
	}
}

/* Footer */
.footer {
	background: var(--clr-bg);
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.footer__center {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	flex: 1;
}

.footer__logo img {
	height: 40px;
}

.footer__copyright {
	font-size: 16px;
	color: #AAAAAA;
	font-weight: 400;
	margin: 0;
	text-align: center;
}

.footer__social {
	display: flex;
	gap: 0.75rem;
}

.footer__social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	transition: var(--transition);
	flex-shrink: 0;
}

.footer__social-link:hover {
	transform: scale(1.1);
}

.footer__social-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.footer {
		padding: 30px 0;
	}

	.footer__content {
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
		padding: 0 1rem;
	}

	.footer__center {
		gap: 0.75rem;
	}

	.footer__logo img {
		height: 36px;
	}

	.footer__copyright {
		font-size: 14px;
		line-height: 1.4;
		font-weight: 400;
		color: #AAAAAA;
	}

	.footer__social {
		justify-content: center;
		gap: 1rem;
	}

	.footer__social-link {
		width: 45px;
		height: 45px;
	}
}

/* General mobile improvements */
@media (max-width: 768px) {
	/* Ensure proper spacing between sections */
	section {
		margin-bottom: 0;
	}

	/* Better touch targets for all buttons */
	.btn {
		min-height: 48px;
		font-size: 1rem;
		padding: 14px 24px;
	}

	/* Improve text readability */
	h1, h2, h3, h4, h5, h6 {
		line-height: 1.3;
	}

	/* Better image optimization */
	img {
		height: auto;
	}

	/* Improve form elements and interactive elements */
	a, button {
		min-height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	/* Ensure proper spacing in text blocks */
	p {
		margin-bottom: 1rem;
	}

	/* Smooth scrolling for better UX */
	html {
		scroll-behavior: smooth;
	}

	/* Mobile header improvements */
	.header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 1000;
		background: var(--clr-bg);
		backdrop-filter: blur(10px);
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.header__inner {
		padding: 0 1rem;
	}

	/* Mobile menu improvements */
	.mobile-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(0, 0, 0, 0.95);
		backdrop-filter: blur(10px);
		z-index: 999;
	}

	/* Burger animation improvements */
	.burger {
		padding: 8px;
		margin: -8px;
	}

	.burger span {
		border-radius: 1px;
	}
}

/* Modal */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.modal.open {
	opacity: 1;
	visibility: visible;
}

.modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.modal__content {
	position: relative;
	display: flex;
	background: #FFFFFF;
	border-radius: 15px;
	overflow: hidden;
	max-width: 600px;
	width: 100%;
	max-height: 85vh;
	transform: scale(0.9);
	transition: transform 0.3s ease;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.modal.open .modal__content {
	transform: scale(1);
}

.modal__close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 24px;
	color: #FFFFFF;
	cursor: pointer;
	line-height: 1;
	transition: var(--transition);
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal__close:hover {
	background: rgba(255, 255, 255, 0.3);
}

.modal__left {
	flex: 1;
	position: relative;
	min-height: 350px;
	background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.modal__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.8);
}

.modal__right {
	flex: 1;
	background: var(--clr-primary);
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.modal__header {
	text-align: center;
	margin-bottom: 25px;
}

.modal__title {
	font-size: 24px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0;
	line-height: 1.2;
}

.modal__form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.modal__field {
	position: relative;
}

.modal__field input {
	width: 100%;
	padding: 14px 45px 14px 18px;
	border: none;
	border-radius: 22px;
	background: rgba(0, 0, 0, 0.2);
	color: #FFFFFF;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	transition: var(--transition);
	box-sizing: border-box;
}

.modal__field input:focus {
	outline: none;
}

.modal__field input::placeholder {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.modal__icon {
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.7);
	pointer-events: none;
}

.modal__submit {
	margin-top: 15px;
	padding: 14px 28px;
	border: none;
	border-radius: 22px;
	background: #FFFFFF;
	color: var(--clr-bg);
	font-size: 16px;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	cursor: pointer;
	transition: var(--transition);
	text-transform: none;
}

.modal__submit:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.modal__message {
	margin-top: 0;
	padding: 0;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	line-height: 1.4;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
}

.modal__message.show {
	margin-top: 12px;
	padding: 10px 14px;
	max-height: 100px;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.modal__message.success {
	background: rgba(109, 255, 116, 0.7);
	color: #fff;
	border: 1px solid rgba(76, 175, 80, 0.7);
}

.modal__message.error {
	background: rgba(151, 35, 27, 0.7);
	color: #fff;
	border: 1px solid rgba(83, 28, 24, 0.7);
}

.modal__footer-text {
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.9);
	margin: 15px 0 0 0;
	line-height: 1.4;
	font-weight: 500;
}

/* Hide images on mobile */
@media (max-width: 768px) {
	.modal__content {
		flex-direction: column;
		max-width: 95%;
		margin: 10px;
	}

	.modal__left {
		display: none;
	}

	.modal__right {
		padding: 30px 20px;
		border-radius: 10px;
	}

	.modal__title {
		font-size: 24px;
	}

	.modal__close {
		top: 10px;
		right: 10px;
		width: 35px;
		height: 35px;
		font-size: 20px;
	}

	.modal__field input {
		padding: 14px 45px 14px 16px;
		font-size: 15px;
	}

	.modal__icon {
		right: 15px;
		width: 18px;
		height: 18px;
	}

	.modal__submit {
		font-size: 16px;
		padding: 14px 24px;
	}

	.modal__footer-text {
		font-size: 13px;
		margin-top: 15px;
	}

	.modal__message.show {
		margin-top: 12px;
		padding: 10px 12px;
		font-size: 13px;
	}

	/* Adjust sections without background images */
	.hero,
	.about,
	.how-we-work,
	.advantages,
	.support,
	.other-services,
	.reviews,
	.contacts {
		background: var(--clr-bg) !important;
	}

	.hero {
		padding-top: 60px;
	}
}