:root {
	--primary-color: #1a237e;
	--secondary-color: #304ffe;
	--accent-color: #f50057;
	--text-color: #333;
	--light-bg: #f9f9f9;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: var(--text-color);
}

header {
	position: fixed;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 0;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5%;
	max-width: 1200px;
	margin: 0 auto;
	height: 120px;
}

.logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo img {
	height: 300px;
	width: auto;
	margin-top: 10px;
}

.nav-links a {
	text-decoration: none;
	color: var(--primary-color);
	margin-left: 2rem;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--secondary-color);
}

.hero {
	min-height: 100vh;
	width: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
		url('https://images.unsplash.com/photo-1619682817481-e994891cd1f5?auto=format&fit=crop&w=1920&q=80');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	text-align: center;
	color: white;
	padding-top: 80px; /* Добавляем отступ для фиксированного header */
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.cta-button {
	padding: 1rem 2rem;
	font-size: 1.1rem;
	background-color: var(--accent-color);
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: transform 0.3s, background-color 0.3s;
}

.cta-button:hover {
	transform: scale(1.05);
	background-color: #c0392b;
}

section {
	padding: 5rem 5%;
}

section h2 {
	text-align: center;
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 2rem;
}

.services-grid,
.brands-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s;
}

.service-card:hover {
	transform: translateY(-10px);
}

.service-card i {
	font-size: 2.5rem;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

.contact {
	background-color: var(--light-bg);
}

.contact-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
}

.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
	font-size: 2rem;
	color: var(--secondary-color);
}

.contact-details h3 {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.contact-details a {
	color: var(--accent-color);
	text-decoration: none;
	font-size: 1.1rem;
	display: block;
	margin-bottom: 0.5rem;
}

.social-contact {
	text-align: center;
}

.messenger-links {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1rem;
}

.messenger-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	color: white;
	font-weight: bold;
	transition: transform 0.3s;
}

.messenger-btn:hover {
	transform: translateY(-3px);
}

.messenger-btn.whatsapp {
	background-color: #25d366;
}

.messenger-btn.telegram {
	background-color: #0088cc;
}

footer {
	background: var(--primary-color);
	color: white;
	padding: 2rem 5%;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}

.hero-stats {
	font-size: 1.2rem;
	margin: 1rem 0;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about {
	background-color: var(--light-bg);
}

.about-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 0;
}

.about-stats {
	display: flex;
	justify-content: space-around;
	margin-top: 2rem;
}

.stat {
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--primary-color);
	display: block;
}

.price {
	display: block;
	margin-top: 1rem;
	font-weight: bold;
	color: var(--accent-color);
}

.social-links {
	margin-top: 1rem;
}

.social-links a {
	color: white;
	font-size: 1.5rem;
	margin-right: 1rem;
	transition: color 0.3s;
}

.social-links a:hover {
	color: var(--accent-color);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.service-card,
.brand {
	animation: fadeInUp 0.8s forwards;
}

.brand {
	background: white;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.brand img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.brand h3 {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.brand p {
	color: var(--text-color);
	font-size: 0.9rem;
}

/* Стили для секции команды */
.team {
	background-color: var(--light-bg);
	padding: 5rem 0;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2rem;
}

.team-member {
	text-align: center;
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-photo {
	width: 250px;
	height: 250px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.member-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-member h3 {
	color: var(--primary-color);
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.team-member .position {
	color: var(--secondary-color);
	font-size: 1.1rem;
}

.footer-content a {
	color: white;
	text-decoration: none;
	transition: color 0.3s;
}

@media (max-width: 1200px) {
	.contact-container,
	.about-content,
	.services-grid,
	.brands-grid {
		padding: 0 2rem;
	}
}

@media (max-width: 992px) {
	section {
		padding: 4rem 3%;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.about-stats {
		flex-wrap: wrap;
		gap: 2rem;
	}

	.stat {
		flex: 0 0 calc(50% - 1rem);
	}
}

@media (max-width: 768px) {
	header {
		padding: 1rem;
	}

	nav {
		position: relative;
		height: 100px;
	}

	.menu-btn {
		position: absolute;
		left: 1rem;
	}

	.logo {
		width: 100%;
		justify-content: center;
		font-size: 1.2rem;
	}

	.logo img {
		height: 390px;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		height: 100vh;
		background: white;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		transition: 0.5s;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	}

	.nav-links.active {
		right: 0;
	}

	.nav-links a {
		margin: 1.5rem 0;
		font-size: 1.2rem;
	}

	.hero-content {
		padding: 1rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.services-grid,
	.brands-grid {
		grid-template-columns: 1fr;
	}

	.contact-info {
		grid-template-columns: 1fr;
	}

	.messenger-links {
		flex-direction: column;
	}

	.messenger-btn {
		width: 100%;
		justify-content: center;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
	}

	.team-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.hero h1 {
		font-size: 1.8rem;
	}

	.hero-stats {
		font-size: 1rem;
	}

	section h2 {
		font-size: 2rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	.contact-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

/* Добавляем стили для мобильного меню */
.menu-btn {
	display: none;
}
	display: none;
}
