/* ===============================================
   MOSHE BIBI BARBERSHOP - Premium Brand Design System
   Fixed + Enhanced Background (Orange-Black Cinematic)
   =============================================== */

/* ===== ROOT VARIABLES & TYPOGRAPHY ===== */
:root {
	/* Brand Colors */
	--brand-orange: #ff8800;
	--brand-orange-light: #ff9933;
	--brand-orange-dark: #e67300;
	--brand-gold: #ffd700;
	--brand-gold-light: #fff4b3;
	
	/* Neutrals */
	--black: #000000;
	--black-900: #0a0a0a;
	--black-800: #151515;
	--black-700: #1a1a1a;
	--black-600: #252525;
	--gray-900: #111111;
	--gray-800: #1e1e1e;
	--gray-700: #2a2a2a;
	--gray-600: #3a3a3a;
	--gray-500: #525252;
	--gray-400: #737373;
	--gray-300: #a3a3a3;
	--gray-200: #d4d4d4;
	--white: #ffffff;
	
	/* Spacing Scale */
	--space-xs: 0.25rem;
	--space-sm: 0.5rem;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-2xl: 3rem;
	--space-3xl: 4rem;
	
	/* Shadows */
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
	--shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.6);
	--shadow-orange: 0 0 30px rgba(255, 136, 0, 0.4);
	--shadow-orange-lg: 0 0 60px rgba(255, 136, 0, 0.5);
	
	/* Transitions */
	--transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	color: #fff;
	font-family: 'Heebo', sans-serif;
	overflow-x: hidden;

	/* Cinematic gradient background */
	background: #000000;
	background-image: 
		radial-gradient(
			circle at center,
			rgba(255,136,0,0.18) 0%,
			rgba(255,110,0,0.12) 25%,
			rgba(0,0,0,0.8) 85%,
			rgba(0,0,0,1) 100%
		),
		linear-gradient(120deg, #000000 0%, #1a0a00 60%, #ff8800 150%);
	background-attachment: fixed;
	background-size: 100% 100%, 200% 200%;
	background-position: center, 0% 50%;
	animation: backgroundShift 25s ease-in-out infinite;
}

/* Smooth gradient movement */
@keyframes backgroundShift {
	0%, 100% { background-position: center, 0% 50%; }
	50% { background-position: center, 100% 50%; }
}

/* Soft golden ambient glow behind everything */
body::before {
	content: "";
	position: fixed;
	top: 50%;
	left: 50%;
	width: 1600px;
	height: 1600px;
	background: radial-gradient(circle, rgba(255,136,0,0.25) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	filter: blur(220px);
	opacity: 0.6;
	z-index: 0;
	pointer-events: none;
	animation: glowPulseAmbient 10s ease-in-out infinite;
}

@keyframes glowPulseAmbient {
	0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
	50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Make sure main content appears above the gradient */
main, header, footer, section {
	position: relative;
	z-index: 10;
}

/* ===== PREMIUM TYPOGRAPHY ===== */
.font-heebo {
	font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: -0.01em;
}

/* Enhanced heading styles */
h1, h2, h3, h4, h5, h6 {
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

/* ===== PREMIUM GLOW EFFECTS ===== */
.orange-glow {
	box-shadow: 0 0 20px rgba(255, 136, 0, 0.3),
				0 0 40px rgba(255, 136, 0, 0.2),
				0 0 60px rgba(255, 136, 0, 0.1);
	transition: all var(--transition-base);
}

.orange-glow:hover {
	box-shadow: 0 0 30px rgba(255, 136, 0, 0.5),
				0 0 60px rgba(255, 136, 0, 0.3),
				0 0 90px rgba(255, 136, 0, 0.2);
	transform: translateY(-2px);
}

.premium-glow {
	box-shadow: 0 0 40px rgba(255, 136, 0, 0.25),
				0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ===== PREMIUM NAVIGATION ===== */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: all var(--transition-base);
}

/* ===== MODERN NAVIGATION LAYOUT ===== */
.modern-nav {
	position: fixed;
	top: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 80px;
	height: 80px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: all 0.4s ease;
	z-index: 9999;
	box-sizing: border-box;
}

/* State after scrolling */
.modern-nav.scrolled {
	padding: 10px 80px;
	height: 65px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
	transition: all 0.4s ease;
}

/* Smooth entry animation from the top */
.modern-nav.hidden {
	transform: translateY(-100%);
	opacity: 0;
	transition: all 0.4s ease;
}

/* Nav Container - Adjusts with scrolled state */
.nav-container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.4s ease;
}

/* Left: Brand Name */
.nav-brand {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.brand-link {
	text-decoration: none;
	display: flex;
	align-items: center;
}

.brand-text {
	font-family: 'Assistant', 'Heebo', sans-serif;
	font-size: 21px;
	font-weight: 800;
	letter-spacing: 1px;
	opacity: 0;
	transform: translateY(-10px);
	animation: fadeDownNav 0.8s ease forwards;
}

@keyframes fadeDownNav {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Center: Menu Links */
.nav-menu {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 40px;
}

.nav-menu-link {
	font-family: 'Assistant', 'Heebo', sans-serif;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-decoration: none;
	opacity: 0;
	transform: translateY(-10px);
	animation: fadeInNav 0.5s ease forwards;
	transition: transform 0.2s ease;
	display: block;
	position: relative;
}

.nav-menu li:nth-child(1) .nav-menu-link {
	animation-delay: 0.3s;
}

.nav-menu li:nth-child(2) .nav-menu-link {
	animation-delay: 0.4s;
}

.nav-menu li:nth-child(3) .nav-menu-link {
	animation-delay: 0.5s;
}

@keyframes fadeInNav {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Underline Animation - Hover Effect */
.nav-menu-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	right: 0;
	left: 100%;
	height: 2px;
	background-color: #ff8800;
	transition: left 0.3s ease, opacity 0.3s ease;
	opacity: 0;
}

.nav-menu-link:hover {
	transform: translateY(-2px);
}

.nav-menu-link:hover::after {
	left: 0;
	opacity: 1;
}

/* Active Page - Fixed Underline */
.nav-menu-link.active::after {
	left: 0;
	opacity: 1;
	transition: none;
}

/* Right: Mobile Menu Button */
.mobile-menu-btn {
	display: none;
	flex: 0 0 auto;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	transition: transform 0.2s ease;
}

.mobile-menu-btn:hover {
	transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu {
	display: none;
	position: fixed;
	top: 80px;
	right: 0;
	width: 300px;
	height: calc(100vh - 80px);
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	z-index: 1000;
	overflow-y: auto;
}

.mobile-menu:not(.hidden) {
	display: block;
	animation: slideInRight 0.3s ease forwards;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.mobile-menu-list {
	list-style: none;
	margin: 0;
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	gap: 60px;
	align-items: center;
}

.mobile-menu-link {
	font-family: 'Assistant', 'Heebo', sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-decoration: none;
	opacity: 0;
	transform: translateX(20px);
	animation: fadeInSlideRight 0.5s ease forwards;
	display: block;
}

.mobile-menu-list li:nth-child(1) .mobile-menu-link {
	animation-delay: 0.1s;
}

.mobile-menu-list li:nth-child(2) .mobile-menu-link {
	animation-delay: 0.2s;
}

.mobile-menu-list li:nth-child(3) .mobile-menu-link {
	animation-delay: 0.3s;
}

@keyframes fadeInSlideRight {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Responsive: Below 768px */
@media (max-width: 768px) {
	.modern-nav {
		padding: 0 24px;
	}
	
	.nav-menu {
		display: none;
	}
	
	.mobile-menu-btn {
		display: block;
	}
	
	.mobile-menu-list {
		gap: 70px;
	}
	
	.brand-text {
		font-size: 18px;
	}
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
	.modern-nav {
		padding: 0 40px;
	}
	
	.nav-menu {
		gap: 35px;
	}
}

header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent,
		rgba(255, 136, 0, 0.5),
		rgba(255, 136, 0, 0.3),
		rgba(255, 136, 0, 0.5),
		transparent
	);
	opacity: 0.6;
}

.nav-elevated {
	background: rgba(0, 0, 0, 0.75) !important;
	backdrop-filter: blur(28px) saturate(200%) !important;
	-webkit-backdrop-filter: blur(28px) saturate(200%) !important;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6),
				0 0 20px rgba(255, 136, 0, 0.05),
				inset 0 -1px 0 rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 136, 0, 0.2);
}

.nav-elevated::before {
	opacity: 1 !important;
	animation: headerGlow 3s ease-in-out infinite;
}

@keyframes headerGlow {
	0%, 100% {
		opacity: 0.6;
	}
	50% {
		opacity: 1;
	}
}

/* Premium link underline */
.link-underline {
	position: relative;
	transition: all var(--transition-fast);
	font-weight: 500;
}

.link-underline::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
	opacity: 0;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--transition-base), opacity var(--transition-base);
}

.link-underline::before {
	content: '';
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: -4px;
	height: 2px;
	background: var(--brand-orange);
	opacity: 0;
	transition: all var(--transition-base);
	border-radius: 2px;
}

.link-underline:hover {
	color: var(--white);
	transform: translateY(-2px);
	text-shadow: 0 0 10px rgba(255, 136, 0, 0.5);
}

.link-underline:hover::after {
	opacity: 1;
	transform: scaleX(1);
	transform-origin: left;
}

.link-underline:hover::before {
	left: -2px;
	right: -2px;
	opacity: 0.6;
}

/* ===== PREMIUM CARDS ===== */
.premium-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
	transition: all var(--transition-base);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.premium-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 136, 0, 0.1) 0%, transparent 100%);
	opacity: 0;
	transition: opacity var(--transition-base);
	pointer-events: none;
}

.premium-card:hover {
	transform: translateY(-8px) scale(1.02);
	border-color: rgba(255, 136, 0, 0.4);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
				0 0 40px rgba(255, 136, 0, 0.2);
}

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

/* ===== PREMIUM BUTTONS ===== */
.btn-premium {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-radius: 12px;
	overflow: hidden;
	transition: all var(--transition-base);
	cursor: pointer;
	z-index: 1;
}

.btn-premium-primary {
	background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
	color: var(--black);
	box-shadow: 0 8px 24px rgba(255, 136, 0, 0.3),
				0 0 0 0 rgba(255, 136, 0, 0);
	transition: all var(--transition-base);
}

.btn-premium-primary::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--brand-orange-light) 0%, var(--brand-orange) 100%);
	opacity: 0;
	transition: opacity var(--transition-base);
	z-index: -1;
}

.btn-premium-primary::after {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, rgba(255, 136, 0, 0.5), rgba(255, 136, 0, 0));
	opacity: 0;
	transition: opacity var(--transition-base);
	z-index: -1;
	filter: blur(8px);
}

.btn-premium-primary:hover::before {
	opacity: 1;
}

.btn-premium-primary:hover::after {
	opacity: 1;
}

.btn-premium-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(255, 136, 0, 0.4),
				0 0 0 4px rgba(255, 136, 0, 0.1);
}

.btn-premium-primary:active {
	transform: translateY(0);
	box-shadow: 0 6px 20px rgba(255, 136, 0, 0.3);
}

.btn-premium-secondary {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-premium-secondary:hover {
	border-color: var(--brand-orange);
	background: rgba(255, 136, 0, 0.1);
	color: var(--brand-orange);
}

/* ===== SHIMMER EFFECT ===== */
.shimmer-effect {
	position: relative;
	overflow: hidden;
}

.shimmer-effect::before {
	content: '';
	position: absolute;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	animation: shimmer 3s infinite;
	z-index: 1;
}

@keyframes shimmer {
	0% {
		right: -100%;
	}
	100% {
		right: 100%;
	}
}

/* ===== PREMIUM ANIMATIONS ===== */

/* Float animation */
@keyframes float {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	33% {
		transform: translateY(-15px) rotate(2deg);
	}
	66% {
		transform: translateY(-8px) rotate(-2deg);
	}
}

.animate-float {
	animation: float 8s ease-in-out infinite;
}

/* Premium pulse */
@keyframes premiumPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.9;
	}
}

.badge-pulse {
	animation: premiumPulse 3s ease-in-out infinite;
}

/* Card lift with premium effect */
@keyframes premiumCardLift {
	0% {
		transform: translateY(0) scale(1);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	}
	100% {
		transform: translateY(-12px) scale(1.02);
		box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5),
					0 0 40px rgba(255, 136, 0, 0.3);
	}
}

.animate-card-lift {
	transition: all var(--transition-slow);
}

.animate-card-lift:hover {
	animation: premiumCardLift 0.4s ease forwards;
}

/* Gradient shimmer for buttons */
@keyframes gradientShimmer {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.gradient-animate {
	background-size: 200% 200%;
	animation: gradientShimmer 4s ease infinite;
}

/* Premium glow pulse */
@keyframes glowPulse {
	0%, 100% {
		box-shadow: 0 0 20px rgba(255, 136, 0, 0.3),
					0 0 40px rgba(255, 136, 0, 0.2);
	}
	50% {
		box-shadow: 0 0 40px rgba(255, 136, 0, 0.6),
					0 0 80px rgba(255, 136, 0, 0.4);
	}
}

.animate-hover-glow:hover {
	animation: glowPulse 2s ease-in-out infinite;
}

/* ===== PREMIUM STATS COUNTER ===== */
@keyframes statFadeIn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.8);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.stat-animate {
	animation: statFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ===== PREMIUM TESTIMONIALS ===== */
.testimonial-entry {
	animation: testimonialFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes testimonialFadeIn {
	from {
		opacity: 0;
		transform: translateY(40px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* ===== PREMIUM CAROUSEL ===== */
.carousel-track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 1rem;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 136, 0, 0.3) transparent;
}

.carousel-track::-webkit-scrollbar {
	height: 6px;
}

.carousel-track::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 3px;
}

.carousel-track::-webkit-scrollbar-thumb {
	background: rgba(255, 136, 0, 0.5);
	border-radius: 3px;
}

.carousel-track::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 136, 0, 0.7);
}

.carousel-item {
	min-width: 280px;
	scroll-snap-align: start;
	transition: transform var(--transition-base);
}

.carousel-item:hover {
	transform: scale(1.05);
}

.carousel-nav button[disabled] {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}

/* ===== PREMIUM MOBILE MENU ===== */
#mobile-menu-btn {
	position: relative;
	transition: all var(--transition-fast);
	border-radius: 8px;
}

#mobile-menu-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 8px;
	background: rgba(255, 136, 0, 0.1);
	opacity: 0;
	transition: opacity var(--transition-fast);
}

#mobile-menu-btn:hover {
	color: var(--brand-orange);
	background: rgba(255, 136, 0, 0.05);
}

#mobile-menu-btn:hover::before {
	opacity: 1;
}

#mobile-menu {
	transition: all var(--transition-base);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	background: rgba(0, 0, 0, 0.95);
	border-top: 1px solid rgba(255, 136, 0, 0.2);
}

#mobile-menu:not(.hidden) {
	animation: slideDownMenu 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#mobile-menu ul li a {
	position: relative;
	transition: all var(--transition-fast);
}

#mobile-menu ul li a::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--brand-orange);
	transform: scaleY(0);
	transition: transform var(--transition-base);
	border-radius: 0 4px 4px 0;
}

#mobile-menu ul li a:hover {
	color: var(--brand-orange);
	padding-right: 1rem;
	text-shadow: 0 0 10px rgba(255, 136, 0, 0.5);
}

#mobile-menu ul li a:hover::before {
	transform: scaleY(1);
}

@keyframes slideDownMenu {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== PREMIUM RIPPLE BUTTON ===== */
.ripple-button {
	position: relative;
	overflow: hidden;
}

.ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	transform: translate(-50%, -50%) scale(0);
	animation: ripple-animation 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

@keyframes ripple-animation {
	to {
		transform: translate(-50%, -50%) scale(4);
		opacity: 0;
	}
}

/* ===== PREMIUM LOGO HOVER ===== */
.logo-hover {
	transition: all var(--transition-base);
	position: relative;
}

.logo-hover::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 136, 0, 0.4), transparent);
	opacity: 0;
	transition: opacity var(--transition-base);
	z-index: -1;
	filter: blur(8px);
}

.logo-hover:hover {
	transform: scale(1.08);
}

.logo-hover:hover::before {
	opacity: 1;
}

.logo-hover:hover img {
	animation: logoSpin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 0 30px rgba(255, 136, 0, 0.5),
				0 0 60px rgba(255, 136, 0, 0.2);
}

.logo-hover span {
	position: relative;
	transition: all var(--transition-base);
	text-shadow: 0 0 10px rgba(255, 136, 0, 0.5);
}

.logo-hover:hover span {
	text-shadow: 0 0 20px rgba(255, 136, 0, 0.8),
				 0 0 40px rgba(255, 136, 0, 0.4);
}

@keyframes logoSpin {
	from {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.1);
	}
	to {
		transform: rotate(360deg) scale(1);
	}
}

/* ===== PREMIUM PAGE FADE IN ===== */
@keyframes pageFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.page-fade-in {
	animation: pageFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ===== PREMIUM SECTION SPACING ===== */
section {
	position: relative;
	z-index: 1;
}

/* ===== PREMIUM FORM ELEMENTS ===== */
input:focus,
select:focus,
textarea:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.2),
				0 0 0 1px rgba(255, 136, 0, 0.5);
	border-color: var(--brand-orange);
}

/* ===== PREMIUM SCROLLBAR ===== */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--black-900);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--brand-orange), var(--brand-orange-dark));
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--brand-orange-light), var(--brand-orange));
}

/* ===== AOS ENHANCEMENTS ===== */
[data-aos] {
	transition-duration: 800ms !important;
	transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ===== PREMIUM LOADING ANIMATIONS ===== */
#spray-loader {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999999;
	background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#spray-loader.is-done {
	opacity: 0;
	pointer-events: none;
}

.spray-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#spray-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.spray-can {
	position: absolute;
	bottom: 6vh;
	right: 6vw;
	width: clamp(90px, 12vw, 160px);
	height: auto;
	display: block;
	animation: canIn 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
	will-change: transform;
}

@keyframes canIn {
	from {
		transform: translateX(30vw) rotate(-22deg);
		opacity: 0;
	}
	to {
		transform: translateX(0) rotate(-22deg);
		opacity: 1;
	}
}

#spray-loader.spraying .spray-can {
	animation: canIn 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
				canSprayShake 100ms ease-in-out infinite;
}

@keyframes canSprayShake {
	0%, 100% {
		transform: translateX(0) translateY(0) rotate(-22deg);
	}
	25% {
		transform: translateX(-1px) translateY(-1px) rotate(-21deg);
	}
	50% {
		transform: translateX(1px) translateY(1px) rotate(-23deg);
	}
	75% {
		transform: translateX(-1px) translateY(1px) rotate(-21deg);
	}
}

/* ===== LUXURY HERO SECTION ===== */
.luxury-hero-section {
	position: relative;
	background: transparent;
	overflow: hidden;
	z-index: 1;
}

/* Luxury Entrance Animations */
.luxury-entrance {
	opacity: 0;
	transform: translateY(30px);
	animation: luxuryFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes luxuryFadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.luxury-hero-content {
	will-change: transform;
}

/* Luxury Title Styling */
.luxury-title {
	font-weight: 900;
	letter-spacing: -0.03em;
	background-clip: text;
}

/* Gold Glow Effect */
.gold-glow {
	animation: goldPulse 4s ease-in-out infinite;
}

@keyframes goldPulse {
	0%, 100% {
		box-shadow: 0 0 40px rgba(255, 136, 0, 0.3), 0 0 80px rgba(255, 136, 0, 0.2);
	}
	50% {
		box-shadow: 0 0 60px rgba(255, 136, 0, 0.5), 0 0 120px rgba(255, 136, 0, 0.3);
	}
}

/* Luxury Logo Styling */
.luxury-logo {
	filter: drop-shadow(0 0 20px rgba(255, 136, 0, 0.4));
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	will-change: transform;
}

.luxury-logo-container {
	opacity: 0;
	animation: luxuryFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.luxury-logo-wrapper {
	animation: floatGentle 8s ease-in-out infinite;
}

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

.luxury-logo-wrapper:hover .luxury-logo {
	transform: scale(1.05);
	filter: drop-shadow(0 0 30px rgba(255, 136, 0, 0.6));
}

/* Luxury CTA Buttons */
.luxury-cta-primary {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	cursor: pointer;
	z-index: 1;
	background: linear-gradient(135deg, #ff8800 0%, #e67300 100%);
	color: #0a0a0a;
	box-shadow: 0 8px 24px rgba(255, 136, 0, 0.3), 0 0 20px rgba(255, 136, 0, 0.2);
}

.luxury-cta-primary::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #ff9933 0%, #ff8800 100%);
	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: -1;
}

.luxury-cta-primary:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 36px rgba(255, 136, 0, 0.4), 0 0 40px rgba(255, 136, 0, 0.3);
}

.luxury-cta-primary:hover::before {
	opacity: 1;
}

.luxury-cta-secondary {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2.5rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.luxury-cta-secondary:hover {
	border-color: rgba(255, 136, 0, 0.6);
	background: rgba(255, 136, 0, 0.05);
	color: var(--white);
	box-shadow: 0 0 20px rgba(255, 136, 0, 0.2);
}

/* Mouse Reflection Effect */
.mouse-reflection {
	position: fixed;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 136, 0, 0.03) 0%, transparent 70%);
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.1s ease;
	will-change: transform, opacity;
}

.mouse-reflection.active {
	opacity: 1;
}

/* Scroll Down Indicator */
.scroll-down-indicator {
	cursor: pointer;
	opacity: 1;
	animation: bounceScroll 2s ease-in-out infinite;
	will-change: transform;
}

@keyframes bounceScroll {
	0%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

.scroll-down-indicator svg {
	filter: drop-shadow(0 0 10px rgba(255, 136, 0, 0.5));
}

.scroll-down-indicator:hover {
	animation: bounceScroll 1s ease-in-out infinite;
}

.scroll-down-indicator:hover svg {
	filter: drop-shadow(0 0 20px rgba(255, 136, 0, 0.8));
}

/* Particle Canvas */
#particle-canvas {
	z-index: 0;
	pointer-events: none;
}

/* ===== PREMIUM BADGES ===== */
.premium-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, rgba(255, 136, 0, 0.15) 0%, rgba(255, 136, 0, 0.05) 100%);
	border: 1px solid rgba(255, 136, 0, 0.3);
	border-radius: 50px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	transition: all var(--transition-base);
}

.premium-badge:hover {
	background: linear-gradient(135deg, rgba(255, 136, 0, 0.25) 0%, rgba(255, 136, 0, 0.15) 100%);
	border-color: rgba(255, 136, 0, 0.5);
	transform: scale(1.05);
}

/* ===== RESPONSIVE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
	.animate-float,
	.badge-pulse,
	.animate-hover-glow,
	.gradient-animate {
		animation: none !important;
	}
	
	.premium-card:hover {
		transform: translateY(-4px) scale(1.01);
	}

	/* Hide sparkle on mobile for performance */
	#sparkle-canvas {
		display: none !important;
	}

	/* Luxury Hero Mobile Optimizations */
	.luxury-hero-section {
		padding-top: 2rem;
		padding-bottom: 2rem;
		min-height: auto;
	}

	.luxury-logo-wrapper {
		animation: none;
	}

	.luxury-cta-primary,
	.luxury-cta-secondary {
		padding: 0.875rem 2rem;
		font-size: 0.875rem;
	}

	.luxury-entrance {
		animation: luxuryFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
	}

	.gold-glow {
		animation: none !important;
	}

	.scroll-down-indicator {
		display: none;
	}

}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	
	#spray-loader,
	.spray-can,
	#spray-loader.spraying .spray-can {
		animation: none !important;
	}
	
	#spray-canvas {
		display: none;
	}

	#sparkle-canvas {
		display: none !important;
	}

	/* Disable luxury hero animations for reduced motion */
	.luxury-entrance {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}

	.gold-glow,
	.luxury-hero-gradient,
	.luxury-logo-wrapper,
	.scroll-down-indicator {
		animation: none !important;
	}

	#particle-canvas,
	.mouse-reflection {
		display: none !important;
	}
}

/* ===== PREMIUM UTILITY CLASSES ===== */
.text-gradient {
	background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-gold) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.border-gradient {
	border-image: linear-gradient(135deg, var(--brand-orange), var(--brand-gold)) 1;
}

.shadow-premium {
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
				0 0 40px rgba(255, 136, 0, 0.2);
}

.backdrop-premium {
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(0, 0, 0, 0.7);
}

/* ===== SMOOTH ENTRANCE ANIMATIONS ===== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ===== PREMIUM CURSOR EFFECTS ===== */
@media (min-width: 768px) {
	.premium-cursor-hover {
		cursor: none;
	}
	
	.premium-cursor-hover:hover {
		cursor: pointer;
	}
}

/* ===== BOOKING MODAL PREMIUM STYLING ===== */
#booking-modal {
	animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#booking-modal.hidden {
	animation: modalFadeOut 0.2s cubic-bezier(0.4, 0, 1, 1) forwards;
	pointer-events: none;
}

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

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

#booking-modal .premium-card {
	animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	transform-origin: center;
}

#booking-modal.hidden .premium-card {
	animation: modalSlideDown 0.2s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes modalSlideUp {
	from {
		opacity: 0;
		transform: translateY(40px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes modalSlideDown {
	from {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
	to {
		opacity: 0;
		transform: translateY(40px) scale(0.95);
	}
}

#booking-modal-backdrop {
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#booking-modal.hidden #booking-modal-backdrop {
	opacity: 0;
}

/* Form success message */
.form-success {
	animation: successSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes successSlideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Form error message */
.form-error {
	animation: errorShake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

@keyframes errorShake {
	0%, 100% {
		transform: translateX(0);
	}
	10%, 30%, 50%, 70%, 90% {
		transform: translateX(-5px);
	}
	20%, 40%, 60%, 80% {
		transform: translateX(5px);
	}
}

/* Booking modal input focus states */
#booking-modal input:focus,
#booking-modal select:focus,
#booking-modal textarea:focus {
	border-color: rgba(255, 136, 0, 0.5);
	box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.1),
				0 0 0 1px rgba(255, 136, 0, 0.3);
	background: rgba(255, 255, 255, 0.02);
}

/* Booking modal checkbox styling */
#booking-modal input[type="checkbox"] {
	accent-color: #ff8800;
	cursor: pointer;
}

#booking-modal input[type="checkbox"]:checked {
	background-color: #ff8800;
	border-color: #ff8800;
}

/* Responsive modal adjustments */
@media (max-width: 640px) {
	#booking-modal .premium-card {
		padding: 1.5rem;
	}
}

/* ===== BARBER PAGES STYLES ===== */

/* Barber Hero Section */
.barber-hero-section {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.barber-hero-gradient {
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(ellipse at center, rgba(240, 165, 0, 0.08), transparent 60%),
		linear-gradient(120deg, #000000, #1a0f00, rgba(240, 165, 0, 0.15), #000000);
	background-size: 300% 300%;
	animation: barberGradientShift 20s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

@keyframes barberGradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* Portrait Container & Frame */
.barber-portrait-container {
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	animation: barberFadeInUp 1s ease-out forwards;
	will-change: transform, opacity;
}

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

.barber-portrait-frame {
	position: relative;
	width: 100%;
	max-width: 450px;
	padding: 1rem;
	background: linear-gradient(135deg, rgba(240, 165, 0, 0.15), rgba(217, 119, 6, 0.1));
	border-radius: 32px;
	border: 2px solid rgba(240, 165, 0, 0.3);
	box-shadow: 
		0 0 40px rgba(240, 165, 0, 0.2),
		inset 0 0 60px rgba(240, 165, 0, 0.05);
	overflow: hidden;
	transition: all 0.4s ease;
	will-change: transform;
}

.barber-portrait-frame::before {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(45deg, 
		rgba(240, 165, 0, 0.5), 
		rgba(217, 119, 6, 0.3), 
		rgba(240, 165, 0, 0.5));
	background-size: 200% 200%;
	animation: barberFrameShimmer 3s ease-in-out infinite;
	z-index: -1;
	border-radius: 32px;
	opacity: 0.6;
}

@keyframes barberFrameShimmer {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.barber-portrait-frame:hover {
	transform: scale(1.03);
	box-shadow: 
		0 0 60px rgba(240, 165, 0, 0.4),
		inset 0 0 80px rgba(240, 165, 0, 0.1);
	border-color: rgba(240, 165, 0, 0.5);
}

.barber-portrait-img {
	width: 100%;
	height: auto;
	border-radius: 24px;
	display: block;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.barber-portrait-placeholder {
	width: 100%;
	aspect-ratio: 3/4;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 24px;
	background: rgba(240, 165, 0, 0.05);
}

/* Barber Content */
.barber-content {
	opacity: 0;
	animation: barberFadeInUp 1s ease-out 0.2s forwards;
	will-change: transform, opacity;
}

.barber-name {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: #ff8800; /* Fallback color for browsers that don't support gradient text */
	background: linear-gradient(135deg, #ff8800 0%, #ff9933 50%, #ff8800 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: barberNameGradient 8s ease-in-out infinite;
	position: relative;
	will-change: background-position;
	display: inline-block;
	/* Ensure text is visible even if gradient doesn't work */
	text-shadow: 0 0 0 rgba(255, 136, 0, 0.3);
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
	.barber-name {
		-webkit-text-fill-color: #ff8800;
		color: #ff8800;
	}
}

@keyframes barberNameGradient {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.barber-name::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	right: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, #f0a500, #d97706, #f0a500, transparent);
	border-radius: 2px;
	animation: barberUnderlineExpand 1.5s ease-out 0.5s forwards;
}

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

.barber-bio {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	color: #eaeaea;
	line-height: 1.8;
	margin-bottom: 2rem;
	font-weight: 300;
	letter-spacing: 0.02em;
}

.barber-cta-button {
	transform: translateY(10px);
	opacity: 0;
	animation: barberFadeInUp 1s ease-out 0.4s forwards;
	will-change: transform, opacity;
}

/* Section Title */
.barber-section-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: white;
	margin-bottom: 2.5rem;
	position: relative;
	padding-bottom: 1rem;
	display: inline-block;
}

.barber-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #f0a500, #d97706);
	border-radius: 1px;
	animation: barberUnderlineExpand 1.5s ease-out 0.3s forwards;
}

/* Gallery */
.barber-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.barber-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	aspect-ratio: 4/3;
	opacity: 0;
	animation: barberGalleryFadeIn 0.6s ease-out forwards;
	will-change: transform, opacity;
}

@keyframes barberGalleryFadeIn {
	to {
		opacity: 1;
	}
}

.barber-gallery-item:nth-child(1) { animation-delay: 0.1s; }
.barber-gallery-item:nth-child(2) { animation-delay: 0.2s; }
.barber-gallery-item:nth-child(3) { animation-delay: 0.3s; }
.barber-gallery-item:nth-child(4) { animation-delay: 0.4s; }
.barber-gallery-item:nth-child(5) { animation-delay: 0.5s; }
.barber-gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.gallery-placeholder::before {
	content: '';
	position: absolute;
	inset: -50%;
	background: linear-gradient(45deg, 
		transparent 30%, 
		rgba(240, 165, 0, 0.1) 50%, 
		transparent 70%);
	animation: galleryShimmer 3s ease-in-out infinite;
}

@keyframes galleryShimmer {
	0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
	100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.barber-gallery-item:hover {
	transform: scale(1.05);
	z-index: 10;
}

.barber-gallery-item:hover .gallery-placeholder {
	border-color: rgba(240, 165, 0, 0.4);
	box-shadow: 0 0 20px rgba(240, 165, 0, 0.4);
}

/* Responsive Barbers */
@media (max-width: 1024px) {
	.barber-hero-section {
		min-height: auto;
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	
	.barber-portrait-frame {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.barber-hero-section {
		padding: 2rem 0;
	}
	
	.barber-portrait-frame {
		padding: 0.75rem;
		border-radius: 24px;
	}
	
	.barber-portrait-img {
		border-radius: 16px;
	}
	
	.barber-gallery {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.barber-bio {
		font-size: 1.1rem;
		margin-bottom: 1.5rem;
	}
	
	.barber-name {
		margin-bottom: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	body {
		animation: none !important;
	}
	
	body::before {
		animation: none !important;
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.6;
	}
	
	.barber-hero-gradient {
		animation: none;
		background: linear-gradient(120deg, #000000, #1a0f00, rgba(240, 165, 0, 0.1), #000000);
	}
	
	.barber-portrait-container,
	.barber-content,
	.barber-cta-button,
	.barber-gallery-item {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
	
	.barber-name {
		animation: none;
		background: linear-gradient(135deg, #f0a500 0%, #d97706 100%);
	}
	
	.barber-name::after,
	.barber-section-title::after {
		animation: none !important;
		width: 100% !important;
	}
	
	.barber-portrait-frame::before,
	.gallery-placeholder::before {
		animation: none !important;
	}
}

/* ===== SPARKLE CANVAS FOR GOLD DUST EFFECT ===== */
#sparkle-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

/* ===== COURSES PAGE SPECIFIC STYLES ===== */

/* Students Showcase Section */
.students-showcase {
	position: relative;
	overflow: hidden;
}

.students-marquee-track {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	will-change: transform;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.marquee-img {
	width: 300px;
	height: 200px;
	border-radius: 1rem;
	object-fit: cover;
	filter: brightness(0.9);
	transition: filter 0.3s ease, transform 0.3s ease;
	flex-shrink: 0;
}

.marquee-img:hover {
	filter: brightness(1.15);
	transform: scale(1.05);
	z-index: 10;
	position: relative;
}

/* Gradient masks on edges for seamless fade */
.students-showcase::before,
.students-showcase::after {
	content: "";
	position: absolute;
	top: 0;
	width: 120px;
	height: 100%;
	z-index: 5;
	pointer-events: none;
}

.students-showcase::before {
	left: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.9), transparent);
}

.students-showcase::after {
	right: 0;
	background: linear-gradient(to left, rgba(0,0,0,0.9), transparent);
}

/* Professional Marquee Card Animations */
.marquee-card-wrapper {
	position: relative;
	height: 16rem;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	transform-style: preserve-3d;
}

.marquee-image-container {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: 1rem;
}

.marquee-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.85;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scale(1);
	will-change: transform, opacity;
}

.marquee-overlay {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	z-index: 2;
}

.marquee-overlay-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.95) 0%,
		rgba(0, 0, 0, 0.7) 40%,
		rgba(0, 0, 0, 0.3) 70%,
		transparent 100%
	);
	transition: opacity 0.5s ease;
}

.marquee-overlay-content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
}

.marquee-title {
	transform: translateY(10px);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.marquee-shine {
	position: absolute;
	inset: 0;
	opacity: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.1) 45%,
		rgba(255, 255, 255, 0.2) 50%,
		rgba(255, 255, 255, 0.1) 55%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: translateX(-100%) skewX(-15deg);
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
				opacity 0.8s ease;
	pointer-events: none;
	z-index: 3;
}

.video-showcase-item {
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	perspective: 1000px;
	width: 20rem;
}

.video-showcase-item:hover {
	transform: scale(1.08) translateY(-8px);
	z-index: 10;
}

.video-showcase-item:hover .marquee-card-wrapper {
	box-shadow: 
		0 20px 60px rgba(255, 136, 0, 0.3),
		0 10px 30px rgba(0, 0, 0, 0.6),
		0 0 0 2px rgba(255, 136, 0, 0.4);
	transform: translateZ(20px);
}

.video-showcase-item:hover .marquee-image {
	opacity: 1;
	transform: scale(1.15);
}

.video-showcase-item:hover .marquee-overlay {
	opacity: 1;
}

.video-showcase-item:hover .marquee-title {
	transform: translateY(0);
	opacity: 1;
}

.video-showcase-item:hover .marquee-shine {
	opacity: 1;
	transform: translateX(200%) skewX(-15deg);
}

/* Course Card Image Zoom on Hover */
.course-image-wrapper {
	transition: transform 0.5s ease;
}

.course-card:hover .course-image-wrapper {
	transform: scale(1.1);
}

/* Course Card Gold Glow on Hover */
.course-card:hover {
	box-shadow: 0 0 40px rgba(255, 136, 0, 0.3), 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Course Grid Layout Improvements */
.course-grid {
	grid-auto-rows: 1fr;
	align-items: stretch;
}

.course-grid .course-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	transform: translateY(0);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-grid .course-card:hover .premium-card {
	transform: translateY(-8px) scale(1.02);
}

.course-grid .premium-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Better internal spacing for course cards */
.course-grid .course-card h3 {
	line-height: 1.3;
}

.course-grid .course-card p {
	line-height: 1.7;
	flex-grow: 1;
}

/* Better button spacing in cards */
.course-grid .btn-premium {
	margin-top: auto;
}

/* Shimmer Effect for CTA Button */
.shimmer-effect::after {
	content: '';
	position: absolute;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shimmerMove 3s infinite;
}

@keyframes shimmerMove {
	0% { right: -100%; }
	100% { right: 100%; }
}

/* Mobile Optimizations for Students Marquee */
@media (max-width: 768px) {
	.marquee-img {
		width: 250px;
		height: 160px;
	}
	
	.students-marquee-track {
		gap: 1.5rem;
	}
	
	.students-showcase::before,
	.students-showcase::after {
		width: 80px;
	}
	
	.course-card:hover .course-image-wrapper {
		transform: scale(1.05);
	}
}

/* ===== ABOUT PAGE ENHANCED ANIMATIONS ===== */

/* Animated underline for barber name */
.barber-name-underline {
	transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
	height: 3px;
	background: linear-gradient(90deg, transparent, rgba(255, 136, 0, 0.6), rgba(255, 136, 0, 1), rgba(255, 136, 0, 0.6), transparent);
	border-radius: 2px;
	opacity: 0;
	z-index: 1;
}

/* Enhanced stats cards */
.stats-card {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform, border-color, background-color;
}

.stats-card:hover {
	transform: translateY(-4px) scale(1.02);
}

/* Icon container animations */
.icon-container {
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	will-change: transform;
}

.icon-container:hover {
	transform: scale(1.15) rotate(5deg);
}

/* Enhanced premium card animations */
.premium-card {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform, box-shadow, border-color;
}

.premium-card:hover {
	transform: translateY(-8px) scale(1.01);
}

.premium-card::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 24px;
	padding: 2px;
	background: linear-gradient(135deg, rgba(255, 136, 0, 0.5), rgba(255, 136, 0, 0));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: -1;
}

.premium-card:hover::after {
	opacity: 1;
}

/* Staggered list item animations */
.list-item-animate {
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.list-item-animate.visible {
	opacity: 1;
	transform: translateX(0);
}

/* Particle canvas container */
#about-particles {
	z-index: 0;
}

#about-particles canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Enhanced badge hover effect */
.premium-badge {
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	will-change: transform;
}

.premium-badge:hover {
	transform: scale(1.05) translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 136, 0, 0.2);
}

/* Section title gradient underline */
.section-title-underline {
	background: linear-gradient(90deg, transparent, rgba(255, 136, 0, 0.5), transparent);
	height: 2px;
	border-radius: 1px;
	animation: underlineExpand 1.5s ease-out 0.5s forwards;
	width: 0;
}

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

/* Enhanced card icon animations */
.card-icon {
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	will-change: transform;
}

.premium-card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
}

/* Smooth scroll behavior for sections */
section {
	scroll-margin-top: 100px;
}

/* Enhanced hover effects for list items */
.list-item-group:hover .list-item-icon {
	transform: scale(1.15);
	background-color: rgba(255, 136, 0, 0.2);
	border-color: rgba(255, 136, 0, 0.5);
}

.list-item-group {
	transition: all 0.3s ease;
}

.list-item-group:hover {
	padding-right: 0.5rem;
}

/* Pulse animation for background blobs */
@keyframes blobPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}

.animated-blob {
	animation: blobPulse 4s ease-in-out infinite;
}

/* ===== MODERN COURSES GRID - AIRY DESIGN ===== */
.courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 80px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

/* Course Module - Open Design */
.course-module {
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUpCourse 0.6s ease forwards;
}

.course-module[data-course="1"] {
	animation-delay: 0.1s;
}

.course-module[data-course="2"] {
	animation-delay: 0.2s;
}

.course-module[data-course="3"] {
	animation-delay: 0.3s;
}

.course-module[data-course="4"] {
	animation-delay: 0.4s;
}

.course-module[data-course="5"] {
	animation-delay: 0.5s;
}

@keyframes fadeUpCourse {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.course-module-content {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	padding: 40px 32px;
	box-shadow: inset 0 0 20px rgba(255, 179, 0, 0.05), 0 0 10px rgba(0, 0, 0, 0.6);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.course-module:hover .course-module-content {
	transform: translateY(-10px);
	box-shadow: 0 0 25px rgba(255, 179, 0, 0.15), inset 0 0 20px rgba(255, 179, 0, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
}

/* Icon Wrapper */
.course-icon-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}

.course-icon-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 179, 0, 0.1);
	border: 2px solid rgba(255, 179, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 0.4s ease;
	box-shadow: 0 0 20px rgba(255, 179, 0, 0.1);
}

.course-module:hover .course-icon-circle {
	background: rgba(255, 179, 0, 0.15);
	border-color: rgba(255, 179, 0, 0.5);
	box-shadow: 0 0 30px rgba(255, 179, 0, 0.2);
	transform: scale(1.05);
}

.course-icon {
	width: 40px;
	height: 40px;
	color: #FFB300;
	stroke-width: 2;
}

/* Title */
.course-title {
	font-family: 'Assistant', 'Heebo', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	margin-bottom: 16px;
	line-height: 1.4;
}

/* Subtitle */
.course-subtitle {
	font-family: 'Assistant', 'Heebo', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #cccccc;
	text-align: center;
	margin-bottom: 32px;
	line-height: 1.6;
	min-height: 48px;
}

/* Details Row */
.course-details {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.course-detail-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Assistant', 'Heebo', sans-serif;
	font-size: 14px;
	color: #cccccc;
}

.course-detail-icon {
	width: 18px;
	height: 18px;
	color: #FFB300;
	stroke-width: 2;
}

/* CTA Button */
.course-cta-btn {
	display: block;
	width: 100%;
	padding: 14px 32px;
	background: #FFB300;
	color: #000000;
	font-family: 'Assistant', 'Heebo', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	border-radius: 50px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	cursor: pointer;
}

.course-cta-btn:hover {
	background: transparent;
	border-color: #FFB300;
	color: #FFB300;
	transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.courses-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
}

@media (max-width: 768px) {
	.courses-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 60px;
		padding: 0 16px;
	}
	
	.course-module-content {
		padding: 32px 24px;
	}
	
	.course-title {
		font-size: 20px;
	}
	
	.course-subtitle {
		font-size: 14px;
	}
}

/* ===== LUXURY FOOTER ===== */
.luxury-footer {
	min-height: 400px;
	background: radial-gradient(circle at top left, rgba(255, 136, 0, 0.1), rgba(0, 0, 0, 1) 70%);
	color: #fff;
	position: relative;
	padding: 0;
}

/* Vertical orange line in the middle (widescreen only) */
.luxury-footer::after {
	content: "";
	position: absolute;
	top: 40px;
	left: 50%;
	width: 1px;
	height: calc(100% - 80px);
	background: linear-gradient(to bottom, transparent, #FF8800, transparent);
	opacity: 0.3;
	transform: translateX(-50%);
}

@media (max-width: 1024px) {
	.luxury-footer::after {
		display: none;
	}
}

/* Main Footer Grid */
.footer-main {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 50px;
	padding: 80px 120px;
	position: relative;
}

/* Brand Column */
.footer-brand {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUpFooter 0.8s ease forwards;
}

.footer-brand h2 {
	font-family: 'Assistant', 'Heebo', sans-serif;
	font-size: 26px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 15px;
	border-bottom: 2px solid #FF8800;
	display: inline-block;
	padding-bottom: 5px;
}

.footer-brand p {
	font-family: 'Assistant', 'Heebo', sans-serif;
	color: #bbb;
	line-height: 1.6;
	max-width: 300px;
	font-size: 15px;
}

/* Navigation Column */
.footer-nav {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUpFooter 0.8s ease forwards;
	animation-delay: 0.2s;
	animation-fill-mode: both;
}

.footer-nav h3 {
	font-family: 'Assistant', 'Heebo', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

.footer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav li {
	margin-bottom: 12px;
}

.footer-nav a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
	font-family: 'Assistant', 'Heebo', sans-serif;
	font-size: 15px;
}

.footer-nav a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #FF8800;
	transform: scaleX(0);
	transition: transform 0.3s ease;
	transform-origin: right;
}

.footer-nav a:hover {
	transform: translateY(-2px);
}

.footer-nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* Contact & Social Column */
.footer-contact {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUpFooter 0.8s ease forwards;
	animation-delay: 0.4s;
	animation-fill-mode: both;
}

.footer-contact h3 {
	font-family: 'Assistant', 'Heebo', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

.contact-info {
	margin-bottom: 30px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
	color: #bbb;
	font-family: 'Assistant', 'Heebo', sans-serif;
	font-size: 15px;
}

.contact-icon {
	width: 20px;
	height: 20px;
	color: #FF8800;
	flex-shrink: 0;
}

.social-icons {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 136, 0, 0.1);
	border: 1px solid rgba(255, 136, 0, 0.3);
	color: #FF8800;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-icon svg {
	width: 20px;
	height: 20px;
}

.social-icon:hover {
	background-color: #FF8800;
	color: #000;
	transform: scale(1.1);
	box-shadow: 0 0 15px rgba(255, 136, 0, 0.6);
}

/* Copyright Line */
.footer-bottom {
	text-align: center;
	color: #777;
	font-size: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 25px 0;
	margin-top: 60px;
	font-family: 'Assistant', 'Heebo', sans-serif;
}

.footer-bottom span {
	color: #FF8800;
	font-weight: 600;
}

/* Fade-Up Animation */
@keyframes fadeUpFooter {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.footer-main {
		padding: 60px 60px;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.luxury-footer {
		min-height: auto;
	}
	
	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 60px 40px;
	}
	
	.footer-brand p {
		max-width: 100%;
	}
	
	.footer-bottom {
		padding: 20px 40px;
		margin-top: 40px;
	}
}

@media (max-width: 480px) {
	.footer-main {
		padding: 40px 24px;
		gap: 32px;
	}
	
	.footer-brand h2 {
		font-size: 22px;
	}
	
	.footer-contact h3,
	.footer-nav h3 {
		font-size: 16px;
	}
}

/* Mobile optimizations for about page */
@media (max-width: 768px) {
	.premium-card:hover {
		transform: translateY(-4px) scale(1);
	}
	
	.stats-card:hover {
		transform: translateY(-2px) scale(1);
	}
	
	#about-particles {
		display: none;
	}
	
	.icon-container:hover {
		transform: scale(1.05);
	}
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
	.barber-name-underline,
	.premium-badge,
	.premium-card,
	.stats-card,
	.icon-container,
	.list-item-animate,
	.animated-blob {
		animation: none !important;
		transition: none !important;
	}
	
	#about-particles {
		display: none !important;
	}
	
	.premium-card::after {
		display: none !important;
	}
}

/* ===============================================
   CONTACT PAGE - LUXURIOUS DESIGN
   =============================================== */

/* Contact Section - Two Column Layout */
.contact-section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
	min-height: 90vh;
	padding: 100px 120px;
	background: radial-gradient(circle at top left, rgba(255, 136, 0, 0.05), #000 70%);
	position: relative;
}

/* Left Side - Information and CTA */
.contact-info {
	flex: 1;
	max-width: 500px;
	text-align: right;
}

.contact-info h2 {
	color: #fff;
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 10px;
	font-family: 'Assistant', 'Heebo', sans-serif;
	text-shadow: 0 0 20px rgba(255, 136, 0, 0.2);
	position: relative;
}

.contact-title-line {
	width: 60px;
	height: 2px;
	background: linear-gradient(to right, #FF8800, transparent);
	margin-bottom: 20px;
	margin-right: 0;
	margin-left: auto;
	display: block;
}

.contact-info h3 {
	color: #FF8800;
	font-size: 24px;
	margin-bottom: 25px;
	font-weight: 600;
	font-family: 'Assistant', 'Heebo', sans-serif;
}

.contact-info p {
	color: #bbb;
	max-width: 400px;
	line-height: 1.7;
	font-size: 16px;
	margin-bottom: 20px;
	font-family: 'Assistant', 'Heebo', sans-serif;
}

.contact-cta-btn {
	margin-top: 40px;
	background-color: #FF8800;
	color: #000;
	border: none;
	padding: 15px 40px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Assistant', 'Heebo', sans-serif;
}

.contact-cta-btn:hover {
	background: transparent;
	border: 2px solid #FF8800;
	color: #FF8800;
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}

/* Right Side - Contact Form */
.contact-form-wrapper {
	flex: 1;
	max-width: 500px;
}

.contact-form {
	background: rgba(255, 255, 255, 0.03);
	padding: 50px 60px;
	border-radius: 30px;
	box-shadow: 0 0 20px rgba(255, 136, 0, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-field-wrapper {
	position: relative;
	margin-bottom: 30px;
}

.form-icon {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	color: rgba(255, 255, 255, 0.4);
	pointer-events: none;
	transition: all 0.3s ease;
}

.form-field-wrapper:focus-within .form-icon {
	color: #FF8800;
}

.contact-form input,
.contact-form textarea,
.form-select {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	padding: 12px 5px;
	padding-right: 35px;
	margin-bottom: 0;
	font-size: 16px;
	font-family: 'Assistant', 'Heebo', sans-serif;
	transition: all 0.3s ease;
}

.contact-form textarea {
	padding-right: 35px;
	resize: none;
	min-height: 100px;
}

.form-select {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF8800' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: left 5px center;
	background-size: 12px;
	padding-left: 25px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus,
.form-select:focus {
	outline: none;
	border-bottom: 1px solid #FF8800;
	box-shadow: 0 2px 8px rgba(255, 136, 0, 0.1);
}

.form-select option {
	background: #000;
	color: #fff;
}

.form-submit-btn {
	width: 100%;
	background-color: #FF8800;
	color: #000;
	border: none;
	border-radius: 50px;
	padding: 15px 0;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Assistant', 'Heebo', sans-serif;
	margin-top: 20px;
}

.form-submit-btn:hover {
	background-color: transparent;
	border: 2px solid #FF8800;
	color: #FF8800;
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}

/* Animations */
@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.contact-form input,
.contact-form textarea,
.form-select,
.form-submit-btn {
	opacity: 0;
	animation: fadeUp 0.6s ease forwards;
}

.form-field-wrapper:nth-of-type(1) input,
.form-field-wrapper:nth-of-type(1) .form-select {
	animation-delay: 0.1s;
}

.form-field-wrapper:nth-of-type(2) input,
.form-field-wrapper:nth-of-type(2) .form-select {
	animation-delay: 0.2s;
}

.form-field-wrapper:nth-of-type(3) input,
.form-field-wrapper:nth-of-type(3) .form-select {
	animation-delay: 0.3s;
}

.form-field-wrapper:nth-of-type(4) .form-select {
	animation-delay: 0.4s;
}

.form-field-wrapper:nth-of-type(5) textarea {
	animation-delay: 0.5s;
}

.form-submit-btn {
	animation-delay: 0.6s;
}

/* Fade animations for sections */
[data-aos="fade-right"] {
	opacity: 0;
	transform: translateX(-40px);
	transition: all 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
	opacity: 1;
	transform: translateX(0);
}

[data-aos="fade-left"] {
	opacity: 0;
	transform: translateX(40px);
	transition: all 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
	opacity: 1;
	transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 900px) {
	.contact-section {
		flex-direction: column;
		padding: 60px 40px;
		gap: 60px;
	}
	
	.contact-info {
		max-width: 100%;
		text-align: center;
	}
	
	.contact-info h2 {
		font-size: 36px;
	}
	
	.contact-info h3 {
		font-size: 20px;
	}
	
	.contact-info p {
		max-width: 100%;
	}
	
	.contact-title-line {
		margin-right: auto;
		margin-left: auto;
		background: linear-gradient(to left, #FF8800, transparent);
	}
	
	.contact-form {
		padding: 40px 30px;
	}
	
	.contact-form-wrapper {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.contact-section {
		padding: 40px 20px;
		min-height: auto;
	}
	
	.contact-info h2 {
		font-size: 32px;
	}
	
	.contact-info h3 {
		font-size: 18px;
	}
	
	.contact-form {
		padding: 30px 20px;
		border-radius: 20px;
	}
	
	.contact-cta-btn,
	.form-submit-btn {
		font-size: 16px;
		padding: 12px 30px;
	}
}

@media (max-width: 480px) {
	.contact-info h2 {
		font-size: 28px;
	}
	
	.contact-form {
		padding: 25px 15px;
	}
	
	.contact-form input,
	.contact-form textarea,
	.form-select {
		font-size: 14px;
		padding: 10px 5px;
		padding-right: 30px;
	}
}

/* ===============================================
   FLOATING WHATSAPP BUTTON
   =============================================== */

.whatsapp-float {
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	z-index: 9998;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
	background-color: #20ba5a;
}

.whatsapp-float svg {
	width: 32px;
	height: 32px;
	fill: #fff;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse-whatsapp {
	0% {
		box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	}
	50% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
	}
	100% {
		box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	}
}

/* Orange WhatsApp button variant */
.whatsapp-float.orange {
	background-color: #FF8800;
	box-shadow: 0 4px 12px rgba(255, 136, 0, 0.4);
}

.whatsapp-float.orange:hover {
	background-color: #e67300;
	box-shadow: 0 6px 20px rgba(255, 136, 0, 0.6);
}

@keyframes pulse-whatsapp-orange {
	0% {
		box-shadow: 0 4px 12px rgba(255, 136, 0, 0.4);
	}
	50% {
		box-shadow: 0 4px 20px rgba(255, 136, 0, 0.6), 0 0 0 8px rgba(255, 136, 0, 0.1);
	}
	100% {
		box-shadow: 0 4px 12px rgba(255, 136, 0, 0.4);
	}
}

.whatsapp-float.orange {
	animation: pulse-whatsapp-orange 2s infinite;
}

/* Responsive design for WhatsApp button */
@media (max-width: 768px) {
	.whatsapp-float {
		width: 55px;
		height: 55px;
		bottom: 20px;
		left: 20px;
	}
	
	.whatsapp-float svg {
		width: 28px;
		height: 28px;
	}
}

@media (max-width: 480px) {
	.whatsapp-float {
		width: 50px;
		height: 50px;
		bottom: 15px;
		left: 15px;
	}
	
	.whatsapp-float svg {
		width: 24px;
		height: 24px;
	}
}

/* ===============================================
   STATS CARDS ANIMATION
   =============================================== */

.stat-card {
	opacity: 0;
	transform: translateY(30px) scale(0.9);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card.animated {
	opacity: 1;
	transform: translateY(0) scale(1);
	animation: statCardPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes statCardPop {
	0% {
		opacity: 0;
		transform: translateY(30px) scale(0.9);
	}
	60% {
		transform: translateY(-5px) scale(1.05);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.stat-number {
	transition: all 0.3s ease;
	display: inline-block;
}

.stat-card:hover .stat-number {
	transform: scale(1.15);
	color: #ff9933;
}

/* Staggered animation delays for stat cards */
.stat-card:nth-child(1) {
	animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
	animation-delay: 0.3s;
}

.stat-card:nth-child(3) {
	animation-delay: 0.5s;
}

/* ===============================================
   MOBILE BOTTOM NAVIGATION BAR
   =============================================== */

/* Mobile Bottom Navigation - Hidden on Desktop */
.mobile-bottom-nav {
	display: none;
}

/* Mobile Bottom Navigation Styles */
@media (max-width: 768px) {
	/* Hide top navbar on mobile */
	header[data-nav],
	.modern-nav {
		display: none !important;
	}

	/* Remove top padding since no navbar */
	main {
		padding-top: 0 !important;
	}

	/* Add bottom padding to prevent content overlap */
	body {
		padding-bottom: 80px;
	}

	main {
		padding-bottom: 80px;
	}

	/* Mobile Bottom Navigation Bar */
	.mobile-bottom-nav {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 70px;
		background: rgba(0, 0, 0, 0.85);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 20px 20px 0 0;
		box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
		z-index: 999;
		justify-content: space-around;
		align-items: center;
		padding: 0;
		margin: 0;
	}

	.mobile-bottom-nav-list {
		display: flex;
		width: 100%;
		height: 100%;
		justify-content: space-around;
		align-items: center;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.mobile-bottom-nav-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		color: rgba(255, 255, 255, 0.6);
		transition: all 0.2s ease-in-out;
		flex: 1;
		height: 100%;
		position: relative;
		padding: 8px 4px;
		gap: 4px;
	}

	.mobile-bottom-nav-item:active {
		transform: scale(1.1);
	}

	.mobile-bottom-nav-item.active {
		color: var(--brand-orange);
	}

	.mobile-bottom-nav-item.active::before {
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 40px;
		height: 2px;
		background: var(--brand-orange);
		border-radius: 0 0 2px 2px;
	}

	.mobile-bottom-nav-icon {
		width: 24px;
		height: 24px;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.2s ease-in-out;
	}

	.mobile-bottom-nav-item.active .mobile-bottom-nav-icon {
		transform: scale(1.1);
	}

	.mobile-bottom-nav-item svg {
		width: 24px;
		height: 24px;
		fill: currentColor;
		stroke: currentColor;
		stroke-width: 1.5;
	}

	.mobile-bottom-nav-label {
		font-size: 12px;
		font-weight: 500;
		line-height: 1;
		transition: all 0.2s ease-in-out;
	}

	.mobile-bottom-nav-item.active .mobile-bottom-nav-label {
		font-weight: 700;
		color: var(--brand-orange);
	}

	/* Touch feedback */
	.mobile-bottom-nav-item:active {
		background-color: rgba(255, 136, 0, 0.1);
		border-radius: 12px;
	}

	/* Responsive Mobile Content Adjustments */
	/* Ensure full width on mobile */
	.container,
	.container-fluid {
		width: 100%;
		padding-left: 1rem;
		padding-right: 1rem;
	}

	/* Stack columns on mobile */
	.grid-cols-2,
	.grid-cols-3,
	.lg\:grid-cols-2,
	.lg\:grid-cols-3 {
		grid-template-columns: 1fr !important;
	}

	/* Full width images and cards */
	img,
	video {
		max-width: 100%;
		height: auto;
	}

	/* Buttons - minimum touch target size */
	button,
	.btn-premium,
	.barber-cta-button {
		min-height: 48px;
		padding: 12px 18px;
		font-size: 16px;
	}

	/* Forms - prevent zoom on iOS */
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="number"],
	textarea,
	select {
		font-size: 16px !important;
		min-height: 48px;
		padding: 12px 16px;
	}

	/* Section padding adjustments */
	section {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	/* Hero section adjustments */
	#hero-section,
	.hero-section {
		min-height: 100vh;
		padding-top: 0;
	}

	/* Text adjustments */
	h1 {
		font-size: 2rem !important;
		line-height: 1.2;
	}

	h2 {
		font-size: 1.75rem !important;
		line-height: 1.3;
	}

	h3 {
		font-size: 1.5rem !important;
	}

	/* Prevent horizontal scroll */
	body,
	html {
		overflow-x: hidden;
		max-width: 100vw;
	}

	/* Card spacing */
	.card,
	.premium-card,
	.barber-card {
		margin-bottom: 1.5rem;
		width: 100%;
	}

	/* WhatsApp button positioning on mobile */
	.whatsapp-float {
		bottom: 90px !important;
		left: 20px !important;
		z-index: 998;
	}
}

/* Smaller mobile devices */
@media (max-width: 480px) {
	.mobile-bottom-nav {
		height: 65px;
	}

	.mobile-bottom-nav-icon {
		width: 22px;
		height: 22px;
	}

	.mobile-bottom-nav-item svg {
		width: 22px;
		height: 22px;
	}

	.mobile-bottom-nav-label {
		font-size: 11px;
	}

	body,
	main {
		padding-bottom: 75px;
	}

	.whatsapp-float {
		bottom: 85px !important;
		width: 50px;
		height: 50px;
	}
}

/* ====================================================
   FIX MOBILE VIDEO DARKNESS
   ==================================================== */

@media (max-width: 768px) {
	/* Reduce video overlay darkness on mobile for better visibility */
	.video-overlay::after,
	.luxury-hero-gradient::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.25),
			rgba(0, 0, 0, 0.05)
		);
		pointer-events: none;
		z-index: 2;
	}

	/* Ensure video is clear and visible on mobile */
	video {
		width: 100%;
		height: 100%;
		object-fit: cover;
		opacity: 1;
		filter: brightness(1.1) contrast(1.05);
	}

	/* Reduce dark overlay on video containers */
	.video-overlay,
	.luxury-hero-gradient {
		opacity: 0.6;
	}

	/* Adjust hero section video brightness */
	#hero-section video,
	.hero-section video {
		filter: brightness(1.15) contrast(1.05);
	}
}


