/* ----------------------------------------------- */
/* ---------------- INITIAL SETUP ---------------- */
/* ----------------------------------------------- */

:root {
	font-size: 16px;
	--accent: #d4af37;
	--accent-dark: #a57d17;
	--ink: #1f2b2d;
	--muted: #5f6b6f;
	--bg: #f7f3e8;
	--card: rgba(255, 255, 255, 0.8);
	--shadow: 0 18px 45px rgba(31, 43, 45, 0.12);
}

html {
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	background: linear-gradient(180deg, #fcfbf7 0%, #f4eee2 100%);
	font-size: 18px;
	font-family: 'Outfit', sans-serif;
	color: var(--ink);
	line-height: 1.6;
	overflow-x: hidden;
}

body.scroll-bar {
	overflow-y: auto;
}

#loader {
	background-color: var(--primary-color);
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
	opacity: 0;
	visibility: hidden;
}

.loader-logo {
	height: 100px;
	width: auto;
	opacity: 0;
	transform: scale(0.95);
	animation: loaderFadeIn 1.5s ease-out forwards;
	filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

@keyframes loaderFadeIn {
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.theme-toggle-btn {
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 0.5rem;
}

.theme-toggle-btn .sun-icon,
.theme-toggle-btn .moon-icon {
	width: 20px;
	height: 20px;
}

[data-theme="dark"] .theme-toggle-btn {
	color: #f7f3e8;
}

[data-theme="dark"] body {
	background: linear-gradient(180deg, #0f1720 0%, #1a2430 100%);
	color: #f5f1e8;
}

[data-theme="dark"] .facility-card,
[data-theme="dark"] .safety-card,
[data-theme="dark"] .feature-pill,
[data-theme="dark"] .amenities-track span,
[data-theme="dark"] .cta-card {
	background: rgba(17, 24, 39, 0.9);
	color: #f5f1e8;
}

[data-theme="dark"] .facility-card p,
[data-theme="dark"] .why-us-copy p,
[data-theme="dark"] .section-heading p,
[data-theme="dark"] .cta-card p {
	color: rgba(245, 241, 232, 0.78);
}

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

main.facilities-page {
	padding-bottom: 2rem;
}

.facilities-page .eyebrow {
	display: inline-block;
	margin: 0 0 0.75rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--accent-dark);
}

.facilities-page h1,
.facilities-page h2,
.facilities-page h3 {
	margin: 0 0 0.75rem;
	line-height: 1.2;
}

.facilities-page .section-heading {
	max-width: 720px;
	margin: 0 auto 2rem;
	text-align: center;
}

.facilities-page .section-heading h2 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 700;
}

.facilities-page .section-heading p {
	color: var(--muted);
	font-size: 1.02rem;
}

.facilities-page .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.4rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
	border: 1px solid transparent;
}

.facilities-page .btn:hover,
.facilities-page .btn:focus-visible {
	transform: translateY(-2px);
}

.facilities-page .btn-primary {
	background: linear-gradient(135deg, var(--accent), #f2d06b);
	color: #fff;
	box-shadow: 0 10px 25px rgba(212, 175, 55, 0.24);
}

.facilities-page .btn-secondary {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(10px);
}

.facilities-page .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ----------------------------------------------- */
/* ---------------- HERO SECTION ----------------- */
/* ----------------------------------------------- */

.facilities-hero {
	position: relative;
	min-height: 95vh;
	display: grid;
	place-items: center;
	padding: 5rem 1.25rem 3.5rem;
	background-color: #0a1018;
	color: #fff;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10, 16, 24, 0.82), rgba(10, 16, 24, 0.62));
	z-index: 1;
}

.facilities-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 35%);
	pointer-events: none;
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	max-width: 780px;
	text-align: center;
}

.hero-content h1 {
	font-size: clamp(2.4rem, 5vw, 4.25rem);
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.2rem);
	max-width: 660px;
	margin: 0 auto 1.8rem;
	color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.scroll-indicator {
	margin-top: 2rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 2.2rem;
	height: 3.4rem;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 999px;
	animation: float 1.8s ease-in-out infinite;
}

.scroll-indicator span {
	display: block;
	width: 0.42rem;
	height: 0.8rem;
	background: #fff;
	border-radius: 999px;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(8px); }
}

/* ----------------------------------------------- */
/* ---------------- INTRO SECTION ---------------- */
/* ----------------------------------------------- */

.intro-section,
.facilities-section,
.why-us-section,
.safety-section,
.cta-section {
	padding: 5rem 1.25rem;
}

.intro-section {
	max-width: 980px;
	margin: 0 auto;
}

.intro-section .section-heading {
	margin-bottom: 0;
}

/* ----------------------------------------------- */
/* -------------- FACILITIES GRID --------------- */
/* ----------------------------------------------- */

.facilities-section {
	max-width: 1240px;
	margin: 0 auto;
}

.facility-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.2rem;
}

.facility-card {
	position: relative;
	padding: 1.4rem;
	border-radius: 24px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 240, 223, 0.9));
	box-shadow: var(--shadow);
	border: 1px solid rgba(212, 175, 55, 0.16);
	backdrop-filter: blur(16px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.facility-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent 50%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.facility-card:hover,
.facility-card:focus-within {
	transform: translateY(-6px) scale(1.01);
	box-shadow: 0 20px 50px rgba(31, 43, 45, 0.16);
}

.facility-card:hover::before,
.facility-card:focus-within::before {
	opacity: 1;
}

.facility-icon {
	width: 3.2rem;
	height: 3.2rem;
	display: grid;
	place-items: center;
	border-radius: 18px;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.85));
	color: var(--accent-dark);
	font-size: 1.2rem;
	transition: transform 0.3s ease, color 0.3s ease;
}

.facility-card:hover .facility-icon {
	transform: rotate(8deg) scale(1.05);
	color: var(--accent);
}

.facility-card h3 {
	font-size: 1.08rem;
	font-weight: 700;
	color: #172225;
}

.facility-card p {
	margin: 0;
	font-size: 0.96rem;
	color: var(--muted);
}

/* ----------------------------------------------- */
/* --------------- WHY CHOOSE US ---------------- */
/* ----------------------------------------------- */

.why-us-section {
	max-width: 1180px;
	margin: 0 auto;
}

.why-us-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 2rem;
	align-items: center;
}

.why-us-copy h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.why-us-copy p {
	color: var(--muted);
	font-size: 1rem;
}

.why-us-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.feature-pill {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.95rem 1rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 22px rgba(31, 43, 45, 0.08);
	color: var(--ink);
	font-weight: 600;
}

.feature-pill i {
	color: var(--accent-dark);
}

/* ----------------------------------------------- */
/* ---------------- SAFETY SECTION --------------- */
/* ----------------------------------------------- */

.safety-section {
	max-width: 1180px;
	margin: 0 auto;
}

.safety-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
}

.safety-card {
	padding: 1.3rem 1rem;
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 238, 226, 0.9));
	box-shadow: 0 14px 35px rgba(31, 43, 45, 0.08);
	text-align: center;
	border: 1px solid rgba(212, 175, 55, 0.14);
}

.safety-card i {
	font-size: 1.45rem;
	color: var(--accent-dark);
	margin-bottom: 0.8rem;
}

.safety-card h3 {
	font-size: 1rem;
	margin: 0;
}

/* ----------------------------------------------- */
/* ------------- AMENITIES HIGHLIGHT ------------ */
/* ----------------------------------------------- */

.amenities-highlight {
	max-width: 1180px;
	margin: 0 auto;
	padding-top: 0.5rem;
}

.amenities-track {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	padding: 1.2rem;
	border-radius: 26px;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.86));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.amenities-track span {
	display: inline-flex;
	align-items: center;
	gap: 0.52rem;
	padding: 0.75rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	color: var(--ink);
	font-weight: 600;
	transition: transform 0.3s ease, background 0.3s ease;
}

.amenities-track span:hover {
	transform: translateY(-3px);
	background: #fff;
}

/* ----------------------------------------------- */
/* ---------------- CTA SECTION ----------------- */
/* ----------------------------------------------- */

.cta-section {
	max-width: 1180px;
	margin: 0 auto;
}

.cta-card {
	padding: 2.6rem;
	border-radius: 30px;
	text-align: center;
	background: linear-gradient(135deg, rgba(27, 38, 41, 0.96), rgba(57, 80, 88, 0.95));
	color: #fff;
	box-shadow: 0 20px 55px rgba(31, 43, 45, 0.16);
}

.cta-card h2 {
	font-size: clamp(1.7rem, 2.8vw, 2.4rem);
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.cta-card p {
	max-width: 640px;
	margin: 0 auto 1.5rem;
	color: rgba(255, 255, 255, 0.8);
}

/* ----------------------------------------------- */
/* --------------- RESPONSIVE QUERIES ------------ */
/* ----------------------------------------------- */

@media (max-width: 900px) {
	.why-us-grid {
		grid-template-columns: 1fr;
	}

	.why-us-list {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
		
	.facilities-hero {
		min-height: 85vh;
		padding-top: 4rem;
		padding-bottom: 2.5rem;
		background-position: center top;
	}

	.intro-section,
	.facilities-section,
	.why-us-section,
	.safety-section,
	.cta-section {
		padding: 4rem 1rem;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.why-us-list {
		grid-template-columns: 1fr;
	}

	.cta-card {
		padding: 1.8rem 1.1rem;
	}
}

/* ----------------------------------------------- */
/* ---------------- FOOTER (FACILITIES) ----------- */
/* ----------------------------------------------- */
.footer {
	background: #0f0f0f;
	color: #e9e6e3;
	padding: 3rem 1.25rem;
}
.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}
.footer-nav {
	display: flex;
	gap: 2.5rem;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-description,
.footer-quick-links,
.footer-contact-us {
	flex: 1 1 260px;
	min-width: 220px;
}
.footer-description p {
	margin: 0.6rem 0 0;
	color: rgba(233,230,227,0.9);
}
.footer-quick-links h3,
.footer-contact-us h3 {
	margin-bottom: 0.6rem;
}
.footer-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
	color: rgba(233,230,227,0.9);
}
.footer-links-list li {
	margin: 0.45rem 0;
}
.footer-links-list a {
	color: rgba(233,230,227,0.9);
	text-decoration: none;
	opacity: 0.95;
}
.footer-links-list a:hover {
	color: var(--accent);
	text-decoration: underline;
}
.footer-description-icon {
	width: 20px;
	margin-right: 10px;
	vertical-align: middle;
}
.footer-description-detail {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0.5rem 0;
	color: rgba(233,230,227,0.9);
}
.footer-follow-us-lists {
	display: flex;
	gap: 0.6rem;
	padding: 0;
	margin: 0;
	list-style: none;
}
.follow-us-list img {
	width: 26px;
	height: auto;
	display: block;
}

@media (max-width: 720px) {
	.footer-nav {
		flex-direction: column;
		gap: 1.2rem;
	}
	.footer-description,
	.footer-quick-links,
	.footer-contact-us {
		min-width: 100%;
	}
}