:root {
	/* Background Colors */
	--bg: #f3e5f5;
	--bg-dark: #d1c4e9;
	--bg-light: #ffffff;
	--bg-accent: #ffe0b2;

	--text: #6a1b9a;
	--text-dark: #8e24aa;
	--text-light: #ab47bc;
	--text-accent: #ff7043;
	--accent-yellow: #ffd54f;

	--success: #81c784;
	--warning: #ffb74d;
	--error: #e57373;
	--info: #64b5f6;

	--primary: #c75c5c; /* Terracotta red */
	--secondary: #d4af37; /* Greek gold */
	--dark: #1a2b40; /* Navy/dark blue */
	--light: #e0dad1; /* Stone/parchment */
	--accent: #6b5b3d; /* Bronze */
	--text-dark: #1a1a1a;
	--text-light: #f5f5f5;

	/* Spacing system */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 4rem;
	--spacing-xl: 6rem;

	/* Border radius */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;

	--privacy-radius: 14px;
	/* Шрифты и сетка */
	--font-main: 'Roboto', sans-serif;
	--container-width: 1280px;
	--container-padding: 16px;
}

/* === RESET === */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	height: 100%;
}
body {
	font-family: var(--font-main);
	line-height: 1.6;
	min-height: 100%;
	color: var(--text-dark);
	background-color: var(--light);
}
img {
	max-width: 100%;
	width: 100%;
	display: block;
}
ul {
	list-style: none;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	background: none;
	border: none;
	cursor: pointer;
}
main {
	flex: 1 1 auto;
	padding-top: 80px;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

h2 {
	text-wrap: balance;
}

/* === CONTAINER === */
.container {
	width: 100%;
	max-width: var(--container-width);
	padding: 0 var(--container-padding);
	margin: 0 auto;
}

/* === HEADER === */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: var(--bg-dark);
	color: var(--text);
	padding: 1rem 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
.logo span {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--accent);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
}
.menu-toggle span {
	width: 20px;
	height: 2px;
	background: var(--text);
}
.nav-list {
	display: flex;
	gap: 2rem;
}
.nav-link {
	transition: color 0.3s;
	width: 100%;
	display: block;
}
.nav-link:hover,
.nav-link.active {
	color: var(--accent-dark);
}

/* === FOOTER === */
.footer {
	background: var(--bg-dark);
	color: var(--text);
	padding: 2rem 0 1rem;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
}
.footer-title {
	font-size: 1.1rem;
	margin-bottom: 1rem;
}
.footer-list {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.footer-bottom {
	margin-top: 2rem;
	text-align: center;
	font-size: 0.875rem;
	opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
	.nav-list {
		display: none;
		flex-direction: column;
		background: var(--bg-light);
		position: absolute;
		top: 100%;
		right: 0;
		padding: 1rem;
		width: 100%;
	}
	.menu-toggle {
		display: flex;
	}
	.nav.active .nav-list {
		display: flex;
	}
}

/* --------------------------------------------------------- FAQ ------------------------------------- */
.faq-section {
	background-color: #0b0a17;
	padding: 60px 20px;
	color: #e0e0e0;
	position: relative;
	overflow: hidden;
}


.faq-section__container {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	background: rgba(20, 20, 40, 0.85);
	padding: 40px;
	border-radius: 20px;
	border: 1px solid #00fff7;
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}
.faq-section__title {
	font-family: 'Orbitron', sans-serif;
	font-size: 2.2rem;
	color: #00fff7;
	margin-bottom: 30px;
	text-shadow: 0 0 10px #00fff7;
	text-align: center;
}

.faq-page .faq-item {
	margin-bottom: 25px;
	background-color: var(--dark);
}

.faq-page .faq-item__question {
	font-size: 1.2rem;
	color: #f5aaff;
	margin-bottom: 10px;
	font-weight: bold;
}

.faq-page .faq-item__answer {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #d0d0d0;
}

@keyframes glowFAQ {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.9;
	}
}

@media (max-width: 768px) {
	.faq-title {
		font-size: 1.8rem;
	}
	.faq-item__question {
		font-size: 1.1rem;
	}
	.faq-item__answer {
		font-size: 1rem;
	}
}

.faq-section__footer {
	font-size: 0.9rem;
	color: #999fb1;
	text-align: center;
	margin-top: 40px;
}

.faq-section__footer .link {
	color: #f8bc3b;
	text-decoration: none;
	font-weight: 600;
}

.faq-section__footer .link:hover {
	text-decoration: underline;
}

.flex-end {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	margin-top: 15px;
}

.flex-end a {
	color: #f8bc3b;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
}

.flex-end a:hover {
	border-color: #f8bc3b;
}

@media (max-width: 768px) {
	.faq-section__container {
		padding: 20px 25px;
	}

	.faq-section__title {
		font-size: 2rem;
	}

	.faq-item__question {
		font-size: 1.05rem;
	}

	.faq-item__answer {
		font-size: 0.95rem;
	}

	.flex-end {
		justify-content: center;
		flex-wrap: wrap;
	}
}

@media (max-width: 480px) {
	.faq-section__title {
		font-size: 1.7rem;
	}

	.faq-item__question {
		font-size: 1rem;
	}

	.faq-item__answer {
		font-size: 0.9rem;
	}
}

/* --------------------------------------------------------- CONTACT ------------------------------------- */
.contact {
	background: linear-gradient(135deg, #1e2a47 0%, #162136 100%);
	color: #e0e6f0;
	padding: 50px 20px;
	display: flex;
	justify-content: center;
	min-height: 100vh;
}

.contact__title {
	font-size: 2.4rem;
	font-weight: 700;
	color: #f8bc3b;
	text-align: center;
	margin-bottom: 30px;
	text-shadow: 0 0 12px #f8bc3baa;
}

.contact__content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact__info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact__text {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #d6ddea;
	font-weight: 500;
	max-width: 800px;
	margin: 0 auto;
}

.contact__text strong {
	color: #ffd85c;
	font-weight: 700;
}

.contact__image {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: 600px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.contact__image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
	border-radius: 12px;
}

.contact__image img:hover {
	transform: scale(1.05);
}

.contact__block {
	background: #2b3a5c;
	border-radius: 10px;
	padding: 20px 25px;
	box-shadow: inset 0 0 8px #1e2a47;
	max-width: 600px;
	margin: 0 auto;
}

.contact__subtitle {
	font-size: 1.3rem;
	font-weight: 700;
	color: #ffd85c;
	margin-bottom: 15px;
	text-shadow: 0 0 6px #ffd85caa;
}

.contact__line {
	font-size: 1rem;
	color: #d6ddea;
	margin: 10px 0;
}

.contact__label {
	font-weight: 600;
	color: #f8bc3b;
	margin-right: 8px;
}

.contact__link {
	color: #f8bc3b;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.contact__link:hover {
	color: #ffd85c;
	text-decoration: underline;
}

.contact__socials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 25px;
	justify-content: center;
}

.contact__social-link {
	color: #f8bc3b;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	padding: 6px 12px;
	border-radius: 6px;
	background: rgba(255 255 255 / 0.1);
	box-shadow: 0 0 8px #f8bc3b88;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact__social-link:hover {
	background-color: #f8bc3b;
	color: #1e2a47;
	box-shadow: 0 0 15px #f8bc3b;
}

.contact__note {
	font-size: 0.95rem;
	color: #999fb1;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.contact__note strong {
	color: #f8bc3b;
	font-weight: 700;
}

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

	.contact__title {
		font-size: 2rem;
	}

	.contact__text {
		font-size: 1rem;
	}

	.contact__subtitle {
		font-size: 1.15rem;
	}

	.contact__socials {
		gap: 20px;
	}

	.contact__social-link {
		font-size: 1rem;
		padding: 5px 10px;
	}

	.contact__note {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.contact__title {
		font-size: 1.7rem;
	}

	.contact__text {
		font-size: 0.95rem;
	}

	.contact__subtitle {
		font-size: 1.05rem;
	}

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

	.contact__note {
		font-size: 0.85rem;
	}
}

/* --------------------------------------------------------- PRIVACY ------------------------------------- */
.privacy {
	padding: 20px 0;
	background-color: #f9f9f9;
	color: #ffffff;
}

.privacy__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.privacy__title {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
	color: #222;
}

.privacy__block {
	margin-bottom: 48px;
	background-color: #1f1f1f;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 32px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.privacy__heading {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #f1f1f1;
}

.privacy__subheading {
	font-size: 18px;
	font-weight: 600;
	margin: 16px 0 10px;
	color: #f2f2f2;
}

.privacy__text {
	font-size: 16px;
	line-height: 1.7;
	color: #f3f3f3;
	margin-bottom: 16px;
}

.privacy__list {
	list-style: disc;
	padding-left: 20px;
	margin-top: 10px;
	margin-bottom: 16px;
}

.privacy__item {
	font-size: 16px;
	color: #f4f4f4;
	line-height: 1.6;
	margin-bottom: 10px;
}

.privacy__text a {
	color: #007bff;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.privacy__text a:hover {
	color: #0056b3;
}

/* ------------------------------LINKS */
.link-wrap {
	display: flex;
	justify-content: center;
}
.link-page {
	display: block;
	color: var(--error);
	background-color: var(--bg);
	padding: 8px 12px;
	border-radius: 6px;
	transition: all 0.3s ease-in;
}
.link-page:hover {
	color: var(--success);
}

/* -------------------------------------- SECTIONS --------------------------------------------- */

/* Greek key pattern */
.greek-pattern {
	height: 24px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="12" viewBox="0 0 40 12"><path d="M0,0 h8 v4 h-4 v4 h8 v4 h-12 z M12,0 h8 v4 h-4 v4 h8 v4 h-12 z M24,0 h8 v4 h-4 v4 h8 v4 h-12 z M36,0 h4 v12 h-4 z" fill="%23c75c5c"/></svg>');
	background-repeat: repeat-x;
	margin: var(--spacing-md) 0;
}

/* Hero section */
.hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--spacing-xl) 0;
	background: linear-gradient(rgba(26, 43, 64, 0.8), rgba(26, 43, 64, 0.8)),
		url('https://images.pexels.com/photos/9881823/pexels-photo-9881823.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: var(--text-light);
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 24px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="12" viewBox="0 0 40 12"><path d="M0,0 h8 v4 h-4 v4 h8 v4 h-12 z M12,0 h8 v4 h-4 v4 h8 v4 h-12 z M24,0 h8 v4 h-4 v4 h8 v4 h-12 z M36,0 h4 v12 h-4 z" fill="%23d4af37"/></svg>');
	background-repeat: repeat-x;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 24px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="12" viewBox="0 0 40 12"><path d="M0,0 h8 v4 h-4 v4 h8 v4 h-12 z M12,0 h8 v4 h-4 v4 h8 v4 h-12 z M24,0 h8 v4 h-4 v4 h8 v4 h-12 z M36,0 h4 v12 h-4 z" fill="%23d4af37"/></svg>');
	background-repeat: repeat-x;
}

.main-title {
	font-size: 3rem;
	color: var(--secondary);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	margin-bottom: var(--spacing-lg);
	position: relative;
	padding-bottom: var(--spacing-md);
}

.main-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 3px;
	background-color: var(--secondary);
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero-image {
	width: 100%;
	max-width: 500px;
	margin-bottom: var(--spacing-md);
	border: 3px solid var(--secondary);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-text {
	font-size: 1.3rem;
	max-width: 600px;
}

/* Section styling */
.section {
	padding: var(--spacing-xl) 0;
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.animate {
	opacity: 1;
	transform: translateY(0);
}

.section:nth-child(odd) {
	background-color: var(--light);
}

.section:nth-child(even) {
	background-color: #f5f2ed;
}

.section-title {
	font-size: 2.2rem;
	color: var(--primary);
	text-align: center;
	padding-bottom: var(--spacing-sm);
	margin-bottom: var(--spacing-lg);
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 3px;
	background-color: var(--secondary);
}

.column-content {
	max-width: 900px;
	margin: 0 auto;
}

.image-text-container {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
	align-items: center;
	margin-bottom: var(--spacing-lg);
}

.section-image {
	width: 100%;
	max-width: 500px;
	border: 3px solid var(--accent);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.section-image:hover {
	transform: scale(1.02);
}

/* Service cards */
.services-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
	margin-top: var(--spacing-lg);
}

.service-card {
	background-color: white;
	border-radius: var(--radius-md);
	padding: var(--spacing-md);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-left: 4px solid var(--primary);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
	color: var(--primary);
	margin-bottom: var(--spacing-sm);
	font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
	background: linear-gradient(to right, rgba(199, 92, 92, 0.1), rgba(212, 175, 55, 0.1));
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: var(--spacing-md);
	border: 1px solid rgba(107, 91, 61, 0.3);
	border-radius: var(--radius-md);
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}

.faq-question {
	padding: var(--spacing-md);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-family: 'Cinzel', serif;
	font-weight: 600;
	color: var(--dark);
	background-color: rgba(212, 175, 55, 0.15);
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background-color: rgba(212, 175, 55, 0.3);
}
.faq-answer {
	color: var(--dark);
	padding: 5px;
}

/* Media Queries */
@media (min-width: 768px) {
	.services-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero-content {
		flex-direction: row;
		text-align: left;
		gap: var(--spacing-md);
	}

	.hero-image {
		margin-bottom: 0;
		flex: 1;
	}

	.hero-text {
		flex: 1;
	}

	.image-text-container {
		flex-direction: row;
	}

	.section-image {
		flex: 1;
		max-width: 40%;
	}

	.image-text-container .column-content {
		flex: 1.5;
	}

	.main-title {
		font-size: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.services-container {
		grid-template-columns: repeat(3, 1fr);
	}

	.main-title {
		font-size: 4rem;
	}

	.section-title {
		font-size: 2.5rem;
	}


}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulseGold {
	0% {
		box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
	}
}

.service-card:nth-child(1) {
	animation: fadeIn 0.5s 0.1s both;
}
.service-card:nth-child(2) {
	animation: fadeIn 0.5s 0.2s both;
}
.service-card:nth-child(3) {
	animation: fadeIn 0.5s 0.3s both;
}
.service-card:nth-child(4) {
	animation: fadeIn 0.5s 0.4s both;
}
.service-card:nth-child(5) {
	animation: fadeIn 0.5s 0.5s both;
}

/* Trojan War themed decorations */
.service-card::before {
	content: '⚔️';
	position: absolute;
	top: -10px;
	right: 10px;
	font-size: 20px;
	opacity: 0.4;
}

.section-title::before {
	content: '🛡️';
	position: absolute;
	left: -30px;
	top: 0;
	font-size: 24px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.section-title:hover::before {
	opacity: 0.6;
}

@media (max-width: 992px) {
	.main-title {
		font-size: 1.8rem;
	}
}