/* ==========================================================================
   AURA LUXURY - PREMIUM COMPANION & CONCIERGE DESIGN SYSTEM
   Styles for Luxury Independent Companion Website (Nina White)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties & Design Tokens
   -------------------------------------------------------------------------- */
:root {
	/* Color Palette */
	--bg-dark: #070707;
	--bg-primary: #0b0b0b;
	--bg-secondary: #141414;
	--bg-tertiary: #1b1b1b;
	--bg-card: rgba(26, 26, 26, 0.65);

	/* Gold & Champagne Accents */
	--gold-primary: #d4af37;
	--gold-light: #f5e6c8;
	--gold-dark: #aa8625;
	--gold-gradient: linear-gradient(135deg, #f5e6c8 0%, #d4af37 50%, #aa8625 100%);
	--gold-gradient-soft: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(245, 230, 200, 0.05) 100%);
	--gold-glow: 0 0 25px rgba(212, 175, 55, 0.25);
	--gold-border: rgba(212, 175, 55, 0.3);

	/* Text Colors */
	--text-primary: #ffffff;
	--text-secondary: #c5c5c5;
	--text-muted: #888888;
	--text-gold: #f5e6c8;

	/* Typography */
	--font-heading: 'Playfair Display', Georgia, serif;
	--font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	/* Layout & Spacing */
	--container-width: 1240px;
	--nav-height: 90px;
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-full: 9999px;

	/* Glassmorphism Effects */
	--glass-bg: rgba(18, 18, 18, 0.65);
	--glass-border: 1px solid rgba(212, 175, 55, 0.18);
	--glass-blur: blur(20px);

	/* Animation Timings */
	--transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Global Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	background-color: var(--bg-dark);
	color: var(--text-primary);
	font-family: var(--font-body);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: var(--bg-primary);
	line-height: 1.7;
	color: var(--text-secondary);
	overflow-x: hidden;
	position: relative;
}

/* Selection */
::selection {
	background: var(--gold-primary);
	color: var(--bg-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
	background: var(--gold-dark);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gold-primary);
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	color: var(--text-primary);
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-fast);
}

ul {
	list-style: none;
}

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

/* Container */
.container {
	width: 90%;
	max-width: var(--container-width);
	margin: 0 auto;
}

.section-padding {
	padding: 120px 0;
}

/* Section Header Shared */
.section-subtitle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--gold-primary);
	font-weight: 600;
	margin-bottom: 12px;
}

.section-subtitle::before,
.section-subtitle::after {
	content: '';
	width: 24px;
	height: 1px;
	background: var(--gold-primary);
	opacity: 0.6;
}

.section-title {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	color: var(--text-primary);
	margin-bottom: 20px;
}

.section-title span {
	background: var(--gold-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-style: italic;
}

.section-desc {
	font-size: 1.05rem;
	color: var(--text-secondary);
	max-width: 680px;
	margin: 0 auto;
	font-weight: 300;
}

.text-center {
	text-align: center;
}

/* --------------------------------------------------------------------------
   3. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 36px;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: var(--radius-full);
	cursor: pointer;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
	border: none;
	z-index: 1;
}

.btn-gold {
	background: var(--gold-gradient);
	color: #0b0b0b;
	box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.6s ease;
	z-index: -1;
}

.btn-gold:hover::before {
	left: 100%;
}

.btn-gold:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
	color: #000;
}

.btn-outline {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid var(--gold-border);
	backdrop-filter: blur(10px);
}

.btn-outline:hover {
	border-color: var(--gold-primary);
	background: rgba(212, 175, 55, 0.1);
	color: var(--gold-light);
	transform: translateY(-3px);
	box-shadow: var(--gold-glow);
}

/* --------------------------------------------------------------------------
   4. Preloader
   -------------------------------------------------------------------------- */
#preloader {
	position: fixed;
	inset: 0;
	background-color: var(--bg-dark);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
	opacity: 0;
	visibility: hidden;
}

.preloader-logo {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	letter-spacing: 0.15em;
	background: var(--gold-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 24px;
}

.spinner {
	width: 48px;
	height: 48px;
	border: 2px solid rgba(212, 175, 55, 0.15);
	border-top-color: var(--gold-primary);
	border-radius: 50%;
	animation: spin 1s infinite linear;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* --------------------------------------------------------------------------
   5. Navigation Header
   -------------------------------------------------------------------------- */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--nav-height);
	z-index: 1000;
	transition: all var(--transition-normal);
}

.navbar.scrolled {
	height: 75px;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	border-bottom: var(--glass-border);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.nav-logo {
	font-family: var(--font-heading);
	font-size: 1.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-primary);
}

.nav-logo span {
	color: var(--gold-primary);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-link {
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-secondary);
	position: relative;
	padding: 8px 0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background: var(--gold-gradient);
	transition: width var(--transition-fast);
}

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

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-cta {
	padding: 10px 24px;
	font-size: 0.82rem;
}

/* Hamburger Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 1001;
}

.menu-toggle span {
	width: 100%;
	height: 2px;
	background: var(--gold-light);
	border-radius: 2px;
	transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(10px);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-normal);
}

.mobile-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: var(--nav-height);
	overflow: hidden;
	background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
		radial-gradient(circle at 10% 80%, rgba(26, 26, 26, 0.8) 0%, transparent 70%);
}

.hero-glow-1,
.hero-glow-2 {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	pointer-events: none;
}

.hero-glow-1 {
	top: 10%;
	right: 5%;
	width: 450px;
	height: 450px;
	background: rgba(212, 175, 55, 0.12);
}

.hero-glow-2 {
	bottom: 10%;
	left: -5%;
	width: 400px;
	height: 400px;
	background: rgba(18, 18, 18, 0.5);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 60px;
	position: relative;
	z-index: 2;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-radius: var(--radius-full);
	background: rgba(212, 175, 55, 0.08);
	border: 1px solid rgba(212, 175, 55, 0.25);
	color: var(--gold-light);
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.hero-badge i {
	color: var(--gold-primary);
	font-size: 0.75rem;
}

.hero-title {
	font-size: clamp(2.8rem, 5.5vw, 4.5rem);
	line-height: 1.1;
	margin-bottom: 24px;
}

.hero-title span {
	display: block;
	background: var(--gold-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-style: italic;
}

.hero-text {
	font-size: 1.15rem;
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 580px;
	font-weight: 300;
}

.hero-buttons {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-image-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-image-frame {
	position: relative;
	width: 100%;
	max-width: 460px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: var(--glass-border);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
}

.hero-image-frame img {
	width: 100%;
	height: 580px;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.hero-image-frame:hover img {
	transform: scale(1.03);
}

.hero-image-badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	right: 24px;
	padding: 16px 20px;
	background: rgba(15, 15, 15, 0.75);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hero-badge-info h4 {
	font-size: 0.95rem;
	color: var(--gold-light);
}

.hero-badge-info p {
	font-size: 0.78rem;
	color: var(--text-muted);
}

.hero-badge-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--gold-gradient);
	color: var(--bg-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--text-muted);
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	z-index: 5;
}

.scroll-mouse {
	width: 22px;
	height: 36px;
	border: 2px solid var(--gold-border);
	border-radius: 12px;
	display: flex;
	justify-content: center;
	padding-top: 6px;
}

.scroll-wheel {
	width: 3px;
	height: 8px;
	background: var(--gold-primary);
	border-radius: 2px;
	animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
	0% {
		transform: translateY(0);
		opacity: 1;
	}

	100% {
		transform: translateY(12px);
		opacity: 0;
	}
}

/* --------------------------------------------------------------------------
   7. About Section & Animated Stats
   -------------------------------------------------------------------------- */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-content-bio p {
	margin-bottom: 20px;
	font-size: 1.05rem;
	font-weight: 300;
	line-height: 1.8;
}

.about-pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 36px;
}

.pillar-item {
	padding: 20px;
	background: var(--bg-secondary);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-md);
	transition: border-color var(--transition-fast);
}

.pillar-item:hover {
	border-color: var(--gold-border);
}

.pillar-item i {
	font-size: 1.4rem;
	color: var(--gold-primary);
	margin-bottom: 12px;
}

.pillar-item h4 {
	font-size: 1rem;
	margin-bottom: 6px;
}

.pillar-item p {
	font-size: 0.84rem;
	color: var(--text-muted);
	margin-bottom: 0;
}

/* Stats Counter Grid */
.stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.stat-card {
	background: var(--glass-bg);
	border: var(--glass-border);
	backdrop-filter: var(--glass-blur);
	padding: 40px 30px;
	border-radius: var(--radius-lg);
	text-align: center;
	transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.stat-card:hover {
	transform: translateY(-6px);
	border-color: var(--gold-primary);
	box-shadow: var(--gold-glow);
}

.stat-number {
	font-family: var(--font-heading);
	font-size: 3.2rem;
	font-weight: 600;
	background: var(--gold-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   8. Services Section
   -------------------------------------------------------------------------- */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.service-card {
	background: var(--bg-secondary);
	border: 1px solid rgba(212, 175, 55, 0.12);
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	position: relative;
	transition: all var(--transition-normal);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gold-gradient);
	opacity: 0;
	transition: opacity var(--transition-fast);
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: var(--gold-border);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.service-card:hover::before {
	opacity: 1;
}

.service-icon-box {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--gold-primary);
	margin-bottom: 28px;
}

.service-title {
	font-size: 1.4rem;
	margin-bottom: 14px;
}

.service-desc {
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin-bottom: 24px;
	font-weight: 300;
}

.service-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-duration {
	font-size: 0.82rem;
	color: var(--gold-light);
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	gap: 6px;
}

.btn-text {
	font-size: 0.84rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gold-primary);
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: gap var(--transition-fast);
}

.btn-text:hover {
	gap: 10px;
	color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   9. Rates & Investment Section
   -------------------------------------------------------------------------- */
.rates-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.rate-card {
	background: var(--glass-bg);
	border: var(--glass-border);
	backdrop-filter: var(--glass-blur);
	border-radius: var(--radius-lg);
	padding: 44px 32px;
	text-align: center;
	position: relative;
	transition: all var(--transition-normal);
}

.rate-card.featured {
	background: linear-gradient(180deg, rgba(30, 26, 18, 0.9) 0%, rgba(18, 18, 18, 0.9) 100%);
	border: 1px solid var(--gold-primary);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
	transform: scale(1.04);
}

.featured-tag {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold-gradient);
	color: #000;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	padding: 4px 16px;
	border-radius: var(--radius-full);
}

.rate-title {
	font-size: 1.5rem;
	margin-bottom: 12px;
}

.rate-subtitle {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 28px;
}

.rate-price {
	font-family: var(--font-heading);
	font-size: 2.8rem;
	font-weight: 600;
	color: var(--gold-light);
	margin-bottom: 6px;
}

.rate-price span {
	font-size: 1rem;
	font-family: var(--font-body);
	color: var(--text-muted);
}

.rate-features {
	margin: 30px 0;
	text-align: left;
}

.rate-features li {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.rate-features li i {
	color: var(--gold-primary);
	font-size: 0.85rem;
}

.rates-disclaimer {
	margin-top: 50px;
	padding: 24px;
	background: rgba(212, 175, 55, 0.05);
	border: 1px dashed var(--gold-border);
	border-radius: var(--radius-md);
	text-align: center;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   10. Filterable Gallery & Custom Lightbox
   -------------------------------------------------------------------------- */
.gallery-filters {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 40px;
	margin-bottom: 40px;
}

.filter-btn {
	padding: 10px 24px;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: transparent;
	color: var(--text-secondary);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-full);
	cursor: pointer;
	transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--gold-gradient);
	color: var(--bg-dark);
	border-color: var(--gold-primary);
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
}

.gallery-item {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	height: 380px;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(11, 11, 11, 0.85) 0%, rgba(11, 11, 11, 0.1) 60%);
	opacity: 0;
	transition: opacity var(--transition-fast);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 30px;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-category {
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold-primary);
	margin-bottom: 6px;
}

.gallery-title {
	font-size: 1.25rem;
	color: var(--text-primary);
}

/* Lightbox Modal */
.lightbox-modal {
	position: fixed;
	inset: 0;
	background: rgba(5, 5, 5, 0.92);
	backdrop-filter: blur(20px);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-normal);
}

.lightbox-modal.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lightbox-img {
	max-width: 100%;
	max-height: 75vh;
	object-fit: contain;
	border-radius: var(--radius-md);
	border: var(--glass-border);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
	margin-top: 16px;
	color: var(--gold-light);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	text-align: center;
}

.lightbox-prev,
.lightbox-next {
	position: absolute;
	background: rgba(26, 26, 26, 0.8);
	border: 1px solid var(--gold-border);
	color: var(--gold-light);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all var(--transition-fast);
}

.lightbox-close {
	position: fixed;
	top: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--gold-gradient);
	color: #0b0b0b;
	border: 2px solid #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.6rem;
	z-index: 10005;
	transition: all var(--transition-fast);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.6);
}

.lightbox-prev {
	left: -70px;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-next {
	right: -70px;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-close:hover {
	transform: scale(1.15) rotate(90deg);
	background: #ffffff;
	color: #000000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
	background: var(--gold-gradient);
	color: var(--bg-dark);
}

/* --------------------------------------------------------------------------
   11. Social Media Suite & Brand Icon Customization
   -------------------------------------------------------------------------- */
.social-icon,
.fa-x-twitter,
.fa-twitter {
	color: var(--gold-primary) !important;
}

/* --------------------------------------------------------------------------
   12. Testimonials & Reviews Slider
   -------------------------------------------------------------------------- */
.reviews-slider-wrapper {
	max-width: 900px;
	margin: 50px auto 0;
	position: relative;
	overflow: hidden;
	padding: 20px 0 60px;
}

.reviews-track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
	min-width: 100%;
	padding: 0 15px;
}

.review-card {
	background: var(--glass-bg);
	border: var(--glass-border);
	backdrop-filter: var(--glass-blur);
	padding: 50px 40px;
	border-radius: var(--radius-lg);
	text-align: center;
	position: relative;
}

.review-stars {
	color: var(--gold-primary);
	font-size: 1.1rem;
	margin-bottom: 24px;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.review-text {
	font-size: 1.15rem;
	font-style: italic;
	line-height: 1.8;
	color: var(--text-primary);
	margin-bottom: 30px;
	font-weight: 300;
}

.review-author {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	color: var(--gold-light);
}

.review-city {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--text-muted);
	margin-top: 4px;
}

.slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.slider-arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--gold-border);
	background: transparent;
	color: var(--gold-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.slider-arrow:hover {
	background: var(--gold-gradient);
	color: var(--bg-dark);
	border-color: var(--gold-primary);
}

.slider-dots {
	display: flex;
	gap: 10px;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: all var(--transition-fast);
}

.dot.active {
	background: var(--gold-primary);
	width: 28px;
	border-radius: 10px;
}

/* --------------------------------------------------------------------------
   13. Booking Section & Policy Card
   -------------------------------------------------------------------------- */
.booking-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
	margin-top: 60px;
}

.booking-form-box,
.booking-policy-box {
	background: var(--bg-secondary);
	border: 1px solid rgba(212, 175, 55, 0.15);
	border-radius: var(--radius-lg);
	padding: 44px 36px;
}

.booking-form-box h3,
.booking-policy-box h3 {
	font-size: 1.6rem;
	margin-bottom: 8px;
}

.booking-form-box p,
.booking-policy-box p {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin-bottom: 30px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group.full-width {
	grid-column: span 2;
}

.form-group label {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-secondary);
	font-weight: 500;
}

.form-control,
input,
select,
textarea {
	width: 100%;
	padding: 14px 18px;
	background: rgba(11, 11, 11, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-sm);
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 16px !important;
	outline: none;
	transition: all var(--transition-fast);
}

.form-control:focus {
	border-color: var(--gold-primary);
	box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

select.form-control {
	cursor: pointer;
}

select.form-control option {
	background: var(--bg-primary);
	color: var(--text-primary);
}

textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

.error-msg {
	font-size: 0.75rem;
	color: #ff6b6b;
	display: none;
}

.form-group.invalid .error-msg {
	display: block;
}

.form-group.invalid .form-control {
	border-color: #ff6b6b;
}

/* Policy Card List */
.policy-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.policy-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.policy-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.25);
	color: var(--gold-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.policy-info h5 {
	font-size: 0.95rem;
	color: var(--gold-light);
	margin-bottom: 4px;
}

.policy-info p {
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 0;
	line-height: 1.5;
}

/* Modal Success Popup */
.success-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(15px);
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-normal);
}

.success-modal.active {
	opacity: 1;
	visibility: visible;
}

.success-card {
	background: var(--bg-secondary);
	border: 1px solid var(--gold-primary);
	padding: 50px 40px;
	border-radius: var(--radius-lg);
	max-width: 480px;
	width: 90%;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), var(--gold-glow);
}

.success-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--gold-gradient);
	color: var(--bg-dark);
	font-size: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

.success-card h3 {
	font-size: 1.8rem;
	margin-bottom: 12px;
}

.success-card p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin-bottom: 30px;
}

/* --------------------------------------------------------------------------
   14. FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-wrapper {
	max-width: 860px;
	margin: 60px auto 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.faq-item {
	background: var(--bg-secondary);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: border-color var(--transition-fast);
}

.faq-item.active {
	border-color: var(--gold-border);
}

.faq-header {
	padding: 24px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
}

.faq-question {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--text-primary);
}

.faq-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: var(--gold-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
	background: var(--gold-primary);
	color: var(--bg-dark);
}

.faq-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, padding 0.4s ease-out;
	padding: 0 28px;
}

.faq-body p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	padding-bottom: 24px;
	line-height: 1.7;
	font-weight: 300;
}

/* --------------------------------------------------------------------------
   15. Contact Section
   -------------------------------------------------------------------------- */
.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 60px;
	margin-top: 60px;
}

.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.contact-info-card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	background: var(--bg-secondary);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-md);
}

.contact-info-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--gold-border);
	color: var(--gold-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.contact-info-text h5 {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
	font-size: 1.05rem;
	color: var(--gold-light);
	font-weight: 500;
}

/* --------------------------------------------------------------------------
   16. Footer & Back-to-Top
   -------------------------------------------------------------------------- */
.footer {
	background: var(--bg-dark);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 80px 0 40px;
	position: relative;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 50px;
	margin-bottom: 60px;
}

.footer-brand .footer-logo {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	margin-bottom: 16px;
	display: inline-block;
}

.footer-brand p {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin-bottom: 24px;
	max-width: 320px;
}

.footer-socials {
	display: flex;
	gap: 14px;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	transition: all var(--transition-fast);
}

.social-icon:hover {
	background: var(--gold-gradient);
	color: var(--bg-dark);
	border-color: var(--gold-primary);
}

.footer-col h4 {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--gold-light);
	margin-bottom: 24px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links a {
	font-size: 0.9rem;
	color: var(--text-muted);
}

.footer-links a:hover {
	color: var(--gold-primary);
	padding-left: 4px;
}

.footer-bottom {
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* Back to top float button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--glass-bg);
	border: var(--glass-border);
	color: var(--gold-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	cursor: pointer;
	z-index: 990;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-normal);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: var(--gold-gradient);
	color: var(--bg-dark);
	transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   17. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.hero-text {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-buttons {
		justify-content: center;
	}

	.about-grid,
	.booking-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.lightbox-prev {
		left: 10px;
	}

	.lightbox-next {
		right: 10px;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 380px;
		height: 100vh;
		background: var(--bg-secondary);
		border-left: var(--glass-border);
		flex-direction: column;
		justify-content: center;
		gap: 28px;
		z-index: 1000;
		transition: right var(--transition-normal);
		padding: 40px;
	}

	.nav-menu.active {
		right: 0;
	}

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

	.form-group.full-width {
		grid-column: span 1;
	}

	.about-pillars {
		grid-template-columns: 1fr;
	}

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

	.footer-bottom {
		flex-direction: column;
		gap: 14px;
		text-align: center;
	}
}

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

	.btn {
		width: 100%;
	}

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

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