@charset "utf-8";
/* D'LÜX Beauty Studio - Premium CSS */

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

:root {
	--primary-dark: #0a0a0a;
	--secondary-dark: #111111;
	--tertiary-dark: #1a1a1a;
	--accent-color: #c9a96e;
	--accent-light: #e8d5b0;
	--accent-rose: #d4a0a0;
	--accent-pink: #c48b9f;
	--text-light: #ffffff;
	--text-gray: #9a9a9a;
	--text-cream: #f5efe6;
	--card-dark: #131313;
	--gradient-gold: linear-gradient(135deg, #c9a96e 0%, #e8d5b0 50%, #c9a96e 100%);
	--gradient-rose: linear-gradient(135deg, #c48b9f 0%, #d4a0a0 100%);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--primary-dark);
	color: var(--text-light);
	overflow-x: hidden;
	line-height: 1.6;
}

/* Scroll Progress */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	z-index: 9999;
	background: var(--gradient-gold);
	width: 0%;
	transition: width 0.1s linear;
}

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

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

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
	border-radius: 3px;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

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

.loader-logo {
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	font-weight: 700;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 30px;
	letter-spacing: 8px;
}

.loader-bar {
	width: 200px;
	height: 2px;
	background: rgba(201, 169, 110, 0.15);
	border-radius: 2px;
	margin: 0 auto 20px;
	overflow: hidden;
}

.loader-progress {
	width: 0%;
	height: 100%;
	background: var(--gradient-gold);
	animation: loadProgress 1.5s ease forwards;
}

@keyframes loadProgress {
	to {
		width: 100%;
	}
}

.loader-text {
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--text-gray);
	font-weight: 300;
}

/* ===== HEADER ===== */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(20px);
	z-index: 1000;
	padding: 15px 0;
	transition: all 0.4s ease;
	border-bottom: 1px solid rgba(201, 169, 110, 0.05);
}

header.scrolled {
	padding: 10px 0;
	background: rgba(10, 10, 10, 0.95);
}

header.scrolled .logo-icon {
	font-size: 22px;
}

header.scrolled .logo-text {
	font-size: 22px;
}

nav {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Logo */
.logo {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 2px;
	transition: all 0.3s ease;
}

.logo-icon {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 700;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.logo-text {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--text-light);
	letter-spacing: 3px;
}

.logo-sub {
	font-family: 'Inter', sans-serif;
	font-size: 8px;
	letter-spacing: 4px;
	color: var(--accent-color);
	text-transform: uppercase;
	margin-left: 8px;
	opacity: 0.8;
	font-weight: 500;
}

.footer-logo {
	display: flex;
	align-items: baseline;
	gap: 5px;
	justify-content: center;
	margin-bottom: 50px;
}

.footer-logo .logo-icon,
.footer-logo .logo-text,
.footer-logo .logo-sub {
	font-family: 'Playfair Display', serif;
}

.footer-logo .logo-icon {
	font-size: 32px;
	font-weight: 700;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-logo .logo-text {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-light);
	letter-spacing: 3px;
}

.footer-logo .logo-sub {
	font-family: 'Inter', sans-serif;
	font-size: 9px;
	letter-spacing: 4px;
	color: var(--accent-color);
	text-transform: uppercase;
	margin-left: 8px;
}

/* Nav Menu */
.nav-menu {
	display: flex;
	list-style: none;
	gap: 5px;
}

.nav-menu a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 10px 18px;
	position: relative;
	transition: all 0.3s ease;
	border-radius: 6px;
	text-transform: uppercase;
	border: 1px solid transparent;
}

.nav-menu a:hover {
	color: var(--accent-light);
	background: rgba(201, 169, 110, 0.06);
	border-color: rgba(201, 169, 110, 0.15);
}

.nav-menu a.active {
	color: var(--accent-color);
	background: rgba(201, 169, 110, 0.08);
	border-color: rgba(201, 169, 110, 0.2);
}

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

.menu-toggle span {
	width: 25px;
	height: 2px;
	background: var(--accent-light);
	transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero-section {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.hero-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.25) saturate(0.7);
	transform: scale(1.1);
	animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
	from {
		transform: scale(1.1);
	}

	to {
		transform: scale(1.2);
	}
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.2) 40%, rgba(10, 10, 10, 0.6) 100%);
}

.hero-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.floating-accent {
	position: absolute;
	border: 1px solid rgba(201, 169, 110, 0.08);
	animation: float 15s ease-in-out infinite;
}

.accent-1 {
	top: 20%;
	left: 10%;
	width: 150px;
	height: 150px;
	border-radius: 50%;
}

.accent-2 {
	bottom: 30%;
	right: 15%;
	width: 100px;
	height: 100px;
	border-radius: 30% 70% 70% 30%;
	animation-delay: -5s;
}

.accent-3 {
	top: 50%;
	right: 30%;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	animation-delay: -10s;
	border-color: rgba(196, 139, 159, 0.08);
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) translateX(0) rotate(0deg);
	}

	25% {
		transform: translateY(-20px) translateX(10px) rotate(90deg);
	}

	50% {
		transform: translateY(10px) translateX(-10px) rotate(180deg);
	}

	75% {
		transform: translateY(-10px) translateX(5px) rotate(270deg);
	}
}

.hero-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.hero-content {
	text-align: center;
	z-index: 2;
	padding: 0 20px;
}

.hero-badge {
	font-size: 11px;
	letter-spacing: 6px;
	color: var(--accent-color);
	margin-bottom: 30px;
	font-weight: 400;
}

.hero-title {
	margin-bottom: 25px;
}

.title-line {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.8rem, 7vw, 5.5rem);
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 1.1;
	color: var(--text-light);
}

.title-line.accent {
	font-style: italic;
	font-weight: 500;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: clamp(0.95rem, 1.8vw, 1.15rem);
	color: var(--text-gray);
	margin-bottom: 45px;
	font-weight: 300;
	letter-spacing: 1px;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}

.hero-cta-group {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-button {
	display: inline-block;
	padding: 16px 42px;
	text-decoration: none;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 0;
	transition: all 0.4s ease;
}

.cta-button.primary {
	background: var(--accent-color);
	color: var(--primary-dark);
}

.cta-button.primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
}

.cta-button.secondary {
	background: transparent;
	color: var(--accent-light);
	border: 1px solid rgba(201, 169, 110, 0.4);
}

.cta-button.secondary:hover {
	background: rgba(201, 169, 110, 0.1);
	transform: translateY(-3px);
	border-color: var(--accent-color);
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	z-index: 2;
	animation: fadeInUp 1s ease 2s both;
}

.scroll-indicator span {
	font-size: 10px;
	letter-spacing: 3px;
	color: var(--text-gray);
	text-transform: uppercase;
}

.scroll-mouse {
	width: 24px;
	height: 38px;
	border: 2px solid rgba(201, 169, 110, 0.3);
	border-radius: 12px;
	position: relative;
}

.scroll-wheel {
	width: 3px;
	height: 8px;
	background: var(--accent-color);
	border-radius: 2px;
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
	0% {
		opacity: 1;
		top: 6px;
	}

	100% {
		opacity: 0;
		top: 20px;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

/* ===== STORY SECTIONS ===== */
.story-section {
	padding: 120px 30px;
	position: relative;
	background: var(--primary-dark);
}

.story-dark {
	background: var(--secondary-dark);
}

.story-container {
	max-width: 1300px;
	margin: 0 auto;
}

.story-chapter {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
}

.story-chapter.reverse {
	direction: rtl;
}

.story-chapter.reverse>* {
	direction: ltr;
}

.chapter-number {
	position: absolute;
	top: -40px;
	left: -20px;
	font-family: 'Playfair Display', serif;
	font-size: 8rem;
	font-weight: 700;
	color: rgba(201, 169, 110, 0.04);
	line-height: 1;
	pointer-events: none;
	z-index: 0;
}

.story-chapter.reverse .chapter-number {
	left: auto;
	right: -20px;
}

.story-visual {
	position: relative;
	z-index: 1;
}

.story-image-wrapper {
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.story-image-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid rgba(201, 169, 110, 0.1);
	border-radius: 8px;
	pointer-events: none;
}

.story-image {
	width: 100%;
	height: 450px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.story-image-wrapper:hover .story-image {
	transform: scale(1.05);
}

.story-text {
	position: relative;
	z-index: 1;
}

.story-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: -0.5px;
}

.story-divider {
	width: 60px;
	height: 2px;
	background: var(--gradient-gold);
	margin-bottom: 30px;
}

.story-paragraph {
	color: var(--text-gray);
	line-height: 1.9;
	margin-bottom: 20px;
	font-size: 16px;
}

.story-quote {
	margin-top: 30px;
	padding: 25px 30px;
	border-left: 2px solid var(--accent-color);
	background: rgba(201, 169, 110, 0.03);
}

.story-quote blockquote {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	font-style: italic;
	color: var(--text-cream);
	line-height: 1.7;
	margin-bottom: 10px;
}

.story-quote cite {
	font-size: 13px;
	color: var(--accent-color);
	font-style: normal;
	letter-spacing: 1px;
}

.story-stats {
	display: flex;
	gap: 40px;
	margin-top: 35px;
}

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

.stat-num {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent-color);
}

.stat-text {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-gray);
	margin-top: 5px;
}

.story-cta {
	display: inline-block;
	margin-top: 30px;
	color: var(--accent-color);
	text-decoration: none;
	font-size: 14px;
	letter-spacing: 2px;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s ease;
	padding-bottom: 3px;
	border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.story-cta:hover {
	color: var(--accent-light);
	border-color: var(--accent-light);
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
	padding: 100px 0;
	background: var(--secondary-dark);
	overflow: hidden;
}

.experience-header {
	text-align: center;
	padding: 0 30px;
	margin-bottom: 60px;
}

.experience-track-wrapper {
	overflow: hidden;
	padding: 20px 0 40px;
}

.experience-track {
	display: flex;
	gap: 30px;
	padding: 0 30px;
	animation: scrollTrack 25s linear infinite;
	width: max-content;
}

@keyframes scrollTrack {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

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

.experience-card {
	min-width: 320px;
	padding: 45px 35px;
	background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(13, 13, 13, 1));
	border: 1px solid rgba(201, 169, 110, 0.08);
	border-radius: 12px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.experience-card:hover {
	border-color: rgba(201, 169, 110, 0.25);
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.exp-card-number {
	font-family: 'Playfair Display', serif;
	font-size: 4rem;
	font-weight: 700;
	color: rgba(201, 169, 110, 0.06);
	position: absolute;
	top: 15px;
	right: 20px;
}

.exp-card-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 25px;
}

.exp-card-icon svg {
	width: 100%;
	height: 100%;
	fill: var(--accent-color);
	opacity: 0.8;
}

.experience-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	margin-bottom: 15px;
	color: var(--text-cream);
}

.experience-card p {
	color: var(--text-gray);
	font-size: 14px;
	line-height: 1.8;
}

/* ===== SECTION HEADERS ===== */
.section-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 0 20px;
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.5px;
	margin-bottom: 18px;
}

.section-subtitle {
	color: var(--text-gray);
	font-size: 16px;
	max-width: 550px;
	margin: 0 auto;
}

/* ===== SERVICES ===== */
.services-section {
	padding: 120px 30px;
	background: var(--primary-dark);
}

.services-container {
	max-width: 1300px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 30px;
}

.service-card {
	background: var(--card-dark);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.03);
	transition: all 0.5s ease;
	position: relative;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(201, 169, 110, 0.2);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	filter: brightness(0.8);
}

.service-card:hover .service-image img {
	transform: scale(1.08);
	filter: brightness(0.9);
}

.service-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: linear-gradient(to top, var(--card-dark) 0%, transparent 100%);
}

.service-content {
	padding: 25px 30px 30px;
}

.service-icon {
	width: 45px;
	height: 45px;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(201, 169, 110, 0.08);
	border-radius: 50%;
	transition: all 0.4s ease;
}

.service-card:hover .service-icon {
	background: rgba(201, 169, 110, 0.15);
	transform: scale(1.1);
}

.service-icon svg {
	width: 22px;
	height: 22px;
	fill: var(--accent-color);
}

.service-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	margin-bottom: 12px;
	font-weight: 600;
	color: var(--text-cream);
}

.service-description {
	color: var(--text-gray);
	line-height: 1.8;
	font-size: 14px;
	margin-bottom: 20px;
}

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

.service-duration {
	font-size: 12px;
	color: var(--text-gray);
	letter-spacing: 1px;
}

.service-price {
	font-size: 13px;
	color: var(--accent-color);
	font-weight: 600;
	letter-spacing: 1px;
}

/* ===== PORTFOLIO / GALLERY ===== */
.portfolio-section {
	padding: 100px 0;
	position: relative;
	background: var(--secondary-dark);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.coverflow-wrapper {
	width: 100%;
	position: relative;
	padding: 40px 0 80px;
}

.coverflow-container {
	width: 900px;
	max-width: 90vw;
	height: clamp(350px, 45vh, 500px);
	position: relative;
	transform-style: preserve-3d;
	margin: 0 auto;
	perspective: 1200px;
}

.coverflow-item {
	position: absolute;
	width: clamp(210px, 27vh, 300px);
	height: clamp(290px, 38vh, 420px);
	left: 50%;
	top: 50%;
	transform-origin: center center;
	cursor: pointer;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

@media (min-height: 900px) {
	.coverflow-container {
		height: clamp(450px, 50vh, 550px);
	}

	.coverflow-item {
		width: clamp(280px, 30vh, 340px);
		height: clamp(390px, 42vh, 480px);
	}
}

@media (max-height: 768px) {
	.coverflow-container {
		height: clamp(300px, 42vh, 380px);
	}

	.coverflow-item {
		width: clamp(180px, 24vh, 240px);
		height: clamp(250px, 34vh, 320px);
	}
}

.coverflow-item::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	transform: scaleY(-1) translateY(1px);
	opacity: 0.1;
	filter: blur(2px);
	mask: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
	-webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
	pointer-events: none;
}

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

.coverflow-item:hover .portfolio-image {
	transform: scale(1.05);
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
	transform: translateY(100px);
	transition: transform 0.4s ease;
}

.coverflow-item:hover .portfolio-overlay {
	transform: translateY(0);
}

.portfolio-category {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--accent-color);
	margin-bottom: 8px;
	font-weight: 600;
}

.portfolio-title {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 6px;
}

.portfolio-description {
	font-size: 13px;
	color: var(--text-gray);
}

/* Controls */
.coverflow-controls {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 10;
}

.control-btn {
	width: 45px;
	height: 45px;
	border: 1px solid rgba(201, 169, 110, 0.2);
	background: rgba(20, 20, 20, 0.8);
	backdrop-filter: blur(10px);
	color: var(--accent-light);
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.control-btn:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--primary-dark);
	transform: scale(1.1);
}

#playPauseBtn {
	padding-left: 2px;
}

#playPauseBtn.playing {
	padding-left: 0;
}

.indicators {
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(201, 169, 110, 0.15);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	width: 30px;
	border-radius: 4px;
	background: var(--accent-color);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
	padding: 120px 30px;
	background: var(--primary-dark);
}

.testimonials-container {
	max-width: 1200px;
	margin: 0 auto;
}

.testimonials-track {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 20px;
}

.testimonial-card {
	padding: 40px;
	background: rgba(17, 17, 17, 0.8);
	border: 1px solid rgba(201, 169, 110, 0.06);
	border-radius: 12px;
	transition: all 0.4s ease;
}

.testimonial-card:hover {
	border-color: rgba(201, 169, 110, 0.2);
	transform: translateY(-5px);
}

.testimonial-stars {
	color: var(--accent-color);
	font-size: 16px;
	margin-bottom: 20px;
	letter-spacing: 3px;
}

.testimonial-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.15rem;
	font-style: italic;
	color: var(--text-cream);
	line-height: 1.8;
	margin-bottom: 25px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(201, 169, 110, 0.1);
	border: 1px solid rgba(201, 169, 110, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	color: var(--accent-color);
}

.author-name {
	display: block;
	font-weight: 600;
	font-size: 15px;
	color: var(--text-light);
}

.author-service {
	display: block;
	font-size: 12px;
	color: var(--text-gray);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 3px;
}

/* ===== ABOUT ===== */
.about-section {
	padding: 120px 30px;
	background: var(--secondary-dark);
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: center;
}

.about-image {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: all 0.6s ease;
}

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

.about-image-frame {
	position: absolute;
	top: 15px;
	left: 15px;
	right: -15px;
	bottom: -15px;
	border: 1px solid rgba(201, 169, 110, 0.15);
	border-radius: 8px;
	z-index: -1;
}

.about-badge {
	font-size: 11px;
	letter-spacing: 5px;
	color: var(--accent-color);
	margin-bottom: 15px;
	font-weight: 500;
}

.about-content h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 4vw, 2.8rem);
	margin-bottom: 25px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.about-content p {
	color: var(--text-gray);
	line-height: 1.9;
	margin-bottom: 18px;
	font-size: 15px;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

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

.stat-number {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.stat-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-gray);
}

/* ===== CONTACT ===== */
.contact-section {
	padding: 120px 30px;
	background: var(--primary-dark);
}

.contact-container {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 25px;
	margin-top: 50px;
}

.contact-item {
	display: block;
	padding: 35px 25px;
	background: rgba(17, 17, 17, 0.8);
	border-radius: 12px;
	transition: all 0.4s ease;
	text-decoration: none;
	border: 1px solid rgba(201, 169, 110, 0.06);
	cursor: pointer;
}

.contact-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	border-color: rgba(201, 169, 110, 0.25);
}

.contact-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(201, 169, 110, 0.08);
	border-radius: 50%;
	transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
	transform: scale(1.1);
	background: rgba(201, 169, 110, 0.15);
}

.contact-icon svg {
	width: 24px;
	height: 24px;
	fill: var(--accent-color);
}

.contact-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-gray);
	margin-bottom: 8px;
}

.contact-value {
	color: var(--text-light);
	font-size: 16px;
	transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
	color: var(--accent-color);
}

/* Working Hours */
.working-hours {
	margin-top: 60px;
	padding: 40px;
	background: rgba(17, 17, 17, 0.5);
	border-radius: 12px;
	border: 1px solid rgba(201, 169, 110, 0.06);
}

.working-hours h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	margin-bottom: 25px;
	color: var(--text-cream);
}

.hours-grid {
	max-width: 400px;
	margin: 0 auto;
}

.hour-item {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	font-size: 15px;
}

.hour-item span:first-child {
	color: var(--text-gray);
}

.hour-item span:last-child {
	color: var(--accent-color);
	font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
	background: var(--secondary-dark);
	padding: 50px 30px;
	text-align: center;
	border-top: 1px solid rgba(201, 169, 110, 0.06);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 25px;
}

.social-link {
	width: 45px;
	height: 45px;
	border: 1px solid rgba(201, 169, 110, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	background: rgba(20, 20, 20, 0.5);
	position: relative;
	overflow: hidden;
}

.social-link::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: var(--accent-color);
	transition: all 0.4s ease;
	transform: translate(-50%, -50%);
}

.social-link:hover::before {
	width: 100%;
	height: 100%;
}

.social-link svg {
	width: 20px;
	height: 20px;
	fill: var(--text-gray);
	z-index: 1;
	transition: all 0.3s ease;
}

.social-link:hover {
	border-color: var(--accent-color);
	transform: translateY(-3px);
}

.social-link:hover svg {
	fill: var(--primary-dark);
}

.footer-text {
	color: var(--text-gray);
	font-size: 13px;
	line-height: 1.8;
}

.footer-text a {
	color: var(--accent-color);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.footer-text a:hover {
	opacity: 0.8;
}

/* WhatsApp Float */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	animation: pulse 2s ease infinite;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
	width: 28px;
	height: 28px;
	fill: white;
}

@keyframes pulse {

	0%,
	100% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	}

	50% {
		box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
	}
}

/* ===== ANIMATIONS ===== */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.active {
	opacity: 1;
	transform: translateX(0);
}

.reveal-right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.active {
	opacity: 1;
	transform: translateX(0);
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {

	.story-chapter,
	.story-chapter.reverse {
		grid-template-columns: 1fr;
		gap: 40px;
		direction: ltr;
	}

	.story-image {
		height: 350px;
	}

	.services-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
}

@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background: rgba(10, 10, 10, 0.98);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 30px 0;
		gap: 10px;
		backdrop-filter: blur(10px);
	}

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

	.nav-menu a {
		padding: 12px 20px;
		display: block;
		font-size: 14px;
	}

	.menu-toggle {
		display: flex;
	}

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

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

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

	.about-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.story-stats {
		gap: 25px;
	}

	.contact-info {
		grid-template-columns: 1fr;
	}

	.coverflow-container {
		height: clamp(280px, 40vh, 350px);
	}

	.coverflow-item {
		width: clamp(170px, 22vh, 220px);
		height: clamp(230px, 30vh, 300px);
	}

	.hero-cta-group {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.title-line {
		font-size: 2.2rem;
	}

	.coverflow-container {
		height: clamp(250px, 38vh, 320px);
	}

	.coverflow-item {
		width: clamp(150px, 20vh, 200px);
		height: clamp(200px, 28vh, 280px);
	}

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

	.story-stats {
		flex-direction: column;
		gap: 20px;
	}

	.testimonials-track {
		grid-template-columns: 1fr;
	}
}

/* ===== LOGO IMG ===== */
.logo-img {
	height: 50px;
	width: auto;
	filter: brightness(0.65) sepia(1) saturate(1.8);
	transition: all 0.4s ease;
}

.logo:hover .logo-img {
	filter: brightness(0.75) sepia(1) saturate(2.2);
	transform: scale(1.03);
}

.loader-logo-img {
	height: 150px;
	width: auto;
	margin-bottom: 35px;
	filter: brightness(0.65) sepia(1) saturate(1.8);
	animation: logoPulse 2s ease infinite;
}

@keyframes logoPulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.8;
		transform: scale(1.05);
	}
}

.footer-logo-img {
	height: 80px;
	width: auto;
	margin-bottom: 20px;
	filter: brightness(0.65) sepia(1) saturate(1.8);
}

/* ===== DROPDOWN ===== */
.has-dropdown {
	position: relative;
}

.dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: rgba(15, 15, 15, 0.98);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(201, 169, 110, 0.1);
	border-radius: 8px;
	padding: 10px 0;
	list-style: none;
	z-index: 100;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.has-dropdown:hover .dropdown {
	display: block;
}

.dropdown li a {
	display: block;
	padding: 10px 20px;
	color: var(--text-gray);
	font-size: 13px;
	text-decoration: none;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	border: none;
}

.dropdown li a:hover {
	color: var(--accent-color);
	background: rgba(201, 169, 110, 0.05);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
	padding: 60px 30px;
	background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(196, 139, 159, 0.05));
	text-align: center;
	border-top: 1px solid rgba(201, 169, 110, 0.1);
	border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.promo-content {
	max-width: 700px;
	margin: 0 auto;
}

.promo-tag {
	display: inline-block;
	padding: 6px 18px;
	background: var(--accent-color);
	color: var(--primary-dark);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	border-radius: 20px;
	margin-bottom: 20px;
}

.promo-banner h3 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 10px;
}

.promo-banner p {
	font-size: 18px;
	color: var(--text-gray);
	margin-bottom: 25px;
}

.promo-banner strong {
	color: var(--accent-color);
	font-size: 24px;
}

/* ===== WHY US ===== */
.why-us-section {
	padding: 100px 30px;
	background: var(--secondary-dark);
}

.why-us-container {
	max-width: 1200px;
	margin: 0 auto;
}

.why-us-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin-top: 20px;
}

.why-card {
	padding: 35px 30px;
	background: rgba(15, 15, 15, 0.6);
	border: 1px solid rgba(201, 169, 110, 0.06);
	border-radius: 12px;
	text-align: center;
	transition: all 0.4s ease;
}

.why-card:hover {
	border-color: rgba(201, 169, 110, 0.2);
	transform: translateY(-5px);
}

.why-icon {
	font-size: 2rem;
	margin-bottom: 15px;
}

.why-card h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: var(--text-cream);
}

.why-card p {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.7;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
	text-align: left;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.footer-col h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1rem;
	color: var(--text-cream);
	margin-bottom: 15px;
}

.footer-col a {
	display: block;
	color: var(--text-gray);
	text-decoration: none;
	font-size: 14px;
	padding: 4px 0;
	transition: color 0.3s ease;
}

.footer-col a:hover {
	color: var(--accent-color);
}

.footer-col p {
	color: var(--text-gray);
	font-size: 13px;
	line-height: 1.7;
}

/* ===== PAGE HERO (Sub-pages) ===== */
.page-hero {
	height: 45vh;
	min-height: 300px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: 0;
}

.page-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.page-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.25) saturate(0.6);
}

.page-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.7) 100%);
}

.page-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 20px;
}

.breadcrumb {
	font-size: 13px;
	color: var(--text-gray);
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.breadcrumb a {
	color: var(--accent-color);
	text-decoration: none;
	transition: opacity 0.3s;
}

.breadcrumb a:hover {
	opacity: 0.8;
}

.page-hero-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 700;
	margin-bottom: 10px;
}

.page-hero-subtitle {
	font-size: 16px;
	color: var(--text-gray);
	letter-spacing: 2px;
}

/* ===== PAGE CONTENT ===== */
.page-content-section {
	padding: 80px 30px;
	background: var(--primary-dark);
}

.page-container {
	max-width: 1200px;
	margin: 0 auto;
}

.page-intro {
	font-size: 17px;
	color: var(--text-gray);
	line-height: 1.9;
	max-width: 800px;
	margin: 0 auto 60px;
	text-align: center;
}

.about-full-container {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
}

.about-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.about-feature-card {
	padding: 40px;
	background: rgba(17, 17, 17, 0.6);
	border: 1px solid rgba(201, 169, 110, 0.06);
	border-radius: 12px;
	transition: all 0.4s ease;
}

.about-feature-card:hover {
	border-color: rgba(201, 169, 110, 0.2);
	transform: translateY(-5px);
}

.about-feature-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: var(--accent-color);
}

.about-feature-card p {
	color: var(--text-gray);
	line-height: 1.8;
	font-size: 15px;
	margin-bottom: 12px;
}

.about-cta-section {
	text-align: center;
	padding: 60px 40px;
	background: rgba(201, 169, 110, 0.03);
	border: 1px solid rgba(201, 169, 110, 0.08);
	border-radius: 16px;
}

.about-cta-section h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.about-cta-section p {
	color: var(--text-gray);
	margin-bottom: 25px;
	font-size: 16px;
}

.services-cta {
	text-align: center;
	margin-top: 50px;
}

/* ===== SERVICE DETAIL (hizmetlerimiz page) ===== */
.service-detail-grid {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.service-detail-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	padding: 40px;
	background: rgba(17, 17, 17, 0.4);
	border: 1px solid rgba(201, 169, 110, 0.06);
	border-radius: 16px;
	transition: all 0.4s ease;
}

.service-detail-card:hover {
	border-color: rgba(201, 169, 110, 0.15);
}

.service-detail-card.reverse {
	direction: rtl;
}

.service-detail-card.reverse>* {
	direction: ltr;
}

.service-detail-img {
	border-radius: 12px;
	overflow: hidden;
}

.service-detail-img img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.service-detail-number {
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	font-weight: 700;
	color: rgba(201, 169, 110, 0.1);
	display: block;
	margin-bottom: 10px;
}

.service-detail-content h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	margin-bottom: 18px;
	color: var(--text-cream);
}

.service-detail-content ul {
	list-style: none;
	margin-bottom: 20px;
}

.service-detail-content li {
	padding: 8px 0;
	padding-left: 20px;
	position: relative;
	color: var(--text-gray);
	font-size: 15px;
	line-height: 1.7;
}

.service-detail-content li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: 700;
}

.service-detail-cta {
	color: var(--accent-color);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(201, 169, 110, 0.3);
	padding-bottom: 3px;
}

.service-detail-cta:hover {
	color: var(--accent-light);
	border-color: var(--accent-light);
}

/* ===== CONTACT FORM ===== */
.contact-page-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-form-area h2,
.contact-info-area h2 {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.contact-form-area p {
	color: var(--text-gray);
	margin-bottom: 30px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

.form-group label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-gray);
	margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 14px 18px;
	background: rgba(17, 17, 17, 0.8);
	border: 1px solid rgba(201, 169, 110, 0.1);
	border-radius: 8px;
	color: var(--text-light);
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	transition: all 0.3s ease;
	outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 15px rgba(201, 169, 110, 0.1);
}

.form-group select {
	cursor: pointer;
}

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

.contact-info-cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 30px;
}

.contact-info-card {
	padding: 25px;
	background: rgba(17, 17, 17, 0.6);
	border: 1px solid rgba(201, 169, 110, 0.06);
	border-radius: 12px;
	display: flex;
	gap: 20px;
	align-items: center;
}

.contact-info-card .contact-icon {
	flex-shrink: 0;
	margin: 0;
}

.contact-info-content {
	flex: 1;
	min-width: 0;
}

.contact-info-card h4 {
	font-size: 15px;
	margin-bottom: 5px;
	color: var(--text-cream);
}

.contact-info-card p {
	font-size: 14px;
	color: var(--text-gray);
}

.contact-info-card a {
	color: var(--accent-color);
	text-decoration: none;
}

.contact-link {
	display: inline-block;
	margin-top: 8px;
	font-size: 13px;
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.map-container {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(201, 169, 110, 0.1);
}

/* ===== GALLERY ===== */
.gallery-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 40px;
}

.filter-btn {
	padding: 10px 22px;
	background: transparent;
	border: 1px solid rgba(201, 169, 110, 0.15);
	color: var(--text-gray);
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	cursor: pointer;
	border-radius: 25px;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--accent-color);
	color: var(--primary-dark);
	border-color: var(--accent-color);
}

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

.gallery-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
}

.gallery-overlay span {
	font-size: 14px;
	color: var(--text-cream);
	font-weight: 500;
}

.gallery-item.hidden {
	display: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 10000;
	align-items: center;
	justify-content: center;
}

.lightbox.active {
	display: flex;
}

.lightbox-img {
	max-width: 85vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: absolute;
	background: none;
	border: none;
	color: white;
	font-size: 2rem;
	cursor: pointer;
	padding: 15px;
	transition: all 0.3s ease;
	z-index: 10001;
}

.lightbox-close {
	top: 20px;
	right: 20px;
}

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

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

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
	color: var(--accent-color);
}

/* ===== MISSION VISION ===== */
.mission-vision-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.mv-card {
	padding: 50px 40px;
	background: rgba(17, 17, 17, 0.5);
	border: 1px solid rgba(201, 169, 110, 0.06);
	border-radius: 16px;
	transition: all 0.4s ease;
}

.mv-card:hover {
	border-color: rgba(201, 169, 110, 0.2);
	transform: translateY(-5px);
}

.mv-icon {
	margin-bottom: 20px;
}

.mv-icon svg {
	width: 50px;
	height: 50px;
	color: var(--accent-color);
}

.mv-card h2 {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.mv-divider {
	width: 50px;
	height: 2px;
	background: var(--gradient-gold);
	margin-bottom: 25px;
}

.mv-card p {
	color: var(--text-gray);
	line-height: 1.9;
	font-size: 15px;
	margin-bottom: 15px;
}

/* ===== RESPONSIVE FOR NEW ===== */
@media (max-width: 768px) {
	.about-full-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.service-detail-card,
	.service-detail-card.reverse {
		grid-template-columns: 1fr;
		direction: ltr;
		padding: 20px;
	}

	.contact-page-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.mission-vision-grid {
		grid-template-columns: 1fr;
	}

	.footer-links {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.dropdown {
		position: static;
		display: none;
		background: rgba(20, 20, 20, 0.95);
		border: none;
		border-radius: 0;
		box-shadow: none;
	}

	.has-dropdown.active .dropdown {
		display: block;
	}

	.gallery-masonry {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
}