* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	line-height: 1.5;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

section {
	padding: 80px 0;
}

h1,
h2,
h3 {
	font-weight: 700;
	letter-spacing: -0.02em;
}

h2 {
	font-size: 2.2rem;
	margin-bottom: 16px;
	text-align: center;
}

.section-subhead {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 48px auto;
	font-size: 1.1rem;
}

.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 40px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

/* Шапка */
.navbar {
	padding: 20px 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.logo {
	font-size: 1.8rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 32px;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.hero {
	padding: 60px 0;
}

.hero-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
}

.hero-text {
	flex: 1.2;
}

.hero-text h1 {
	font-size: 3.2rem;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero-text p {
	font-size: 1.2rem;
	margin-bottom: 32px;
}

.page-hero {
	padding: 60px 0;
	text-align: center;
}

.page-hero h1 {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.page-hero p {
	font-size: 1.1rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

.flight-form .form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}
.form-group {
	flex: 1;
	min-width: 140px;
}
.form-group label {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.form-group input,
.form-group select {
	width: 100%;
	padding: 12px 12px;
	border: 1px solid #dce4ec;
	border-radius: 20px;
	font-family: inherit;
	font-size: 0.95rem;
}
.search-btn {
	width: 100%;
	padding: 14px;
	font-size: 1.1rem;
	margin-top: 8px;
}

.search-card {
	flex: 1;
	background: white;
	border-radius: 32px;
	padding: 32px;
	box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

.destinations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	margin-top: 20px;
}

.dest-card {
	background: white;
	border-radius: 28px;
	padding: 24px;
	text-align: center;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
	border: 1px solid #e9eff4;
}

.dest-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}
.dest-card i {
	font-size: 2.5rem;
	margin-bottom: 16px;
}
.dest-card h3 {
	margin-bottom: 8px;
}
.dest-card p {
	font-size: 0.9rem;
}

.tariff-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
}
.tariff-card {
	background: white;
	border-radius: 28px;
	padding: 28px 24px;
	flex: 1;
	min-width: 240px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
	border-top: 5px solid #4a9fd8;
}
.tariff-card h3 {
	font-size: 1.7rem;
	margin-bottom: 16px;
}
.tariff-feature {
	list-style: none;
	margin: 20px 0;
}
.tariff-feature li {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.tariff-feature i.fa-check {
	color: #2c8f5e;
	width: 20px;
}
.tariff-feature i.fa-times {
	color: #c25b4a;
	width: 20px;
}
.price {
	font-weight: 800;
	font-size: 1.5rem;
	margin: 20px 0;
}

table {
	width: 100%;
	border-collapse: collapse;
}
th,
td {
	padding: 16px 12px;
	text-align: center;
}
th {
	font-weight: 600;
}

.about-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
}
.about-text {
	flex: 1;
}
.contact-info {
	flex: 1;
	background: white;
	border-radius: 28px;
	padding: 32px;
}
.contact-info i {
	width: 36px;
}

footer {
	padding: 48px 0;
	text-align: center;
}
.footer-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin: 20px 0;
}

@media (max-width: 768px) {
	.navbar .container {
		flex-direction: column;
		gap: 16px;
	}
	.nav-links {
		gap: 20px;
	}
	.hero-text h1 {
		font-size: 2.2rem;
	}
	section {
		padding: 50px 0;
	}
	h2 {
		font-size: 1.8rem;
	}
}
