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

:root {
	/* Color Palette */
	--primary-gold: #ffd700;
	--secondary-gold: #ffb000;
	--accent-gold: #fff700;
	--dark-gold: #cc9900;
	--light-gold: #ffe55c;
	--bronze: #cd7f32;

	--black: #000000;
	--dark-gray: #0a0a0a;
	--medium-gray: #1a1a1a;
	--light-gray: #2a2a2a;
	--text-gray: #e0e0e0;
	--white: #ffffff;

	/* Gradients */
	--gradient-primary: linear-gradient(
		135deg,
		var(--primary-gold),
		var(--dark-gold)
	);
	--gradient-secondary: linear-gradient(
		135deg,
		var(--black),
		var(--medium-gray)
	);
	--gradient-accent: linear-gradient(
		135deg,
		var(--accent-gold),
		var(--primary-gold)
	);
	--gradient-dark: linear-gradient(135deg, var(--dark-gray), var(--black));
	--gradient-luxury: linear-gradient(
		135deg,
		var(--primary-gold),
		var(--bronze),
		var(--dark-gold)
	);

	/* Animations */
	--transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

	/* Shadows */
	--shadow-glow: 0 0 30px rgba(255, 215, 0, 0.4);
	--shadow-gold: 0 20px 40px rgba(255, 215, 0, 0.2);
	--shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.6);
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	background: var(--black);
	color: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
	font-weight: 400;
}

/* Navigation Header */
.main-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 215, 0, 0.1);
	transition: all 0.3s ease;
}

.main-nav.scrolled {
	padding: 0.75rem 0;
	background: rgba(10, 10, 10, 0.98);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: transform 0.3s ease;
}

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

.logo-img {
	height: 40px;
	width: auto;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-logo:hover .logo-img {
	transform: scale(1.1);
	opacity: 0.9;
}

.nav-menu {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.nav-link {
	color: var(--text-gray);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	position: relative;
	padding: 0.5rem 0;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
	transition: width 0.3s ease;
}

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

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

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 5px;
}

.hamburger span {
	width: 25px;
	height: 2px;
	background: var(--primary-gold);
	margin: 3px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

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

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

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

/* Hide on Mobile */
@media (max-width: 768px) {
	.hide-mobile {
		display: none !important;
	}
}

/* Mobile Menu */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 60px;
		flex-direction: column;
		background: rgba(10, 10, 10, 0.98);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 2rem 0;
		gap: 1.5rem;
		border-bottom: 1px solid rgba(255, 215, 0, 0.1);
	}

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

	.hamburger {
		display: flex;
	}

	.nav-link {
		padding: 0.75rem 0;
	}
}

/* Loading Screen */
.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-dark);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	animation: fadeOut 0.5s ease-out 2s forwards;
}

.loading-spinner {
	width: 50px;
	height: 50px;
	border: 3px solid rgba(255, 215, 0, 0.3);
	border-top: 3px solid var(--primary-gold);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes fadeOut {
	to {
		opacity: 0;
		pointer-events: none;
	}
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: var(--gradient-dark);
	overflow: hidden;
	padding-top: 80px;
}

.hero-container {
	text-align: center;
	z-index: 2;
	max-width: 800px;
	padding: 0 2rem;
	animation: slideUp 1s ease-out 0.5s both;
}

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

.hero-badge {
	display: inline-block;
	background: var(--gradient-luxury);
	color: var(--black);
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: var(--shadow-gold);
	animation: pulse 2s ease-in-out infinite;
	position: relative;
	overflow: hidden;
}

.hero-badge::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.4),
		transparent
	);
	animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.hero h1 {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	line-height: 0.9;
	margin-bottom: 1.5rem;
	background: var(--gradient-luxury);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
	animation: textGlow 3s ease-in-out infinite alternate;
	position: relative;
}

.hero h1::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-luxury);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: blur(20px);
	opacity: 0.3;
	z-index: -1;
}

@keyframes textGlow {
	from {
		filter: brightness(1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
	}
	to {
		filter: brightness(1.3) drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
	}
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--text-gray);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.9;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all var(--transition-fast);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-primary {
	background: var(--gradient-primary);
	color: var(--white);
	border: 2px solid transparent;
	box-shadow: var(--shadow-red);
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 30px 60px rgba(255, 215, 0, 0.5);
}

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

.btn-secondary:hover {
	background: var(--primary-gold);
	color: var(--black);
	transform: translateY(-3px);
	box-shadow: var(--shadow-gold);
}

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

.btn-primary:hover::before,
.btn-secondary:hover::before {
	left: 100%;
}

/* About Section */
.about {
	background: var(--gradient-dark);
	padding: 5rem 2rem;
	position: relative;
	overflow: hidden;
}

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

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

.about-image {
	position: relative;
}

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

.about-text {
	padding: 2rem;
}

.about-text .section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 2rem;
	background: var(--gradient-luxury);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-description {
	color: var(--text-gray);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.slide-in-left {
	animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
	animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

@media (max-width: 768px) {
	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-text {
		padding: 1rem;
	}

	.about-image {
		max-width: 400px;
		margin: 0 auto;
	}
}

/* Stats Section */
.stats {
	padding: 5rem 0;
	background: var(--gradient-secondary);
	opacity: 0;
	transform: translateY(50px);
	transition: all var(--transition-smooth);
}

.stats.animate-in {
	opacity: 1;
	transform: translateY(0);
}

.stats-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	padding: 0 2rem;
}

.stat-card {
	text-align: center;
	padding: 3rem 2rem;
	border-radius: 20px;
	transition: all var(--transition-fast);
	position: relative;
}

.stat-card:hover {
	transform: translateY(-10px) rotate(2deg);
	box-shadow: var(--shadow-gold);
}

.stat-number {
	font-size: 4rem;
	font-weight: 900;
	background: var(--gradient-luxury);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
	position: relative;
}

.stat-number::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-luxury);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: blur(10px);
	opacity: 0.3;
	z-index: -1;
}

.stat-label {
	font-size: 1.1rem;
	color: var(--text-gray);
	font-weight: 500;
}

/* Glass Card Effect */
.glass-card {
	background: rgba(255, 215, 0, 0.03);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 215, 0, 0.1);
	box-shadow: var(--shadow-dark);
}

/* Package Cards */
.package-card {
	background: var(--gradient-secondary);
	border-radius: 20px;
	padding: 2.5rem;
	margin: 2rem;
	transition: all var(--transition-fast);
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
}

.package-card:hover {
	transform: translateY(-15px) scale(1.02);
	border-color: var(--primary-gold);
	box-shadow: var(--shadow-gold);
}

.package-card.popular {
	border: 2px solid var(--primary-gold);
	background: var(--gradient-dark);
	transform: scale(1.05);
	box-shadow: var(--shadow-gold);
}

.popular-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gradient-luxury);
	color: var(--black);
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.package-header {
	text-align: center;
	margin-bottom: 2rem;
}

.package-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary-gold);
	margin-bottom: 0.5rem;
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.package-duration {
	color: var(--text-gray);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.package-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.2rem;
	margin-bottom: 0.5rem;
}

.price-currency {
	font-size: 1rem;
	color: var(--text-gray);
}

.price-amount {
	font-size: 3rem;
	font-weight: 900;
	color: var(--white);
}

.price-period {
	font-size: 1rem;
	color: var(--text-gray);
}

.price-savings {
	color: var(--accent-gold);
	font-weight: 600;
	font-size: 0.9rem;
}

.package-description {
	color: var(--text-gray);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.package-features {
	list-style: none;
	margin-bottom: 2rem;
}

.package-features li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 2rem;
	color: var(--text-gray);
}

.package-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-gold);
	font-weight: bold;
	font-size: 1.2rem;
}

.package-btn {
	width: 100%;
	text-align: center;
	padding: 1.2rem 2rem;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all var(--transition-fast);
	display: block;
}

/* Gallery Section */
.gallery {
	padding: 5rem 0;
	background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
	position: relative;
	overflow: hidden;
}

.gallery::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.gallery-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	background: var(--medium-gray);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: all 0.4s ease;
	aspect-ratio: 4/5;
}

.gallery-item:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

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

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

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
	display: flex;
	align-items: flex-end;
	padding: 2rem;
	opacity: 0;
	transition: opacity 0.4s ease;
}

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

.overlay-content {
	text-align: center;
	width: 100%;
	transform: translateY(20px);
	transition: transform 0.4s ease;
}

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

.overlay-icon {
	font-size: 2rem;
	display: block;
	margin-bottom: 0.5rem;
}

.overlay-content p {
	color: var(--white);
	font-size: 1.1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.gallery-cta {
	text-align: center;
	margin-top: 3rem;
}

.btn-instagram {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
	color: var(--black);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
	border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-instagram:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
	background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
}

.btn-instagram span {
	font-size: 1.2rem;
}

/* Mobile Gallery */
@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.gallery-item {
		aspect-ratio: 1/1;
	}

	.gallery-overlay {
		opacity: 1;
		background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.9) 100%);
	}

	.overlay-content {
		transform: translateY(0);
	}

	.gallery-item:hover {
		transform: none;
	}
}

/* Czym się zajmuję */
.services {
	padding: 6rem 0;
	background: var(--dark-gray);
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 2rem;
}

.section-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 1rem;
	background: var(--gradient-luxury);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.section-title::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-luxury);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: blur(15px);
	opacity: 0.2;
	z-index: -1;
}

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

.services-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	padding: 0 2rem;
}

.service-card {
	padding: 2.5rem;
	border-radius: 20px;
	transition: all var(--transition-fast);
	position: relative;
	overflow: hidden;
}

/* .service-card:hover {
	transform: translateY(-10px) rotate(1deg);
	box-shadow: rgb(8, 0, 255);
} */

.service-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	display: block;
	filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.service-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary-gold);
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.service-description {
	color: var(--text-gray);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.service-features {
	list-style: none;
}

.service-features li {
	padding: 0.3rem 0;
	position: relative;
	padding-left: 1.5rem;
	color: var(--text-gray);
	font-size: 0.9rem;
}

.service-features li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--primary-gold);
	font-weight: bold;
}

/* Co mówią klienci */
.testimonials {
	padding: 6rem 0;
	background: var(--gradient-secondary);
}

.testimonials-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	padding: 0 2rem;
}

.testimonial-card {
	padding: 2.5rem;
	border-radius: 20px;
	transition: all var(--transition-fast);
	position: relative;
}

.testimonial-card:hover {
	transform: translateY(-10px) rotate(-1deg);
	box-shadow: var(--shadow-gold);
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	color: var(--text-gray);
	font-style: italic;
}

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

.author-avatar {
	width: 50px;
	height: 50px;
	background: var(--gradient-luxury);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--black);
	font-size: 1.2rem;
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.author-info h4 {
	color: var(--white);
	font-weight: 600;
	margin-bottom: 0.2rem;
}

.author-info p {
	color: var(--text-gray);
	font-size: 0.9rem;
}

/* Moje doświadczenie */
.experience {
	padding: 6rem 0;
	background: var(--dark-gray);
}

.experience-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 0 2rem;
}

.experience-content {
	margin: 3rem 0;
}

.experience-content p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: var(--text-gray);
	margin-bottom: 1.5rem;
}

.highlight {
	color: var(--primary-gold);
	font-weight: 700;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

.animate-in {
	animation: slideInLeft 0.8s ease-out forwards;
}

.animate-in:nth-child(even) {
	animation: slideInRight 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.stats-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

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

	.package-card {
		margin: 1rem;
	}

	.section-header {
		padding: 0 1rem;
	}
}

@media (max-width: 480px) {
	.hero-container {
		padding: 0 1rem;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.service-card,
	.testimonial-card,
	.package-card {
		padding: 1.5rem;
	}
}

/* Scroll animations */
.services,
.testimonials,
.experience {
	opacity: 0;
	transform: translateY(50px);
	transition: all var(--transition-smooth);
}

.services.animate-in,
.testimonials.animate-in,
.experience.animate-in {
	opacity: 1;
	transform: translateY(0);
}

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

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

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

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

.contact {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

/* Mesh Background */
/* .mesh-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 80%,
			rgba(255, 215, 0, 0.12) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 247, 0, 0.08) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 40%,
			rgba(205, 127, 50, 0.06) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 60% 70%,
			rgba(255, 215, 0, 0.04) 0%,
			transparent 50%
		);
	z-index: -1;
	animation: meshMove 25s ease-in-out infinite;
}

@keyframes meshMove {
	0%,
	100% {
		transform: scale(1) rotate(0deg);
	}
	50% {
		transform: scale(1.1) rotate(180deg);
	}
} */

.contact-section {
	background: rgba(255, 215, 0, 0.03);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 215, 0, 0.1);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: var(--shadow-dark);
	max-width: 600px;
	width: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	animation: slideUp 1s ease-out both;
}

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

.contact-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 1rem;
	background: var(--gradient-luxury);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.contact-title::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-luxury);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: blur(15px);
	opacity: 0.2;
	z-index: -1;
}

.contact-subtitle {
	font-size: 1.2rem;
	color: var(--text-gray);
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.9;
}

.contact-options {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-option {
	background: var(--gradient-secondary);
	border: 2px solid transparent;
	border-radius: 20px;
	padding: 2rem;
	text-decoration: none;
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 1.5rem;
	transition: all var(--transition-fast);
	position: relative;
	overflow: hidden;
}

.contact-option::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 215, 0, 0.2),
		transparent
	);
	transition: left 0.6s;
}

.contact-option:hover::before {
	left: 100%;
}

.contact-option:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: var(--primary-gold);
	box-shadow: var(--shadow-gold);
}

.contact-icon {
	width: 60px;
	height: 60px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	flex-shrink: 0;
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.instagram-icon {
	background: var(--gradient-luxury);
	color: var(--black);
}

.email-icon {
	background: var(--gradient-luxury);
	color: var(--black);
}

.phone-icon {
	background: var(--gradient-luxury);
	color: var(--black);
}

.contact-text {
	flex: 1;
	text-align: left;
}

.contact-label {
	font-weight: 700;
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--primary-gold);
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.contact-info {
	color: var(--text-gray);
	font-size: 1rem;
	opacity: 0.9;
}

@media (max-width: 768px) {
	.contact-section {
		padding: 2rem;
		margin: 1rem;
	}

	.contact-option {
		padding: 1.5rem;
		gap: 1rem;
	}

	.contact-icon {
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
	}

	.contact-label {
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.contact-section {
		padding: 1.5rem;
	}

	.contact-option {
		padding: 1.2rem;
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

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

	.contact-icon {
		width: 45px;
		height: 45px;
		font-size: 1.3rem;
	}
}

.pulse-gold {
	animation: pulseGold 2s ease-in-out infinite;
}

@keyframes pulseGold {
	0%,
	100% {
		box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
	}
	50% {
		box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 0 20px rgba(255, 215, 0, 0);
	}
}

/* Shimmer Effect */
/* .contact-option:nth-child(1) .contact-icon::before,
.contact-option:nth-child(2) .contact-icon::before,
.contact-option:nth-child(3) .contact-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.5s);
}

.contact-option:nth-child(1) { --i: 0; }
.contact-option:nth-child(2) { --i: 1; }
.contact-option:nth-child(3) { --i: 2; }

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
} */
