/* ==========================================================================
   کلاسیک پلاس | تشریفات لوکس مجالس و عروسی (Classic Plus Luxury Events)
   Theme: Midnight Charcoal, Deep Onyx, Champagne Gold, Pearl White
   ========================================================================== */

:root {
	color-scheme: dark;
	--bg-main: #09090b;
	--bg-surface: #111115;
	--bg-card: #16161c;
	--bg-card-hover: #1d1d26;
	--bg-glass: rgba(18, 18, 24, 0.75);
	--bg-glass-strong: rgba(14, 14, 18, 0.92);
	
	--fg-main: #f8f8fa;
	--fg-muted: #a3a3b2;
	--fg-faint: #6e6e7e;

	/* Gold Palette */
	--gold-300: #fae29f;
	--gold-400: #eec96d;
	--gold-500: #d4af37;
	--gold-600: #b58d24;
	--gold-700: #8d6b15;
	--gold-gradient: linear-gradient(135deg, #fae29f 0%, #d4af37 50%, #aa7c11 100%);
	--gold-gradient-soft: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.03) 100%);
	--gold-gradient-glow: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15), transparent 70%);
	--gold-border: rgba(212, 175, 55, 0.28);
	--gold-border-bright: rgba(212, 175, 55, 0.6);
	--gold-glow: 0 0 25px rgba(212, 175, 55, 0.2);

	--border-subtle: rgba(255, 255, 255, 0.08);
	--border-card: rgba(255, 255, 255, 0.06);

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-full: 9999px;

	--font-fa: 'Vazirmatn', -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
	--font-serif: 'Cormorant Garamond', 'Cinzel', serif;

	--header-height: 80px;
	--transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	scroll-behavior: smooth;
	direction: rtl;
	text-align: right;
}

body {
	background-color: var(--bg-main);
	color: var(--fg-main);
	font-family: var(--font-fa);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	selection-background-color: var(--gold-500);
	selection-color: #000;
}

::selection {
	background: var(--gold-500);
	color: #09090b;
}

/* Custom Gold Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #0d0d10;
}
::-webkit-scrollbar-thumb {
	background: #2b2b36;
	border-radius: 4px;
	border: 1px solid rgba(212, 175, 55, 0.2);
}
::-webkit-scrollbar-thumb:hover {
	background: var(--gold-600);
}

/* Base Primitives compatible with ui.tsx */
.loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	padding: 2.5rem;
	color: var(--gold-400);
}

.spinner {
	flex: none;
	width: 1.5rem;
	height: 1.5rem;
	border: 2px solid rgba(212, 175, 55, 0.2);
	border-top-color: var(--gold-400);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

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

.empty {
	padding: 3rem 1.5rem;
	text-align: center;
	color: var(--fg-muted);
}

.empty-title {
	margin-bottom: 0.5rem;
	color: var(--fg-main);
	font-size: 1.25rem;
	font-weight: 600;
}

.alert {
	padding: 1rem 1.25rem;
	border-radius: var(--radius-md);
	background: rgba(220, 38, 38, 0.1);
	border: 1px solid rgba(220, 38, 38, 0.3);
	color: #fca5a5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.alert-error {
	border-color: rgba(239, 68, 68, 0.4);
}

/* Typography & Accent classes */
.gold-text {
	background: var(--gold-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.gold-gradient-bg {
	background: var(--gold-gradient);
	color: #09090b !important;
}

.serif-title {
	font-family: var(--font-serif);
	letter-spacing: 0.05em;
}

/* Container */
.container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.container-narrow {
	max-width: 900px;
}

/* Header & Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
	transition: var(--transition-smooth);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
}

.navbar.scrolled {
	background: var(--bg-glass-strong);
	border-bottom: 1px solid var(--gold-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%;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
	color: #fff;
}

.brand-emblem {
	width: 44px;
	height: 44px;
	border: 1.5px solid var(--gold-400);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(17, 17, 21, 0.8) 100%);
	box-shadow: var(--gold-glow);
	transform: rotate(45deg);
	transition: var(--transition-smooth);
}

.brand-emblem-inner {
	transform: rotate(-45deg);
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--gold-300);
	font-family: var(--font-serif);
}

.brand-logo:hover .brand-emblem {
	transform: rotate(0deg) scale(1.05);
	border-color: var(--gold-300);
}
.brand-logo:hover .brand-emblem-inner {
	transform: rotate(0deg);
}

.brand-text-wrapper {
	display: flex;
	flex-direction: column;
}

.brand-name {
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #ffffff;
}

.brand-tag {
	font-size: 0.72rem;
	color: var(--gold-400);
	letter-spacing: 0.08em;
	font-weight: 500;
}

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

.nav-link {
	color: var(--fg-muted);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: var(--transition-smooth);
	position: relative;
	padding: 0.4rem 0;
}

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

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

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

.nav-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* Luxury Buttons */
.btn-gold {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.75rem 1.6rem;
	background: var(--gold-gradient);
	color: #0b0b0d;
	font-weight: 700;
	font-size: 0.95rem;
	border: 1px solid var(--gold-300);
	border-radius: var(--radius-full);
	cursor: pointer;
	text-decoration: none;
	transition: var(--transition-smooth);
	box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
	white-space: nowrap;
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 28px rgba(212, 175, 55, 0.45);
	filter: brightness(1.06);
}

.btn-gold-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.75rem 1.6rem;
	background: rgba(212, 175, 55, 0.05);
	color: var(--gold-300);
	font-weight: 600;
	font-size: 0.95rem;
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-full);
	cursor: pointer;
	text-decoration: none;
	transition: var(--transition-smooth);
	backdrop-filter: blur(8px);
}

.btn-gold-outline:hover {
	background: rgba(212, 175, 55, 0.15);
	border-color: var(--gold-400);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--gold-glow);
}

.menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--border-subtle);
	color: var(--gold-300);
	padding: 0.5rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: calc(var(--header-height) + 3rem) 0 5rem;
	overflow: hidden;
	background-color: #08080a;
}

.hero-background-carousel {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-bg-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	transition: opacity 1.4s ease-in-out, transform 8s ease-out;
	opacity: 0;
	transform: scale(1.08);
}

.hero-bg-slide.active {
	opacity: 1;
	transform: scale(1);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: radial-gradient(circle at center, rgba(9, 9, 11, 0.5) 0%, rgba(9, 9, 11, 0.88) 70%, #09090b 100%),
	            linear-gradient(to bottom, rgba(9,9,11,0.6) 0%, rgba(9,9,11,0.3) 50%, #09090b 100%);
}

.hero-glow-orb {
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	pointer-events: none;
	filter: blur(50px);
}

.hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.4rem 1.2rem;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-full);
	color: var(--gold-300);
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1.8rem;
	backdrop-filter: blur(8px);
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
	animation: floatSoft 4s ease-in-out infinite;
}

@keyframes floatSoft {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

.hero-title {
	font-size: clamp(2.4rem, 6vw, 4.4rem);
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	color: #d1d1db;
	max-width: 720px;
	margin: 0 auto 2.5rem;
	line-height: 1.85;
	font-weight: 300;
}

.hero-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	flex-wrap: wrap;
	margin-bottom: 3.5rem;
}

.hero-slide-indicators {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	margin-bottom: 3rem;
}

.indicator-dot {
	width: 36px;
	height: 4px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	cursor: pointer;
	transition: var(--transition-smooth);
	border: none;
}

.indicator-dot.active {
	background: var(--gold-400);
	width: 54px;
	box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Stats Bar */
.stats-ribbon {
	position: relative;
	z-index: 3;
	background: var(--bg-glass);
	border: 1px solid var(--gold-border);
	backdrop-filter: blur(16px);
	border-radius: var(--radius-lg);
	padding: 1.8rem 2rem;
	box-shadow: 0 20px 40px rgba(0,0,0,0.5);
	margin-top: 1rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	text-align: center;
}

.stat-item {
	position: relative;
}

.stat-item:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 0;
	top: 15%;
	height: 70%;
	width: 1px;
	background: var(--border-subtle);
}

.stat-number {
	font-size: 2.2rem;
	font-weight: 800;
	font-family: var(--font-fa);
	line-height: 1.1;
	margin-bottom: 0.35rem;
}

.stat-label {
	font-size: 0.85rem;
	color: var(--fg-muted);
	font-weight: 400;
}

/* Section Header Shared */
.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3.5rem;
}

.section-tag {
	display: inline-block;
	color: var(--gold-400);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
	position: relative;
	padding: 0 1rem;
}

.section-tag::before,
.section-tag::after {
	content: '❖';
	color: var(--gold-500);
	font-size: 0.7rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.section-tag::before { right: -0.2rem; }
.section-tag::after { left: -0.2rem; }

.section-title {
	font-size: clamp(1.8rem, 3.8vw, 2.75rem);
	font-weight: 800;
	line-height: 1.35;
	margin-bottom: 1rem;
	color: #fff;
}

.section-desc {
	font-size: 1.05rem;
	color: var(--fg-muted);
	line-height: 1.8;
}

/* Services Section */
.services-section {
	padding: 6rem 0;
	background: radial-gradient(circle at 50% 10%, rgba(26, 24, 18, 0.4) 0%, #09090b 70%);
	position: relative;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.service-card {
	position: relative;
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
}

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

.service-img-wrap {
	position: relative;
	height: 240px;
	overflow: hidden;
}

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

.service-card:hover .service-img {
	transform: scale(1.08);
}

.service-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--bg-card) 0%, rgba(22, 22, 28, 0.4) 60%, transparent 100%);
}

.service-number {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 42px;
	height: 42px;
	background: rgba(9, 9, 11, 0.75);
	backdrop-filter: blur(8px);
	border: 1px solid var(--gold-border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-serif);
	color: var(--gold-300);
	font-weight: 700;
	font-size: 1.1rem;
}

.service-content {
	padding: 1.75rem 2rem 2rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.service-title {
	font-size: 1.45rem;
	font-weight: 700;
	margin-bottom: 0.85rem;
	color: #fff;
	transition: var(--transition-smooth);
}

.service-card:hover .service-title {
	color: var(--gold-300);
}

.service-desc {
	color: var(--fg-muted);
	font-size: 0.95rem;
	line-height: 1.75;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.service-features-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
	margin-bottom: 1.75rem;
	border-top: 1px solid var(--border-subtle);
	padding-top: 1.25rem;
}

.service-feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: #d1d1db;
}

.feature-bullet {
	color: var(--gold-400);
	font-size: 0.8rem;
}

.service-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.service-action-btn {
	background: transparent;
	border: none;
	color: var(--gold-300);
	font-size: 0.92rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0;
	transition: var(--transition-smooth);
}

.service-action-btn:hover {
	color: #fff;
	transform: translateX(-4px);
}

/* Interactive Event Estimator & Configurator Section */
.estimator-section {
	padding: 5rem 0;
	background: linear-gradient(180deg, #09090b 0%, #121217 50%, #09090b 100%);
	position: relative;
}

.estimator-card {
	background: var(--bg-card);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
	position: relative;
	overflow: hidden;
}

.estimator-card::before {
	content: '';
	position: absolute;
	top: -100px;
	left: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
	pointer-events: none;
}

.estimator-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.9fr;
	gap: 2.5rem;
	align-items: start;
}

.option-group {
	margin-bottom: 1.75rem;
}

.option-group-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.85rem;
	color: var(--gold-300);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

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

.pill-button {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-subtle);
	color: var(--fg-muted);
	padding: 0.65rem 0.9rem;
	border-radius: var(--radius-md);
	font-family: inherit;
	font-size: 0.88rem;
	cursor: pointer;
	transition: var(--transition-smooth);
	text-align: center;
}

.pill-button:hover {
	border-color: rgba(212, 175, 55, 0.4);
	color: #fff;
}

.pill-button.active {
	background: rgba(212, 175, 55, 0.15);
	border-color: var(--gold-400);
	color: var(--gold-300);
	font-weight: 600;
	box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.range-slider-wrapper {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border-subtle);
	padding: 1.25rem;
	border-radius: var(--radius-md);
}

.range-slider-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.75rem;
}

.range-slider-val {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--gold-300);
}

.custom-range {
	width: 100%;
	-webkit-appearance: none;
	appearance: none;
	height: 6px;
	background: #252530;
	border-radius: 3px;
	outline: none;
}

.custom-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--gold-gradient);
	cursor: pointer;
	box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
	border: 2px solid #fff;
}

/* Estimator Summary Box */
.estimator-summary {
	background: rgba(15, 15, 20, 0.9);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-md);
	padding: 1.75rem;
	backdrop-filter: blur(10px);
}

.summary-header {
	border-bottom: 1px solid var(--border-subtle);
	padding-bottom: 1rem;
	margin-bottom: 1.25rem;
}

.summary-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
}

.summary-subtitle {
	font-size: 0.82rem;
	color: var(--gold-400);
}

.summary-items-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	font-size: 0.88rem;
	color: var(--fg-muted);
}

.summary-item-val {
	color: #fff;
	font-weight: 500;
}

.summary-total-box {
	background: rgba(212, 175, 55, 0.08);
	border: 1px dashed var(--gold-border-bright);
	border-radius: var(--radius-md);
	padding: 1rem;
	text-align: center;
	margin-bottom: 1.5rem;
}

.summary-tier-badge {
	font-size: 0.8rem;
	color: var(--gold-400);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.summary-tier-name {
	font-size: 1.25rem;
	font-weight: 800;
	color: #fff;
}

/* About Us Section */
.about-section {
	padding: 6rem 0;
	background: #09090b;
	position: relative;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
}

.about-image-collage {
	position: relative;
}

.about-img-main {
	width: 88%;
	border-radius: var(--radius-lg);
	border: 1px solid var(--gold-border);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
	display: block;
	object-fit: cover;
	height: 480px;
}

.about-img-sub {
	position: absolute;
	bottom: -25px;
	left: 0;
	width: 52%;
	height: 250px;
	border-radius: var(--radius-md);
	border: 2px solid var(--gold-400);
	box-shadow: 0 15px 35px rgba(0,0,0,0.8), var(--gold-glow);
	object-fit: cover;
}

.about-experience-badge {
	position: absolute;
	top: -20px;
	right: -15px;
	background: var(--bg-surface);
	border: 1px solid var(--gold-400);
	border-radius: var(--radius-md);
	padding: 1rem 1.4rem;
	box-shadow: 0 10px 25px rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.about-exp-num {
	font-size: 2rem;
	font-weight: 800;
	color: var(--gold-300);
	font-family: var(--font-serif);
	line-height: 1;
}

.about-exp-text {
	font-size: 0.78rem;
	color: var(--fg-muted);
	line-height: 1.3;
}

.about-content {
	padding-right: 1rem;
}

.about-story {
	font-size: 1.05rem;
	color: #d1d1db;
	line-height: 1.85;
	margin-bottom: 2rem;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

.value-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border-card);
	border-radius: var(--radius-md);
	padding: 1.2rem;
	transition: var(--transition-smooth);
}

.value-card:hover {
	border-color: var(--gold-border);
	background: rgba(212, 175, 55, 0.05);
	transform: translateY(-3px);
}

.value-icon {
	color: var(--gold-400);
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}

.value-title {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.35rem;
}

.value-desc {
	font-size: 0.84rem;
	color: var(--fg-muted);
	line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
	padding: 6rem 0;
	background: radial-gradient(circle at 50% 30%, rgba(20, 20, 26, 0.8) 0%, #09090b 80%);
}

.portfolio-filters {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.filter-btn {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-subtle);
	color: var(--fg-muted);
	padding: 0.6rem 1.4rem;
	border-radius: var(--radius-full);
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition-smooth);
}

.filter-btn:hover {
	color: #fff;
	border-color: var(--gold-border);
}

.filter-btn.active {
	background: var(--gold-gradient);
	color: #0b0b0d;
	font-weight: 700;
	border-color: var(--gold-300);
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.portfolio-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	aspect-ratio: 4 / 5;
	cursor: pointer;
	group: hover;
}

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

.portfolio-card:hover .portfolio-img {
	transform: scale(1.1);
}

.portfolio-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.4) 50%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.75rem;
	transition: var(--transition-smooth);
	opacity: 0.92;
}

.portfolio-card:hover .portfolio-overlay {
	background: linear-gradient(to top, rgba(9, 9, 11, 0.98) 0%, rgba(9, 9, 11, 0.6) 60%, rgba(212, 175, 55, 0.15) 100%);
}

.portfolio-tag {
	display: inline-block;
	font-size: 0.75rem;
	color: var(--gold-300);
	font-weight: 600;
	margin-bottom: 0.35rem;
	letter-spacing: 0.05em;
}

.portfolio-item-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.4rem;
}

.portfolio-location {
	font-size: 0.82rem;
	color: var(--fg-muted);
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.portfolio-zoom-icon {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	width: 38px;
	height: 38px;
	background: rgba(9, 9, 11, 0.8);
	border: 1px solid var(--gold-border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-300);
	opacity: 0;
	transform: translateY(-8px);
	transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-zoom-icon {
	opacity: 1;
	transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(5, 5, 7, 0.92);
	backdrop-filter: blur(15px);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.lightbox-content {
	background: var(--bg-surface);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-lg);
	max-width: 960px;
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	box-shadow: 0 30px 80px rgba(0,0,0,0.9), var(--gold-glow);
	position: relative;
}

.lightbox-img-pane {
	height: 100%;
	min-height: 400px;
	background: #000;
}

.lightbox-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lightbox-info-pane {
	padding: 2.25rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow-y: auto;
}

.lightbox-close {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(9, 9, 11, 0.8);
	border: 1px solid var(--gold-border);
	color: var(--gold-300);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition-smooth);
	z-index: 10;
}

.lightbox-close:hover {
	background: var(--gold-400);
	color: #000;
}

/* Testimonials Section */
.testimonials-section {
	padding: 6rem 0;
	background: linear-gradient(180deg, #09090b 0%, #121217 50%, #09090b 100%);
	position: relative;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.testimonial-card {
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	border-radius: var(--radius-lg);
	padding: 2.2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: var(--transition-smooth);
}

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

.quote-icon {
	color: var(--gold-500);
	font-size: 2.5rem;
	opacity: 0.35;
	font-family: var(--font-serif);
	line-height: 1;
	margin-bottom: 0.8rem;
}

.testimonial-text {
	font-size: 0.98rem;
	color: #e2e2ec;
	line-height: 1.85;
	margin-bottom: 1.75rem;
	font-style: normal;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	border-top: 1px solid var(--border-subtle);
	padding-top: 1.25rem;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1.5px solid var(--gold-400);
	object-fit: cover;
}

.author-name {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}

.author-event {
	font-size: 0.78rem;
	color: var(--gold-400);
}

.stars-row {
	color: var(--gold-400);
	font-size: 0.85rem;
	margin-bottom: 0.6rem;
}

/* FAQ Section */
.faq-section {
	padding: 5rem 0;
	background: #09090b;
}

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

.faq-item {
	background: var(--bg-surface);
	border: 1px solid var(--border-card);
	border-radius: var(--radius-md);
	margin-bottom: 1rem;
	overflow: hidden;
	transition: var(--transition-smooth);
}

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

.faq-trigger {
	width: 100%;
	padding: 1.25rem 1.5rem;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-family: inherit;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	text-align: right;
}

.faq-trigger:hover {
	color: var(--gold-300);
}

.faq-icon {
	color: var(--gold-400);
	transition: transform 0.3s ease;
	font-size: 1.2rem;
}

.faq-item.open .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 1.5rem 1.4rem;
	color: var(--fg-muted);
	font-size: 0.95rem;
	line-height: 1.8;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	margin-top: 0.4rem;
	padding-top: 1rem;
}

/* Contact & Booking Section */
.contact-section {
	padding: 6rem 0;
	background: radial-gradient(circle at 50% 80%, rgba(26, 24, 18, 0.6) 0%, #09090b 80%);
	position: relative;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 3.5rem;
}

.contact-info-card {
	background: var(--bg-card);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.contact-detail-group {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
	margin: 2rem 0;
}

.contact-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 1.1rem;
}

.contact-icon-box {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--gold-border);
	color: var(--gold-300);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-detail-label {
	font-size: 0.8rem;
	color: var(--gold-400);
	text-transform: uppercase;
	margin-bottom: 0.2rem;
}

.contact-detail-val {
	color: #fff;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.5;
}

.contact-form-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2.75rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.form-group {
	margin-bottom: 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.form-label {
	font-size: 0.88rem;
	color: #d1d1db;
	font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
	background: #09090d;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 0.85rem 1rem;
	color: #fff;
	font-family: inherit;
	font-size: 0.95rem;
	transition: var(--transition-smooth);
	width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--gold-400);
	box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

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

/* Success Modal */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(12px);
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	animation: fadeIn 0.3s ease;
}

.modal-box {
	background: var(--bg-surface);
	border: 1px solid var(--gold-border-bright);
	border-radius: var(--radius-lg);
	padding: 2.75rem 2.25rem;
	max-width: 520px;
	width: 100%;
	text-align: center;
	box-shadow: 0 30px 70px rgba(0,0,0,0.9), var(--gold-glow);
	position: relative;
	animation: scaleUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleUp {
	from { transform: scale(0.92); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.modal-gold-icon {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.15);
	border: 2px solid var(--gold-400);
	color: var(--gold-300);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 1.5rem;
	box-shadow: var(--gold-glow);
}

.modal-title {
	font-size: 1.55rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 0.75rem;
}

.modal-desc {
	color: var(--fg-muted);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 1.75rem;
}

.modal-ref-card {
	background: rgba(212, 175, 55, 0.06);
	border: 1px dashed var(--gold-border);
	border-radius: var(--radius-md);
	padding: 1rem;
	margin-bottom: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Service Detail Modal */
.service-detail-modal {
	background: var(--bg-surface);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-lg);
	max-width: 800px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 30px 80px rgba(0,0,0,0.9), var(--gold-glow);
	position: relative;
}

.service-modal-header-img {
	height: 280px;
	width: 100%;
	object-fit: cover;
	position: relative;
}

.service-modal-body {
	padding: 2.25rem;
}

/* Footer */
.site-footer {
	background: #060608;
	border-top: 1px solid var(--gold-border);
	padding: 5rem 0 2rem;
	position: relative;
}

.footer-top-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

.footer-desc {
	color: var(--fg-muted);
	font-size: 0.9rem;
	line-height: 1.8;
	margin: 1.25rem 0 1.5rem;
}

.footer-heading {
	color: #fff;
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 1.4rem;
	position: relative;
	padding-bottom: 0.6rem;
}

.footer-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 30px;
	height: 2px;
	background: var(--gold-400);
}

.footer-links-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-link {
	color: var(--fg-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: var(--transition-smooth);
}

.footer-link:hover {
	color: var(--gold-300);
	transform: translateX(-4px);
}

.footer-social-row {
	display: flex;
	gap: 0.75rem;
}

.social-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-subtle);
	color: var(--fg-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.social-btn:hover {
	background: var(--gold-500);
	color: #000;
	border-color: var(--gold-400);
	transform: translateY(-3px);
}

.footer-bottom {
	border-top: 1px solid var(--border-subtle);
	padding-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.82rem;
	color: var(--fg-faint);
}

/* Mobile Off-canvas Drawer */
.mobile-drawer {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 2500;
	display: flex;
	justify-content: flex-end;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.mobile-drawer.open {
	opacity: 1;
	pointer-events: auto;
}

.mobile-drawer-pane {
	width: 82%;
	max-width: 320px;
	background: var(--bg-surface);
	border-right: 1px solid var(--gold-border);
	height: 100%;
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open .mobile-drawer-pane {
	transform: translateX(0);
}

.mobile-menu-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 2rem;
}

.mobile-nav-link {
	color: #fff;
	text-decoration: none;
	font-size: 1.15rem;
	font-weight: 600;
	display: block;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--border-card);
}

.mobile-nav-link:hover {
	color: var(--gold-300);
}

/* Floating Quick Consultation Action */
.floating-vip-cta {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	z-index: 990;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.75rem 1.25rem;
	background: var(--bg-surface);
	border: 1.5px solid var(--gold-400);
	border-radius: var(--radius-full);
	color: var(--gold-300);
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--gold-glow);
	transition: var(--transition-smooth);
	cursor: pointer;
}

.floating-vip-cta:hover {
	transform: scale(1.05);
	background: var(--gold-gradient);
	color: #0b0b0d;
}

.pulse-dot {
	width: 10px;
	height: 10px;
	background: #22c55e;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
	animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
	0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
	70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
	100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
	.stat-item:nth-child(2)::after {
		display: none;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	.about-grid {
		grid-template-columns: 1fr;
	}
	.about-image-collage {
		margin-bottom: 2rem;
	}
	.portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.estimator-grid {
		grid-template-columns: 1fr;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.footer-top-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nav-menu,
	.nav-actions .btn-gold {
		display: none;
	}
	.menu-toggle {
		display: flex;
	}
	.hero-title {
		font-size: 2.2rem;
	}
	.hero-subtitle {
		font-size: 1rem;
	}
	.portfolio-grid {
		grid-template-columns: 1fr;
	}
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	.lightbox-content {
		grid-template-columns: 1fr;
		max-height: 85vh;
	}
	.lightbox-img-pane {
		height: 250px;
		min-height: auto;
	}
	.form-grid-2 {
		grid-template-columns: 1fr;
	}
	.stats-grid {
		grid-template-columns: 1fr;
	}
	.stat-item:not(:last-child)::after {
		display: none;
	}
	.footer-top-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
	.floating-vip-cta span {
		display: none;
	}
	.floating-vip-cta {
		padding: 0.75rem;
		border-radius: 50%;
	}
}
