/**
 * Sriti Custom Styling System
 * Light, Immersive, Premium Aesthetics
 */

:root {
	--bg-primary: #FAF9F6;       /* Pearl White */
	--bg-secondary: #F4EFEA;     /* Warm Champagne */
	--bg-tertiary: #FDFBF7;      /* Soft Ivory */
	
	--accent-gold: #D4AF37;      /* Classic Gold */
	--accent-rose-gold: #E2A69A; /* Rose Gold */
	--accent-rose-dark: #C98274; /* Dark Rose Gold */
	
	--text-main: #2F2A28;        /* Deep Bronze Charcoal */
	--text-muted: #6B625E;       /* Muted Warm Gray */
	--text-light: #8E837E;       /* Soft Gray */
	
	--glass-bg: rgba(255, 255, 255, 0.45);
	--glass-border: rgba(255, 255, 255, 0.4);
	--glass-shadow: 0 16px 40px 0 rgba(212, 175, 55, 0.06);
	--glass-shadow-hover: 0 24px 48px 0 rgba(226, 166, 154, 0.15);
	
	--font-title: 'Playfair Display', Georgia, serif;
	--font-body: 'Inter', system-ui, -apple-system, sans-serif;

	--transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	scroll-behavior: smooth;
	background-color: var(--bg-primary);
	color: var(--text-main);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: var(--bg-primary);
	color: var(--text-main);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-title);
	font-weight: 600;
	color: var(--text-main);
	line-height: 1.25;
}

.font-serif {
	font-family: var(--font-title);
}

a {
	color: var(--accent-rose-dark);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--accent-gold);
}

/* Layout Utilities */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-tag {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--accent-rose-dark);
	margin-bottom: 0.75rem;
	position: relative;
	padding-left: 1.5rem;
}

.section-tag::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1rem;
	height: 1px;
	background-color: var(--accent-rose-dark);
}

.section-title {
	font-size: 2.75rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.section-desc {
	color: var(--text-muted);
	font-size: 1.1rem;
	max-width: 600px;
	margin-bottom: 3rem;
}

.highlight {
	color: var(--accent-rose-dark);
	font-style: italic;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 2.2rem;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.95rem;
	border-radius: 50px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
	border: 1px solid transparent;
	letter-spacing: 0.02em;
}

.btn-sm {
	padding: 0.5rem 1.25rem;
	font-size: 0.85rem;
}

.btn-full {
	display: flex;
	width: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-rose-dark), var(--accent-rose-gold));
	color: #ffffff;
	box-shadow: 0 6px 15px rgba(201, 130, 116, 0.25);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(201, 130, 116, 0.35);
	color: #ffffff;
	filter: brightness(1.05);
}

.btn-secondary {
	background-color: transparent;
	color: var(--text-main);
	border-color: rgba(47, 42, 40, 0.25);
}

.btn-secondary:hover {
	background-color: rgba(47, 42, 40, 0.05);
	transform: translateY(-2px);
}

.btn-primary-outline {
	background: transparent;
	color: var(--accent-rose-dark);
	border: 1px solid var(--accent-rose-dark);
}

.btn-primary-outline:hover {
	background: var(--accent-rose-dark);
	color: #ffffff;
	transform: translateY(-2px);
}

.btn-secondary-outline {
	background: transparent;
	color: var(--text-main);
	border: 1px solid rgba(47, 42, 40, 0.15);
}

.btn-secondary-outline:hover {
	background-color: var(--text-main);
	color: var(--bg-primary);
	border-color: var(--text-main);
	transform: translateY(-2px);
}

/* Glassmorphic Cards */
.glass-card {
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	box-shadow: var(--glass-shadow);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
	box-shadow: var(--glass-shadow-hover);
	border-color: rgba(226, 166, 154, 0.5);
}

/* --- HEADER --- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(250, 249, 246, 0.75);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-bottom: 1px solid rgba(47, 42, 40, 0.06);
	transition: all 0.3s ease;
}

.site-header.scrolled {
	background: rgba(250, 249, 246, 0.92);
	box-shadow: 0 4px 20px rgba(47, 42, 40, 0.06);
	padding: 0;
}

.site-header.scrolled .header-container {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.header-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 1.1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-branding .site-logo-link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1;
}

.site-branding .logo-text {
	font-family: var(--font-title);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text-main);
}

.site-branding .logo-subtext {
	font-family: var(--font-body);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.35em;
	color: var(--accent-rose-dark);
	margin-top: -0.15rem;
}

.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	gap: 2.2rem;
}

.main-navigation a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-main);
	letter-spacing: 0.02em;
	position: relative;
	padding: 0.25rem 0;
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--accent-rose-dark);
	transition: width 0.3s ease;
}

.main-navigation a:hover::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle .bar {
	width: 24px;
	height: 2px;
	background-color: var(--text-main);
	transition: all 0.3s ease;
}

/* --- HERO SECTION --- */
.hero-section {
	position: relative;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: radial-gradient(circle at center, #ffffff 0%, var(--bg-secondary) 100%);
	padding: 0 2rem;
}

.hero-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('https://images.unsplash.com/photo-1452784444945-3f422708fe5e?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
	opacity: 0.12;
	pointer-events: none;
}

.hero-content {
	max-width: 800px;
	text-align: center;
	z-index: 5;
}

.hero-subtitle {
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--accent-rose-dark);
	margin-bottom: 1.5rem;
	display: inline-block;
}

.hero-title {
	font-size: 5.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	letter-spacing: -0.01em;
}

.hero-description {
	font-size: 1.25rem;
	color: var(--text-muted);
	max-width: 650px;
	margin: 0 auto 2.5rem auto;
	font-weight: 300;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
}

.scroll-indicator {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	z-index: 5;
}

.scroll-text {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-light);
}

.scroll-icon-mouse {
	width: 20px;
	height: 32px;
	border: 1.5px solid var(--text-light);
	border-radius: 20px;
	position: relative;
}

.scroll-icon-mouse .wheel {
	width: 3px;
	height: 6px;
	background-color: var(--accent-rose-dark);
	border-radius: 50%;
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrollWheel 1.8s infinite ease-in-out;
}

@keyframes scrollWheel {
	0% { top: 6px; opacity: 1; }
	50% { top: 14px; opacity: 0; }
	100% { top: 6px; opacity: 1; }
}

/* Camera Shutter Effect */
.shutter-grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	pointer-events: none;
	overflow: hidden;
}

.shutter-blade {
	position: absolute;
	width: 100%;
	height: 100%;
}

.blade-1 {
	background: linear-gradient(135deg, transparent 48%, rgba(212, 175, 55, 0.04) 50%, transparent 52%);
	animation: shutterSweep1 8s ease-in-out infinite;
}

.blade-2 {
	background: linear-gradient(-135deg, transparent 48%, rgba(226, 166, 154, 0.03) 50%, transparent 52%);
	animation: shutterSweep2 10s ease-in-out infinite;
}

@keyframes shutterSweep1 {
	0%, 100% { transform: translateX(-30%) rotate(0deg); }
	50% { transform: translateX(30%) rotate(2deg); }
}

@keyframes shutterSweep2 {
	0%, 100% { transform: translateX(20%) rotate(0deg); }
	50% { transform: translateX(-20%) rotate(-1.5deg); }
}

/* Floating Bokeh Particles */
.bokeh-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.bokeh-particle {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	animation: bokehFloat linear infinite;
}

@keyframes bokehFloat {
	0% {
		transform: translateY(100vh) scale(0);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-10vh) scale(1);
		opacity: 0;
	}
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

.reveal-on-scroll.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-on-scroll.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-on-scroll.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-on-scroll.reveal-delay-4 { transition-delay: 0.4s; }

/* Reveal from left */
.reveal-from-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal-from-left.is-revealed {
	opacity: 1;
	transform: translateX(0);
}

/* Reveal from right */
.reveal-from-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal-from-right.is-revealed {
	opacity: 1;
	transform: translateX(0);
}

/* Scale reveal */
.reveal-scale {
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}
.reveal-scale.is-revealed {
	opacity: 1;
	transform: scale(1);
}

/* Custom Cursor Light */
.cursor-light {
	position: fixed;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(226, 166, 154, 0.06) 0%, rgba(226, 166, 154, 0) 70%);
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: width 0.3s ease, height 0.3s ease;
	mix-blend-mode: screen;
}

/* Hero Text Stagger */
.hero-content .hero-subtitle,
.hero-content .hero-title,
.hero-content .hero-description,
.hero-content .hero-buttons {
	opacity: 0;
	transform: translateY(30px);
}

.hero-content.hero-loaded .hero-subtitle {
	animation: heroFadeIn 0.8s 0.2s var(--transition-smooth) forwards;
}
.hero-content.hero-loaded .hero-title {
	animation: heroFadeIn 0.8s 0.4s var(--transition-smooth) forwards;
}
.hero-content.hero-loaded .hero-description {
	animation: heroFadeIn 0.8s 0.6s var(--transition-smooth) forwards;
}
.hero-content.hero-loaded .hero-buttons {
	animation: heroFadeIn 0.8s 0.8s var(--transition-smooth) forwards;
}

@keyframes heroFadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* --- 3D SCROLL CORRIDOR --- */
.gallery-section-3d {
	position: relative;
	height: 350vh; /* Scroll room for zoom */
	background-color: var(--bg-tertiary);
}

.gallery-sticky-wrapper {
	position: sticky;
	top: 0;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 7rem 0 3rem 0;
}

.gallery-title-wrapper {
	text-align: center;
	z-index: 10;
	padding: 0 2rem;
}

.gallery-title-wrapper .section-title {
	font-size: 2.25rem;
	margin-bottom: 0.25rem;
}

.gallery-title-wrapper .section-desc {
	font-size: 0.95rem;
	margin-bottom: 0;
}

/* 3D viewport */
.corridor-3d-container {
	position: relative;
	width: 100%;
	height: 65vh;
	perspective: 1000px;
	perspective-origin: 50% 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.corridor-3d {
	position: absolute;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	will-change: transform;
}

.gallery-card-3d {
	position: absolute;
	width: 440px;
	height: 290px;
	transform-style: preserve-3d;
	backface-visibility: hidden;
	will-change: transform, opacity, filter;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 45px rgba(47, 42, 40, 0.15);
	cursor: pointer;
}

/* Specific Card Placements and Z depth offsets */
.card-depth-1 {
	left: 8%;
	top: 15%;
	transform: translate3d(0, 0, 0px);
	z-index: 4;
}

.card-depth-2 {
	right: 10%;
	top: 10%;
	transform: translate3d(0, 0, -800px);
	z-index: 3;
}

.card-depth-3 {
	left: 12%;
	bottom: 8%;
	transform: translate3d(0, 0, -1600px);
	z-index: 2;
}

.card-depth-4 {
	right: 15%;
	bottom: 5%;
	transform: translate3d(0, 0, -2400px);
	z-index: 1;
}

.card-image-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}

.card-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.gallery-card-3d:hover .card-image-wrapper img {
	transform: scale(1.05);
}

.card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2.2rem 1.8rem;
	background: linear-gradient(to top, rgba(47, 42, 40, 0.85) 0%, rgba(47, 42, 40, 0) 100%);
	color: #ffffff;
}

.card-overlay h3 {
	font-size: 1.4rem;
	color: #ffffff;
	margin-bottom: 0.4rem;
}

.card-overlay p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
	line-height: 1.4;
}

/* --- FEATURE DRONE SECTION --- */
.features-section {
	padding: 8rem 0;
	background-color: var(--bg-primary);
}

.features-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 5rem;
	align-items: center;
}

.features-text-content p {
	color: var(--text-muted);
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
}

.feature-bullets {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.feature-bullet-item {
	display: flex;
	gap: 1.5rem;
}

.bullet-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background-color: var(--bg-secondary);
	border: 1px solid rgba(226, 166, 154, 0.25);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-rose-dark);
	font-size: 1.25rem;
}

.bullet-text h4 {
	font-size: 1.15rem;
	margin-bottom: 0.25rem;
}

.bullet-text p {
	font-size: 0.95rem;
	margin-bottom: 0;
	color: var(--text-muted);
}

.features-visual {
	position: relative;
	height: 480px;
}

.image-stack {
	position: relative;
	width: 100%;
	height: 100%;
}

.image-stack-item {
	position: absolute;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(47, 42, 40, 0.08);
	border: 6px solid #ffffff;
}

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

.stack-top {
	width: 75%;
	height: 70%;
	left: 0;
	top: 0;
	z-index: 2;
}

.stack-bottom {
	width: 70%;
	height: 65%;
	right: 0;
	bottom: 0;
	z-index: 1;
}

/* --- STATS COUNTER SECTION --- */
/* Stats Counter Section */
.stats-section {
	padding: 5rem 0;
	background-color: var(--bg-primary);
	border-top: 1px solid rgba(47, 42, 40, 0.04);
	border-bottom: 1px solid rgba(47, 42, 40, 0.04);
}

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

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.stat-number {
	font-family: var(--font-title);
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--text-main);
	line-height: 1;
}

.stat-number .stat-suffix {
	font-size: 2rem;
	color: var(--accent-rose-dark);
}

.stat-label {
	font-size: 0.9rem;
	color: var(--text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.stat-divider {
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-rose-gold), var(--accent-gold));
	border-radius: 2px;
}

/* --- PACKAGES & PRICING --- */
.pricing-section {
	padding: 8rem 0;
	background-color: var(--bg-secondary);
}

.pricing-header {
	text-align: center;
	margin-bottom: 4.5rem;
}

.pricing-header .section-desc {
	margin: 0 auto;
}

.packages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 5rem;
	align-items: stretch;
}

.package-card {
	padding: 3rem 2.2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

.featured-card {
	border-color: var(--accent-rose-gold);
	transform: scale(1.02);
	box-shadow: 0 20px 45px rgba(226, 166, 154, 0.18);
	background: #ffffff;
}

.featured-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--accent-gold), #b39226);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.4rem 1.2rem;
	border-radius: 50px;
	box-shadow: 0 4px 10px rgba(179, 146, 38, 0.25);
}

.package-header {
	border-bottom: 1px solid rgba(47, 42, 40, 0.08);
	padding-bottom: 2rem;
	margin-bottom: 2rem;
}

.package-name {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.package-price {
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 1rem;
	display: flex;
	align-items: baseline;
}

.package-price .currency {
	font-size: 1.75rem;
	font-weight: 500;
	margin-right: 0.2rem;
}

.package-price .tax-tag {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--text-muted);
}

.package-desc {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.package-perks {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	margin-bottom: 2.5rem;
}

.package-perks li {
	font-size: 0.95rem;
	color: var(--text-muted);
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.package-perks li i {
	color: var(--accent-rose-dark);
	margin-top: 0.25rem;
	font-size: 0.85rem;
}

.added-perk {
	color: var(--text-main) !important;
	background-color: rgba(226, 166, 154, 0.12);
	padding: 0.5rem 0.75rem;
	border-radius: 8px;
	border-left: 2.5px solid var(--accent-rose-dark);
}

.added-perk i {
	color: var(--accent-rose-dark) !important;
}

.badge {
	background-color: var(--accent-gold);
	color: #ffffff;
	font-size: 0.65rem;
	text-transform: uppercase;
	font-weight: 700;
	padding: 0.1rem 0.35rem;
	border-radius: 4px;
	letter-spacing: 0.05em;
	margin-left: 0.25rem;
	display: inline-block;
}

/* Extra Offerings */
.extra-offerings-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 2.5rem;
	align-items: stretch;
}

.offering-card {
	padding: 3.5rem 3rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.offering-icon {
	font-size: 2.5rem;
	color: var(--accent-rose-dark);
	margin-bottom: 1.25rem;
}

.offering-title {
	font-size: 1.85rem;
	margin-bottom: 0.25rem;
}

.offering-tagline {
	font-size: 0.9rem;
	color: var(--accent-rose-dark);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.75rem;
}

.offering-body p {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

.offering-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-bottom: 2rem;
}

.offering-list li {
	font-size: 0.9rem;
	color: var(--text-muted);
	display: flex;
	gap: 0.6rem;
}

.offering-list li i {
	color: var(--accent-rose-gold);
	font-size: 0.7rem;
	margin-top: 0.35rem;
}

.offering-price {
	font-size: 1.4rem;
	color: var(--text-main);
	border-top: 1px solid rgba(47, 42, 40, 0.08);
	padding-top: 1.5rem;
	margin-bottom: 2rem;
}

.offering-price strong {
	color: var(--accent-rose-dark);
	font-size: 1.75rem;
}

/* Interactive Calculator Styles */
.custom-shoot-card {
	background-color: #ffffff;
	box-shadow: 0 16px 36px rgba(47, 42, 40, 0.05);
}

.calc-desc {
	margin-bottom: 1.75rem !important;
}

.interactive-calculator {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
	background-color: var(--bg-secondary);
	padding: 1.8rem;
	border-radius: 16px;
	border: 1px solid rgba(47, 42, 40, 0.05);
}

.calc-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.calc-group label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-main);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.label-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.value-display {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--accent-rose-dark);
}

.calc-input {
	padding: 0.65rem 0.85rem;
	border-radius: 8px;
	border: 1px solid rgba(47, 42, 40, 0.12);
	background-color: #ffffff;
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--text-main);
	outline: none;
	transition: border-color 0.3s ease;
}

.calc-input:focus {
	border-color: var(--accent-rose-dark);
}

.calc-slider {
	-webkit-appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 10px;
	background: rgba(47, 42, 40, 0.08);
	outline: none;
}

.calc-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--accent-rose-dark);
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(201, 130, 116, 0.35);
	transition: transform 0.2s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
	transform: scale(1.2);
}

.calc-radio-group, .calc-checkbox-group {
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.calc-radio, .calc-checkbox {
	font-size: 0.85rem;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 0.4rem;
	cursor: pointer;
	font-weight: 400 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.calc-radio input, .calc-checkbox input {
	accent-color: var(--accent-rose-dark);
	width: 15px;
	height: 15px;
}

.calc-estimate-box {
	border-top: 1px dashed rgba(47, 42, 40, 0.15);
	padding-top: 1.25rem;
	margin-top: 0.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.estimate-lbl {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.estimate-amount {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent-rose-dark);
}

/* --- TESTIMONIALS SECTION --- */
/* Testimonials Section */
.testimonials-section {
	padding: 8rem 0;
	background-color: var(--bg-tertiary);
	overflow: hidden;
}

.testimonials-header {
	text-align: center;
	margin-bottom: 4rem;
}

.testimonials-header .section-desc {
	margin: 0 auto;
}

.testimonials-track {
	display: flex;
	gap: 2rem;
	animation: testimonialScroll 30s linear infinite;
	width: max-content;
}

.testimonials-track:hover {
	animation-play-state: paused;
}

@keyframes testimonialScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.testimonial-card {
	min-width: 380px;
	max-width: 380px;
	padding: 2.5rem;
	background: #ffffff;
	border: 1px solid rgba(47, 42, 40, 0.05);
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(47, 42, 40, 0.04);
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(47, 42, 40, 0.08);
}

.testimonial-stars {
	color: var(--accent-gold);
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	margin-bottom: 1.25rem;
}

.testimonial-text {
	font-size: 1.05rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 1.75rem;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-rose-gold), var(--accent-gold));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-weight: 700;
	font-size: 1.1rem;
}

.testimonial-info h4 {
	font-size: 1rem;
	margin-bottom: 0.15rem;
}

.testimonial-info span {
	font-size: 0.8rem;
	color: var(--text-light);
}

/* --- BOOKING SECTION --- */
.booking-section {
	padding: 9rem 0;
	background-color: var(--bg-primary);
	position: relative;
	overflow: hidden;
}

.booking-bg-accent {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(226, 166, 154, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
	top: -100px;
	right: -100px;
	z-index: 1;
	pointer-events: none;
}

.booking-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 5rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.booking-info .section-title {
	margin-bottom: 1.5rem;
}

.booking-info p {
	font-size: 1.15rem;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
}

.contact-badges {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.c-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--text-main);
}

.c-badge i {
	color: var(--accent-gold);
}

.booking-form-wrapper {
	width: 100%;
}

.form-container {
	padding: 3.5rem 3rem;
}

.form-title {
	font-size: 2rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid rgba(47, 42, 40, 0.08);
	padding-bottom: 1rem;
}

.inquiry-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

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

.form-group input, .form-group textarea {
	padding: 0.9rem 1.1rem;
	border-radius: 12px;
	border: 1px solid rgba(47, 42, 40, 0.12);
	background-color: rgba(255, 255, 255, 0.7);
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--text-main);
	outline: none;
	transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
	border-color: var(--accent-rose-dark);
	background-color: #ffffff;
	box-shadow: 0 4px 12px rgba(226, 166, 154, 0.08);
}

.form-response-msg {
	font-size: 0.95rem;
	text-align: center;
	font-weight: 500;
	margin-top: 0.5rem;
	min-height: 24px;
}

.form-response-msg.success {
	color: #2e7d32;
}

.form-response-msg.error {
	color: #c62828;
}

/* --- FALLBACK & BASE PAGE CONTENT --- */
.site-content-fallback {
	padding: 10rem 0 6rem 0;
	background-color: var(--bg-primary);
}

.content-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2rem;
}

.page-layout-container {
	max-width: 800px;
}

.entry-header {
	margin-bottom: 2.5rem;
	text-align: center;
}

.entry-title {
	font-size: 3rem;
	margin-bottom: 0.75rem;
}

.entry-meta {
	font-size: 0.9rem;
	color: var(--text-light);
	display: flex;
	gap: 1.5rem;
	justify-content: center;
}

.page-hero-image {
	margin-bottom: 3rem;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(47, 42, 40, 0.08);
}

.page-hero-image img {
	width: 100%;
	height: auto;
	display: block;
}

.entry-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-muted);
}

.entry-content p {
	margin-bottom: 1.75rem;
}

.entry-footer {
	margin-top: 3.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(47, 42, 40, 0.08);
	font-size: 0.9rem;
	color: var(--text-light);
	display: flex;
	gap: 2rem;
}

.posts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	margin-top: 3rem;
}

.fallback-card {
	background: #ffffff;
	border: 1px solid rgba(47, 42, 40, 0.06);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.fallback-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(47, 42, 40, 0.05);
}

.fallback-card .post-thumbnail {
	height: 220px;
	overflow: hidden;
}

.fallback-card .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fallback-card .card-body {
	padding: 1.8rem;
}

.fallback-card .entry-title {
	font-size: 1.45rem;
	text-align: left;
	margin-bottom: 0.5rem;
}

.fallback-card .entry-title a {
	color: var(--text-main);
}

.fallback-card .entry-meta {
	justify-content: flex-start;
	margin-bottom: 1rem;
}

.fallback-card .entry-excerpt {
	font-size: 0.95rem;
	color: var(--text-muted);
}

/* --- FOOTER --- */
.site-footer {
	background-color: #2F2A28; /* Deep Warm Bronze Charcoal */
	color: #ECE7E3;
	padding: 6rem 0 0 0;
	position: relative;
	border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem 4rem 2rem;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	gap: 4rem;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	line-height: 1;
	margin-bottom: 1.25rem;
}

.footer-logo .logo-text {
	color: #ffffff;
	font-size: 2.2rem;
	font-weight: 700;
}

.footer-logo .logo-subtext {
	color: var(--accent-rose-gold);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.35em;
	margin-top: -0.15rem;
}

.footer-tagline {
	font-size: 0.95rem;
	color: #C3BAB6;
	margin-bottom: 2rem;
	max-width: 320px;
	font-weight: 300;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ECE7E3;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background-color: var(--accent-rose-dark);
	border-color: var(--accent-rose-dark);
	color: #ffffff;
	transform: translateY(-2px);
}

.footer-title {
	font-size: 1.15rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 1.75rem;
	letter-spacing: 0.03em;
}

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

.footer-list li {
	font-size: 0.95rem;
	color: #C3BAB6;
	font-weight: 300;
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.footer-list li i {
	color: var(--accent-rose-gold);
	margin-top: 0.25rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 1.8rem 0;
	background-color: #25211F;
}

.footer-bottom-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: #8E837E;
}

.developer {
	color: var(--accent-rose-gold);
	font-weight: 500;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 4rem;
	}
	.packages-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
		max-width: 500px;
		margin: 0 auto 4rem auto;
	}
	.featured-card {
		transform: none;
	}
	.extra-offerings-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.features-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.features-visual {
		height: 380px;
	}
	.booking-grid {
		grid-template-columns: 1fr;
		gap: 4rem;
	}
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}
	.main-navigation ul {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--bg-primary);
		flex-direction: column;
		padding: 2rem;
		gap: 1.5rem;
		box-shadow: 0 10px 20px rgba(47, 42, 40, 0.08);
		border-top: 1px solid rgba(47, 42, 40, 0.05);
	}
	.main-navigation.is-active ul {
		display: flex;
	}
	.header-actions {
		display: none;
	}
	
	.hero-title {
		font-size: 3rem;
	}
	.hero-description {
		font-size: 1.05rem;
	}
	.hero-buttons {
		flex-direction: column;
		gap: 1rem;
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
	}
	.btn {
		width: 100%;
	}
	.site-header {
		padding: 0;
	}
	
	.gallery-card-3d {
		width: 300px;
		height: 200px;
	}
	.card-depth-1 { left: 5%; top: 20%; }
	.card-depth-2 { right: 5%; top: 12%; }
	.card-depth-3 { left: 8%; bottom: 12%; }
	.card-depth-4 { right: 8%; bottom: 8%; }
	
	.form-row {
		grid-template-columns: 1fr;
	}
	.form-container {
		padding: 2.2rem 1.8rem;
	}
	.footer-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.posts-grid {
		grid-template-columns: 1fr;
	}
	.stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
	.stat-number {
		font-size: 2.75rem;
	}
	.testimonial-card {
		min-width: 300px;
		max-width: 300px;
	}
}
