* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg: #111315;
	--bg-soft: #181b20;
	--text: #f8f6f1;
	--muted: #c2c6ce;
	--primary: #c41e3a;
	--primary-dark: #98162d;
	--accent: #1d4e89;
	--card: #20252e;
	--border: #323a47;
	--radius: 16px;
	--shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

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

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

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container {
	width: min(1100px, 92%);
	margin-inline: auto;
}

.section {
	padding: 80px 0;
}

.section-dark {
	background: var(--bg-soft);
}

.tag {
	color: var(--primary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 0.8rem;
	margin-bottom: 10px;
}

.section-head {
	margin-bottom: 30px;
}

.section-head h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.header {
	position: sticky;
	top: 0;
	z-index: 99;
	background: rgba(17, 19, 21, 0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.brand {
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.4px;
}

.brand span {
	color: var(--primary);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 20px;
	list-style: none;
}

.nav-link {
	color: var(--muted);
	font-weight: 600;
	transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary);
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--border);
	background: transparent;
	border-radius: 10px;
	cursor: pointer;
	padding: 9px 8px;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	margin: 5px 0;
}

.btn {
	background: var(--primary);
	color: #111;
	border: none;
	border-radius: 12px;
	padding: 12px 20px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
	display: inline-block;
}

.btn:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
}

.btn-small {
	padding: 10px 14px;
	font-size: 0.9rem;
}

.btn-outline {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
}

.btn-outline:hover {
	background: rgba(29, 78, 137, 0.22);
	color: var(--text);
}

.hero {
	padding: 88px 0 70px;
	background:
		radial-gradient(circle at 20% 20%, rgba(196, 30, 58, 0.24), transparent 35%),
		radial-gradient(circle at 80% 10%, rgba(29, 78, 137, 0.2), transparent 40%),
		var(--bg);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 28px;
	align-items: center;
}

.hero-content h1 {
	font-size: clamp(2rem, 4.8vw, 3.4rem);
	line-height: 1.2;
	margin-bottom: 16px;
}

.hero-content p {
	color: var(--muted);
}

.hero-actions {
	margin-top: 22px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.hero-side {
	display: grid;
	gap: 14px;
}

.hero-image {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.hero-card {
	background: linear-gradient(145deg, #212733, #181d26);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow);
}

.hero-card h3 {
	margin-bottom: 16px;
}

.hero-card ul {
	list-style: none;
	margin-bottom: 16px;
}

.hero-card li {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card span {
	color: var(--muted);
}

.cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
	transition: transform 0.2s ease;
}

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

.card h3 {
	margin-bottom: 8px;
}

.service-image {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 11px;
	margin-bottom: 12px;
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.card p {
	color: var(--muted);
	margin-bottom: 14px;
}

.card span {
	color: var(--primary);
	font-weight: 800;
}

.about-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 24px;
	align-items: center;
}

.about-text p {
	color: var(--muted);
	margin-bottom: 12px;
}

.about-side {
	display: grid;
	gap: 12px;
}

.about-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 14px;
	border: 1px solid var(--border);
}

.about-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.about-stats div {
	background: #1a1f28;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 18px;
}

.about-stats h3 {
	color: var(--primary);
	font-size: 1.8rem;
}

.about-stats p {
	color: var(--muted);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.gallery-item {
	height: 190px;
	border-radius: 14px;
	border: 1px solid var(--border);
	overflow: hidden;
	margin: 0;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.reviews {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.review {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 18px;
	color: #d5dde7;
}

.review cite {
	display: block;
	margin-top: 12px;
	color: #ff9dad;
	font-style: normal;
}

.booking-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	background: #12161d;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
}

.input-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.input-group label {
	font-weight: 600;
	font-size: 0.92rem;
}

.input-group input,
.input-group select {
	background: #0f1319;
	color: #fff;
	border: 1px solid #283041;
	border-radius: 10px;
	padding: 11px 12px;
	outline: none;
}

.input-group input:focus,
.input-group select:focus {
	border-color: var(--primary);
}

.booking-form .btn {
	grid-column: span 2;
}

.form-message {
	grid-column: span 2;
	min-height: 1.4rem;
	font-weight: 600;
}

.form-message.success {
	color: #80e3a4;
}

.form-message.error {
	color: #ff8f8f;
}

.footer {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 36px 0 18px;
	background: #0d0f13;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
	gap: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-col p {
	margin-top: 10px;
	color: var(--muted);
	max-width: 36ch;
}

.footer-col h4 {
	font-size: 1rem;
	margin-bottom: 10px;
}

.footer-links {
	list-style: none;
	display: grid;
	gap: 8px;
}

.footer-links a {
	color: var(--muted);
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: var(--primary);
}

.social-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.social-links a {
	width: 40px;
	height: 40px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #1d2430;
	border: 1px solid var(--border);
	font-size: 0.82rem;
	font-weight: 700;
	color: #e8edf5;
	transition: all 0.2s ease;
}

.social-links a svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.social-links a:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: 14px;
	color: var(--muted);
}

.to-top {
	color: var(--primary);
	font-weight: 700;
}


.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: 0.5s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

@media (min-width: 1280px) {
	.container {
		width: min(1200px, 90%);
	}

	.hero-image {
		height: 300px;
	}
}

@media (max-width: 960px) {
	.section {
		padding: 70px 0;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.reviews {
		grid-template-columns: 1fr;
	}

	.hero-content h1 {
		font-size: clamp(1.9rem, 5.6vw, 2.7rem);
	}
}

@media (max-width: 820px) {
	.nav-toggle {
		display: block;
	}

	.nav-menu {
		position: absolute;
		top: 72px;
		right: 4%;
		width: min(280px, 92vw);
		background: #131821;
		border: 1px solid var(--border);
		border-radius: 12px;
		padding: 14px;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		transform: scale(0.95);
		transform-origin: top right;
		opacity: 0;
		pointer-events: none;
		transition: 0.2s ease;
	}

	.nav-menu.open {
		opacity: 1;
		transform: scale(1);
		pointer-events: auto;
	}

	.hero-grid,
	.about-grid,
	.gallery-grid,
	.booking-form {
		grid-template-columns: 1fr;
	}

	.hero-image {
		height: 240px;
	}

	.gallery-item {
		height: 220px;
	}

	.booking-form .btn,
	.form-message {
		grid-column: auto;
	}
}

@media (max-width: 520px) {
	.container {
		width: min(1100px, 94%);
	}

	.section {
		padding: 58px 0;
	}

	.cards {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 74px;
	}

	.hero-content h1 {
		font-size: clamp(1.65rem, 7.6vw, 2rem);
	}

	.hero-actions {
		gap: 10px;
	}

	.btn {
		padding: 11px 16px;
		font-size: 0.92rem;
	}

	.hero-card,
	.card,
	.review,
	.booking-form,
	.about-stats div {
		padding: 16px;
	}

	.hero-image,
	.about-image,
	.gallery-item {
		height: 200px;
	}

	.service-image {
		height: 170px;
	}

	.nav-menu {
		right: 3%;
		width: min(260px, 94vw);
	}

	.footer {
		padding-top: 30px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.footer-brand-col,
	.footer-col {
		text-align: center;
	}

	.footer-brand-col p {
		max-width: none;
	}

	.social-links {
		justify-content: center;
	}

	.footer-bottom {
		justify-content: center;
		text-align: center;
	}

}

@media (max-width: 360px) {
	.brand {
		font-size: 1.05rem;
	}

	.nav {
		min-height: 66px;
	}

	.hero {
		padding-top: 66px;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-actions .btn {
		text-align: center;
	}

	.section-head h2 {
		font-size: clamp(1.45rem, 7vw, 1.7rem);
	}

}
