:root {
	--primary-color: #4a3b76;
	--secondary-color: #f5b642;
	--accent-color: #dc3545;
	--dark-color: #343a40;
	--light-color: #f8f9fa;
	--gray-color: #6c757d;
	--success-color: #28a745;
	--info-color: #17a2b8;
	--border-radius: 8px;
	--shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
	--header-height: 80px;
}

/* Сброс стилей */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Базовые стили */
body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
	word-wrap: break-word;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

.gm-container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.gm-btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition);
	cursor: pointer;
	border: none;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.gm-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: var(--transition);
	z-index: -1;
}

.gm-btn:hover::before {
	left: 0;
}

.gm-btn-primary {
	background: var(--primary-color);
	color: #fff;
}

.gm-btn-primary:hover {
	background: #3a2e5d;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gm-btn-secondary {
	background: var(--secondary-color);
	color: #333;
}

.gm-btn-secondary:hover {
	background: #e5a93a;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gm-btn-outline {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.gm-btn-outline:hover {
	background: var(--primary-color);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gm-section-title {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	position: relative;
	font-weight: 700;
	color: var(--dark-color);
}

.gm-section-title span {
	color: var(--secondary-color);
}

.gm-section-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -15px;
	width: 80px;
	height: 4px;
	background: var(--secondary-color);
}

.gm-section-title.gm-centered {
	text-align: center;
}

.gm-section-title.gm-centered::after {
	left: 50%;
	transform: translateX(-50%);
}

.gm-section-subtitle {
	font-size: 1.2rem;
	color: var(--gray-color);
	margin-bottom: 2.5rem;
	max-width: 700px;
}

.gm-section-subtitle.gm-centered {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

/* Хедер */
.gm-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
	z-index: 1000;
	transition: var(--transition);
}

.gm-header.gm-scrolled {
	padding: 10px 0;
}

.gm-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gm-logo {
	display: flex;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--dark-color);
}

.gm-logo span {
	color: var(--primary-color);
}

.gm-nav {
	display: flex;
	align-items: center;
}

.gm-nav-items {
	display: flex;
	align-items: center;
}

.gm-nav-items li {
	margin-left: 30px;
}

.gm-nav-link {
	color: var(--dark-color);
	font-weight: 500;
	position: relative;
	padding: 5px 0;
}

.gm-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: var(--transition);
}

.gm-nav-link:hover::after,
.gm-nav-link.gm-active::after {
	width: 100%;
}

.gm-mobile-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 20px;
	cursor: pointer;
}

.gm-mobile-menu-btn span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--dark-color);
	transition: var(--transition);
}

/* Мобильное меню */
.gm-mobile-menu {
	position: fixed;
	top: 0;
	right: -320px;
	width: 320px;
	height: 100vh;
	background: #fff;
	z-index: 2000;
	padding: 80px 30px 30px;
	transition: var(--transition);
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.gm-mobile-menu.gm-active {
	right: 0;
}

.gm-mobile-menu-close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--dark-color);
}

.gm-mobile-nav-items {
	display: flex;
	flex-direction: column;
}

.gm-mobile-nav-items li {
	margin-bottom: 15px;
}

.gm-mobile-nav-link {
	display: block;
	padding: 8px 0;
	color: var(--dark-color);
	font-weight: 500;
	border-bottom: 1px solid #eee;
}

.gm-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1500;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.gm-overlay.gm-active {
	opacity: 1;
	visibility: visible;
}

/* Секция Герой */
.gm-hero {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
		url('assets/gm-hero.webp');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.gm-hero::before {
	content: '';
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	height: 100px;
	background: #fff;
	transform: skewY(-3deg);
	z-index: 1;
}

.gm-hero-content {
	max-width: 650px;
	position: relative;
	z-index: 2;
	animation: fadeIn 1.5s ease;
}

.gm-hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.gm-hero-title span {
	color: var(--secondary-color);
}

.gm-hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}

.gm-hero-buttons {
	display: flex;
	gap: 15px;
}

/* Секция О нас */
.gm-about {
	padding: 100px 0;
	background: #fff;
	position: relative;
}

.gm-about-wrapper {
	display: flex;
	align-items: center;
	gap: 50px;
}

.gm-about-content {
	flex: 1;
}

.gm-about-image {
	flex: 1;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
	transform: perspective(1000px) rotateY(-5deg);
	transition: var(--transition);
	height: 100%;
	width: 100%;
}

.gm-about-image:hover {
	transform: perspective(1000px) rotateY(0);
}

.gm-about-image img {
	display: block;
	transition: transform 0.5s ease;
	height: 100%;
	width: 100%;
}

.gm-about-image:hover img {
	transform: scale(1.05);
}

.gm-about-features {
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
	gap: 20px;
}

.gm-feature-item {
	flex: 1 0 calc(50% - 20px);
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
	background: #fff;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.gm-feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gm-feature-icon {
	width: 60px;
	height: 60px;
	background: rgba(74, 59, 118, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	color: var(--primary-color);
	font-size: 1.5rem;
	flex-shrink: 0;
}

.gm-feature-content h3 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: var(--dark-color);
}

.gm-feature-content p {
	color: var(--gray-color);
}

/* Секция Услуги */
.gm-services {
	padding: 100px 0;
	background: linear-gradient(to right, #f8f9fa, #ffffff);
	position: relative;
	overflow: hidden;
}

.gm-services::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/pattern.png');
	opacity: 0.05;
	z-index: 1;
}

.gm-services-container {
	position: relative;
	z-index: 2;
}

.gm-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.gm-service-card {
	background: #fff;
	border-radius: 15px;
	padding: 40px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.gm-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 0;
	background: var(--primary-color);
	z-index: -1;
	transition: 0.5s ease;
}

.gm-service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gm-service-card:hover::before {
	height: 100%;
}

.gm-service-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 25px;
	transition: var(--transition);
}

.gm-service-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	transition: var(--transition);
	color: var(--dark-color);
}

.gm-service-desc {
	color: var(--gray-color);
	transition: var(--transition);
	margin-bottom: 20px;
}

.gm-service-link {
	display: inline-flex;
	align-items: center;
	color: var(--primary-color);
	font-weight: 600;
	transition: var(--transition);
}

.gm-service-link i {
	margin-left: 5px;
	transition: var(--transition);
}

.gm-service-link:hover {
	color: var(--secondary-color);
}

.gm-service-link:hover i {
	transform: translateX(5px);
}

/* Секция Металлы */
.gm-metals {
	padding: 100px 0;
	background: linear-gradient(to right, #3a2e5d, #4a3b76);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.gm-metals::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/pattern-dark.png');
	opacity: 0.1;
	z-index: 1;
}

.gm-metals-container {
	position: relative;
	z-index: 2;
}

.gm-metals .gm-section-title,
.gm-metals .gm-section-subtitle {
	color: #fff;
}

.gm-metals .gm-section-title::after {
	background: var(--secondary-color);
}

.gm-metals-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
}

.gm-tab-button {
	padding: 15px 25px;
	background: transparent;
	border: none;
	font-size: 1.1rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	position: relative;
	transition: var(--transition);
}

.gm-tab-button::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--secondary-color);
	transition: var(--transition);
}

.gm-tab-button:hover {
	color: #fff;
}

.gm-tab-button.gm-active {
	color: #fff;
}

.gm-tab-button.gm-active::after {
	width: 100%;
}

.gm-tab-content {
	display: none;
	animation: fadeIn 0.5s ease;
}

.gm-tab-content.gm-active {
	display: block;
}

.gm-metals-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.gm-metal-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.gm-metal-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.15);
}

.gm-metal-icon {
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 2rem;
	color: var(--secondary-color);
}

.gm-metal-name {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: #fff;
	display: flex;
	align-items: center;
}

.gm-metal-symbol {
	font-weight: normal;
	font-size: 1rem;
	opacity: 0.7;
	margin-left: 10px;
}

.gm-metal-properties {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 20px 0;
}

.gm-metal-property {
	padding: 5px 12px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	font-size: 0.85rem;
}

.gm-metal-desc {
	margin-top: 15px;
	margin-bottom: 20px;
	opacity: 0.8;
}

.gm-metal-wrap {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.gm-metal-price {
	margin-top: auto;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--secondary-color);
}

/* Секция Проекты */
.gm-projects {
	padding: 100px 0;
	background: #fff;
}

.gm-projects-filter {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 40px;
}

.gm-filter-button {
	padding: 8px 20px;
	background: #f1f1f1;
	border: none;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--dark-color);
	cursor: pointer;
	transition: var(--transition);
}

.gm-filter-button:hover {
	background: #e1e1e1;
}

.gm-filter-button.gm-active {
	background: var(--primary-color);
	color: #fff;
}

.gm-projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.gm-project-card {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	height: 300px;
}

.gm-project-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gm-project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 30px;
	opacity: 0;
	transition: var(--transition);
}

.gm-project-card:hover .gm-project-overlay {
	opacity: 1;
}

.gm-project-card:hover .gm-project-img {
	transform: scale(1.1);
}

.gm-project-title {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: #fff;
	transform: translateY(20px);
	transition: transform 0.5s ease;
}

.gm-project-card:hover .gm-project-title {
	transform: translateY(0);
}

.gm-project-category {
	color: var(--secondary-color);
	font-size: 0.9rem;
	margin-bottom: 15px;
	transform: translateY(20px);
	transition: transform 0.5s ease 0.1s;
}

.gm-project-card:hover .gm-project-category {
	transform: translateY(0);
}

.gm-project-button {
	display: inline-flex;
	align-items: center;
	background: var(--secondary-color);
	color: #333;
	padding: 8px 15px;
	border-radius: 30px;
	font-size: 0.85rem;
	font-weight: 600;
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.5s ease 0.2s;
}

.gm-project-card:hover .gm-project-button {
	transform: translateY(0);
	opacity: 1;
}

.gm-project-button i {
	margin-left: 5px;
	transition: var(--transition);
}

.gm-project-button:hover i {
	transform: translateX(3px);
}

/* Секция Команда */
.gm-team {
	padding: 100px 0;
	background: linear-gradient(to right, #f8f9fa, #ffffff);
	position: relative;
	overflow: hidden;
}

.gm-team::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/pattern.png');
	opacity: 0.05;
	z-index: 1;
}

.gm-team-container {
	position: relative;
	z-index: 2;
}

.gm-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.gm-team-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

.gm-team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gm-team-image {
	height: 300px;
	position: relative;
	overflow: hidden;
}

.gm-team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.5s ease;
}

.gm-team-card:hover .gm-team-image img {
	transform: scale(1.1);
}

.gm-team-content {
	padding: 25px 20px;
	text-align: center;
}

.gm-team-name {
	font-size: 1.3rem;
	margin-bottom: 5px;
	color: var(--dark-color);
}

.gm-team-position {
	color: var(--gray-color);
	font-size: 0.9rem;
	margin-bottom: 15px;
}

.gm-team-social {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.gm-team-social a {
	width: 36px;
	height: 36px;
	background: #f1f1f1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark-color);
	transition: var(--transition);
}

.gm-team-social a:hover {
	background: var(--primary-color);
	color: #fff;
	transform: translateY(-3px);
}

/* Секция Отзывы */
.gm-testimonials {
	padding: 100px 0;
	background: linear-gradient(to right, #3a2e5d, #4a3b76);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.gm-testimonials::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/pattern-dark.png');
	opacity: 0.1;
	z-index: 1;
}

.gm-testimonials-container {
	position: relative;
	z-index: 2;
}

.gm-testimonials .gm-section-title,
.gm-testimonials .gm-section-subtitle {
	color: #fff;
}

.gm-testimonials .gm-section-title::after {
	background: var(--secondary-color);
}

.gm-testimonials-slider {
	position: relative;
	padding: 50px 0;
}

.gm-testimonial {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 30px;
	margin: 0 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	display: none;
}

.gm-testimonial.gm-active {
	display: block;
	animation: fadeIn 0.5s ease;
}

.gm-testimonial-content {
	font-style: italic;
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 25px;
	position: relative;
	padding-left: 25px;
}

.gm-testimonial-content::before {
	content: '"';
	position: absolute;
	left: 0;
	top: -15px;
	font-size: 3rem;
	font-family: Georgia, serif;
	color: rgba(255, 255, 255, 0.3);
	line-height: 1;
}

.gm-testimonial-author {
	display: flex;
	align-items: center;
}

.gm-testimonial-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 15px;
	border: 3px solid rgba(255, 255, 255, 0.2);
}

.gm-testimonial-info h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.gm-testimonial-info p {
	opacity: 0.8;
	font-size: 0.9rem;
}

.gm-testimonial-company {
	color: var(--secondary-color);
}

.gm-testimonials-arrows {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.gm-arrow {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	transition: var(--transition);
	font-size: 1.2rem;
}

.gm-arrow:hover {
	background: var(--secondary-color);
	color: #333;
	transform: translateY(-3px);
}

/* Секция Контакты */
.gm-contact {
	padding: 100px 0;
	background: #fff;
}

.gm-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-top: 50px;
}

.gm-contact-form-container {
	padding: 40px;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gm-form-group {
	margin-bottom: 20px;
}

.gm-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--dark-color);
}

.gm-form-group input,
.gm-form-group textarea,
.gm-form-group select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	font-family: 'Roboto', sans-serif;
	transition: var(--transition);
}

.gm-form-group input:focus,
.gm-form-group textarea:focus,
.gm-form-group select:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: 0 0 0 3px rgba(74, 59, 118, 0.1);
}

.gm-form-group input.gm-error,
.gm-form-group textarea.gm-error,
.gm-form-group select.gm-error {
	border-color: var(--accent-color);
}

.gm-error-message {
	color: var(--accent-color);
	font-size: 0.85rem;
	margin-top: 5px;
	display: none;
}

.gm-error-message.gm-visible {
	display: block;
}

.gm-button-full {
	width: 100%;
}

.gm-map-container {
	position: relative;
}

/* Map Section */
.gm-map {
	height: 100%;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.gm-map {
		height: 400px;
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.gm-contact-map {
	position: relative;
	height: 100%;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.gm-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* Стили для ошибок */

.gm-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

.gm-contact-info {
	position: absolute;
	bottom: 30px;
	left: 30px;
	background: #fff;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	max-width: 300px;
	z-index: 2;
}

.gm-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.gm-contact-item:last-child {
	margin-bottom: 0;
}

.gm-contact-icon {
	width: 40px;
	height: 40px;
	background: rgba(74, 59, 118, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: var(--primary-color);
	font-size: 1rem;
}

.gm-contact-text {
	color: var(--dark-color);
}

.gm-contact-text a {
	color: var(--primary-color);
	transition: var(--transition);
}

.gm-contact-text a:hover {
	color: var(--secondary-color);
}

/* Футер */
.gm-footer {
	padding: 80px 0 0;
	background: var(--dark-color);
	color: #fff;
}

.gm-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.gm-footer-logo {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

.gm-footer-logo span {
	color: var(--secondary-color);
}

.gm-footer-about {
	margin-bottom: 25px;
	opacity: 0.8;
	line-height: 1.8;
}

.gm-footer-social {
	display: flex;
	gap: 15px;
}

.gm-footer-social a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: var(--transition);
}

.gm-footer-social a:hover {
	background: var(--secondary-color);
	color: #333;
	transform: translateY(-3px);
}

.gm-footer-title {
	font-size: 1.3rem;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.gm-footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--secondary-color);
}

.gm-footer-links li {
	margin-bottom: 12px;
}

.gm-footer-links a {
	color: rgba(255, 255, 255, 0.8);
	position: relative;
	padding-left: 15px;
	transition: var(--transition);
}

.gm-footer-links a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--secondary-color);
	transform: translateY(-50%);
	transition: var(--transition);
}

.gm-footer-links a:hover {
	color: var(--secondary-color);
	padding-left: 20px;
}

.gm-footer-links a:hover::before {
	background: var(--secondary-color);
}

.gm-contact-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.gm-contact-list i {
	margin-right: 15px;
	color: var(--secondary-color);
	font-size: 1.1rem;
	margin-top: 5px;
}

.gm-contact-list p {
	opacity: 0.8;
}

.gm-footer-bottom {
	margin-top: 60px;
	padding: 25px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.gm-footer-bottom a {
	color: var(--secondary-color);
	transition: var(--transition);
}

.gm-footer-bottom a:hover {
	text-decoration: underline;
}

/* Cookie Consent */
.gm-cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.9);
	color: #fff;
	padding: 20px 0;
	z-index: 9999;
	display: none;
}

.gm-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.gm-cookie-content p {
	flex: 1;
	min-width: 300px;
}

.gm-cookie-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.gm-btn-small {
	padding: 10px 15px;
	font-size: 0.9rem;
}

.gm-cookie-link {
	color: var(--secondary-color);
	text-decoration: underline;
	margin-left: 15px;
}

/* Страница Контакты */
.gm-page-banner {
	height: 50vh;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
		url('images/contact-banner.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	position: relative;
}

.gm-page-banner::before {
	content: '';
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	height: 100px;
	background: #fff;
	transform: skewY(-3deg);
	z-index: 1;
}

.gm-page-title {
	font-size: 3rem;
	margin-bottom: 15px;
	position: relative;
	z-index: 2;
}

.gm-page-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.gm-contact-page {
	padding: 100px 0;
}

.gm-contact-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.gm-contact-card {
	background: #fff;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: var(--transition);
}

.gm-contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gm-contact-card-icon {
	width: 70px;
	height: 70px;
	background: rgba(74, 59, 118, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.8rem;
	color: var(--primary-color);
}

.gm-contact-card h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: var(--dark-color);
}

.gm-contact-card p {
	color: var(--gray-color);
	margin-bottom: 10px;
}

.gm-contact-card a {
	color: var(--primary-color);
	font-weight: 600;
	transition: var(--transition);
}

.gm-contact-card a:hover {
	color: var(--secondary-color);
}

.gm-contact-form-map {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

/* Страница О нас */
.gm-about-page {
	padding: 100px 0;
}

.gm-about-mission {
	display: grid;
	grid-template-columns: 1fr;
	gap: 50px;
	margin-bottom: 80px;
	max-width: 800px;
	margin: 80px auto;
}

.gm-mission-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gm-mission-title {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: var(--dark-color);
	position: relative;
	padding-bottom: 15px;
}

.gm-mission-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background: var(--secondary-color);
}

.gm-mission-desc {
	color: var(--gray-color);
	margin-bottom: 30px;
	line-height: 1.8;
}

.gm-mission-image {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	position: relative;
}

.gm-mission-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gm-stats-section {
	padding: 80px 0;
}

.gm-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.gm-stat-card {
	background: #fff;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: var(--transition);
}

.gm-stat-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gm-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.gm-stat-title {
	font-size: 1.1rem;
	color: var(--gray-color);
}

.gm-history-section {
	padding: 100px 0;
}

.gm-timeline {
	position: relative;
	max-width: 1000px;
	margin: 50px auto 0;
}

.gm-timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: var(--primary-color);
}

.gm-timeline-item {
	position: relative;
	padding-left: 60px;
	margin-bottom: 50px;
}

.gm-timeline-item:last-child {
	margin-bottom: 0;
}

.gm-timeline-dot {
	position: absolute;
	left: -9px;
	top: 0;
	width: 20px;
	height: 20px;
	background: var(--secondary-color);
	border-radius: 50%;
	border: 3px solid var(--primary-color);
	z-index: 1;
}

.gm-timeline-date {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.gm-timeline-content {
	background: #fff;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gm-timeline-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--dark-color);
}

.gm-timeline-desc {
	color: var(--gray-color);
	line-height: 1.8;
}

/* Страница Услуги */
.gm-services-page {
	padding: 100px 0;
}

.gm-services-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-bottom: 80px;
}

.gm-services-hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gm-services-hero-title {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: var(--dark-color);
	position: relative;
	padding-bottom: 15px;
}

.gm-services-hero-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background: var(--secondary-color);
}

.gm-services-hero-desc {
	color: var(--gray-color);
	margin-bottom: 30px;
	line-height: 1.8;
}

.gm-services-hero-image {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	position: relative;
}

.gm-services-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gm-services-detailed {
	padding: 80px 0;
	background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.gm-services-detailed-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.gm-service-detailed-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.gm-service-detailed-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gm-service-detailed-image {
	height: 200px;
	overflow: hidden;
}

.gm-service-detailed-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gm-service-detailed-card:hover .gm-service-detailed-image img {
	transform: scale(1.1);
}

.gm-service-detailed-content {
	padding: 30px;
}

.gm-service-detailed-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--dark-color);
}

.gm-service-detailed-desc {
	color: var(--gray-color);
	margin-bottom: 20px;
	line-height: 1.7;
}

.gm-service-features {
	margin-top: 20px;
}

.gm-service-feature {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	color: var(--dark-color);
}

.gm-service-feature i {
	color: var(--secondary-color);
	margin-right: 10px;
}

.gm-process-section {
	padding: 100px 0;
}

.gm-process-steps {
	position: relative;
	max-width: 1000px;
	margin: 50px auto 0;
}

.gm-process-step {
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
	transition: var(--transition);
}

.gm-process-step:hover {
	transform: translateY(-5px);
}

.gm-process-step:last-child {
	margin-bottom: 0;
}

.gm-process-number {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 5px;
}

.gm-process-content {
	flex: 1;
}

.gm-process-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--dark-color);
}

.gm-process-desc {
	color: var(--gray-color);
	line-height: 1.8;
}

/* Страница Металлы */
.gm-metals-page {
	padding: 100px 0;
}

.gm-metals-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-bottom: 80px;
}

.gm-metals-hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gm-metals-hero-title {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: var(--dark-color);
	position: relative;
	padding-bottom: 15px;
}

.gm-metals-hero-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background: var(--secondary-color);
}

.gm-metals-hero-desc {
	color: var(--gray-color);
	margin-bottom: 30px;
	line-height: 1.8;
}

.gm-metals-hero-image {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	position: relative;
}

.gm-metals-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gm-metals-categories {
	padding: 80px 0;
	background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.gm-categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.gm-category-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.gm-category-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gm-category-image {
	height: 200px;
	overflow: hidden;
}

.gm-category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gm-category-card:hover .gm-category-image img {
	transform: scale(1.1);
}

.gm-category-content {
	padding: 30px;
}

.gm-category-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--dark-color);
}

.gm-category-desc {
	color: var(--gray-color);
	margin-bottom: 20px;
	line-height: 1.7;
}

.gm-metals-list {
	margin-top: 20px;
}

.gm-metal-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	color: var(--dark-color);
}

.gm-metal-item:last-child {
	border-bottom: none;
}

.gm-metal-name-inline {
	display: flex;
	align-items: center;
}

.gm-metal-symbol-inline {
	color: var(--primary-color);
	font-weight: 600;
	margin-left: 8px;
	font-size: 0.9rem;
	opacity: 0.7;
}

.gm-metal-price-inline {
	color: var(--secondary-color);
	font-weight: 600;
}

.gm-metal-featured {
	padding: 100px 0;
	background: linear-gradient(to right, #3a2e5d, #4a3b76);
	color: #fff;
	position: relative;
}

.gm-metal-featured-container {
	position: relative;
	z-index: 2;
}

.gm-metal-featured .gm-section-title,
.gm-metal-featured .gm-section-subtitle {
	color: #fff;
}

.gm-metal-featured .gm-section-title::after {
	background: var(--secondary-color);
}

.gm-metal-featured-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

/* Стили для сетки карточек */
.gm-metal-featured-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	padding: 4rem 0;
	max-width: 1200px;
	margin: 0 auto;
}

/* Уникальные стили для каждой карточки */
.gm-metal-featured-card {
	padding: 2rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

/* Первая карточка - Характеристики */
.gm-metal-featured-card:nth-child(1) {
	background: linear-gradient(135deg, var(--primary-color) 0%, #3a2c5f 100%);
	color: white;
	transform: rotate(-1deg);
}

.gm-metal-featured-card:nth-child(1)::before {
	content: '⚙️';
	position: absolute;
	right: -30px;
	bottom: -30px;
	font-size: 8rem;
	opacity: 0.1;
}

.gm-metal-featured-card:nth-child(1) h3 {
	color: var(--secondary-color);
	border-bottom: 2px solid var(--secondary-color);
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}

/* Вторая карточка - Применение */
.gm-metal-featured-card:nth-child(2) {
	background: var(--gray-color);
	border: 3px solid var(--secondary-color);
	transform: rotate(1.5deg);
	margin-top: 2rem;
}

.gm-metal-featured-card:nth-child(2) h3 {
	color: var(--dark-color);
	background: var(--secondary-color);
	padding: 1rem;
	margin: -2rem -2rem 2rem;
	text-align: center;
}

.gm-metal-featured-card:nth-child(2) li {
	position: relative;
	padding-left: 1.5rem;
}

.gm-metal-featured-card:nth-child(2) li::before {
	content: '▸';
	color: var(--accent-color);
	position: absolute;
	left: 0;
}

/* Третья карточка - Добыча */
.gm-metal-featured-card:nth-child(3) {
	background: var(--dark-color);
	color: white;
	transform: rotate(-0.5deg);
}

.gm-metal-featured-card:nth-child(3)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--accent-color),
		var(--secondary-color)
	);
}

.gm-metal-featured-card:nth-child(3) h3 {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.gm-metal-featured-card:nth-child(3) h3::before {
	content: '⛏️';
	font-size: 1.5rem;
}

/* Общие стили элементов */
.gm-metal-featured-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.gm-metal-featured-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.gm-metal-featured-card li {
	padding: 0.8rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	line-height: 1.5;
}

.gm-metal-featured-card:hover {
	transform: rotate(0) translateY(-10px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Адаптивность */
@media (max-width: 768px) {
	.gm-metal-featured-grid {
		grid-template-columns: 1fr;
	}

	.gm-metal-featured-card {
		transform: none !important;
	}

	.gm-metal-featured-card:hover {
		transform: translateY(-5px) !important;
	}
}

/* Страница Проекты */
.gm-projects-page {
	padding: 100px 0;
}

.gm-projects-hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 50px;
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 80px;
}

.gm-projects-hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gm-projects-hero-content a {
	text-align: center;
}

.gm-projects-hero-title {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: var(--dark-color);
	position: relative;
	padding-bottom: 15px;
}

.gm-projects-hero-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background: var(--secondary-color);
}

.gm-projects-hero-desc {
	color: var(--gray-color);
	margin-bottom: 30px;
	line-height: 1.8;
}

.gm-projects-hero-image {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	position: relative;
}

.gm-projects-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gm-projects-featured {
	padding: 80px 0;
	background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.gm-projects-featured-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.gm-project-featured-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.gm-project-featured-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gm-project-featured-image {
	height: 250px;
	overflow: hidden;
	position: relative;
}

.gm-project-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gm-project-featured-card:hover .gm-project-featured-image img {
	transform: scale(1.1);
}

.gm-project-featured-category {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--primary-color);
	color: #fff;
	padding: 5px 15px;
	border-radius: 30px;
	font-size: 0.8rem;
	font-weight: 600;
	z-index: 1;
}

.gm-project-featured-content {
	padding: 30px;
}

.gm-project-featured-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--dark-color);
}

.gm-project-featured-desc {
	color: var(--gray-color);
	margin-bottom: 20px;
	line-height: 1.7;
}

.gm-project-featured-meta {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	color: var(--gray-color);
	font-size: 0.9rem;
}

.gm-project-meta-item {
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.gm-project-meta-item i {
	margin-right: 5px;
	color: var(--primary-color);
}

.gm-project-featured-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 20px;
}

.gm-project-stat {
	flex: 1;
	min-width: 100px;
	background: #f8f9fa;
	border-radius: 8px;
	padding: 15px;
	text-align: center;
}

.gm-project-stat-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.gm-project-stat-label {
	color: var(--gray-color);
	font-size: 0.9rem;
}

.gm-testimonials-section {
	padding: 100px 0;
	background: linear-gradient(to right, #3a2e5d, #4a3b76);
	color: #fff;
	position: relative;
}

/* Страницы правовой информации */
.gm-legal-header {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
		url('images/legal-banner.jpg');
	background-size: cover;
	background-position: center;
	padding: 100px 0 50px;
	text-align: center;
	color: #fff;
}

.gm-legal-title {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.gm-legal-subtitle {
	font-size: 1.1rem;
	opacity: 0.9;
	max-width: 700px;
	margin: 0 auto;
}

.gm-legal-content {
	padding: 80px 0;
	background: #fff;
}

.gm-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.gm-legal-section {
	margin-bottom: 40px;
}

.gm-legal-section:last-child {
	margin-bottom: 0;
}

.gm-legal-section h2 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: var(--dark-color);
	padding-bottom: 10px;
	border-bottom: 2px solid #eee;
}

.gm-legal-section h3 {
	font-size: 1.3rem;
	margin: 25px 0 15px;
	color: var(--dark-color);
}

.gm-legal-section p {
	margin-bottom: 15px;
	line-height: 1.7;
	color: var(--gray-color);
}

.gm-legal-section ul {
	list-style: disc;
	padding-left: 20px;
	margin-bottom: 15px;
}

.gm-legal-section ul li {
	margin-bottom: 10px;
	color: var(--gray-color);
}

/* Медиа-запросы */
@media (max-width: 1200px) {
	.gm-hero-title {
		font-size: 3rem;
	}

	.gm-page-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 992px) {
	.gm-section-title {
		font-size: 2.2rem;
	}

	.gm-hero-title {
		font-size: 2.5rem;
	}

	.gm-about-wrapper {
		flex-direction: column;
	}

	.gm-contact-wrapper,
	.gm-about-mission,
	.gm-services-hero,
	.gm-metals-hero,
	.gm-projects-hero {
		grid-template-columns: 1fr;
	}

	.gm-about-image,
	.gm-mission-image,
	.gm-services-hero-image,
	.gm-metals-hero-image,
	.gm-projects-hero-image {
		height: 400px;
	}

	.gm-contact-form-map {
		grid-template-columns: 1fr;
	}

	.gm-map {
		height: 400px;
	}

	.gm-nav-items {
		display: none;
	}

	.gm-mobile-menu-btn {
		display: flex;
	}
}

@media (max-width: 768px) {
	.gm-hero-title {
		font-size: 2.2rem;
	}

	.gm-hero-subtitle {
		font-size: 1.1rem;
	}

	.gm-section-title {
		font-size: 2rem;
	}

	.gm-feature-item {
		flex: 1 0 100%;
	}

	.gm-hero-buttons {
		flex-direction: column;
		align-items: flex-start;
	}

	.gm-process-step {
		flex-direction: column;
	}

	.gm-process-number {
		margin-bottom: 15px;
	}

	.gm-cookie-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.gm-metals-tabs {
		flex-wrap: wrap;
	}

	.gm-timeline::before {
		left: -40px;
	}

	.gm-timeline-dot {
		left: -49px;
	}
	.gm-timeline-item {
		padding-left: 0;
	}

	.gm-timeline-title {
		word-wrap: break-word;
	}

	.gm-projects-hero-title {
		font-size: 2rem;
	}
}

@media (max-width: 576px) {
	.gm-hero-title {
		font-size: 2rem;
	}

	.gm-section-title {
		font-size: 1.8rem;
	}

	.gm-metal-card {
		min-height: auto;
	}

	.gm-stats-grid {
		grid-template-columns: 1fr;
	}

	.gm-page-title {
		font-size: 2rem;
	}

	.gm-page-subtitle {
		font-size: 1rem;
	}

	.gm-contact-card {
		padding: 20px;
	}

	.gm-about-features {
		flex-direction: column;
		flex-wrap: nowrap;
	}

	.gm-services-grid,
	.gm-projects-grid,
	.gm-metals-grid,
	.gm-team-grid,
	.gm-services-detailed-grid,
	.gm-categories-grid,
	.gm-metal-featured-grid,
	.gm-projects-featured-grid,
	.gm-contact-cards {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.gm-project-featured-meta {
		flex-direction: column;
		gap: 20px;
	}

	.gm-contact-form-container {
		padding: 30px 20px;
	}

	.gm-legal-title {
		font-size: 2rem;
	}

	.gm-legal-section h2 {
		font-size: 1.5rem;
	}

	.gm-feature-item,
	.gm-testimonial-author {
		flex-direction: column;
	}

	.gm-testimonial-content {
		padding-left: 0;
	}
}

@media (max-width: 375px) {
	.gm-contact-info {
		display: none;
	}

	.gm-legal-title {
		font-size: 1.5rem;
	}
}
/* Анимации */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
