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

html {
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

:root {
	--primary-color: #1a1a2e;
	--secondary-color: #d4af37;
	--accent-color: #c9a961;
	--text-dark: #1a1a2e;
	--text-light: #6b7280;
	--bg-light: #fafafa;
	--bg-white: #ffffff;
	--bg-dark: #0f0f1e;
	--border-color: rgba(212, 175, 55, 0.2);
	--shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
	--shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
	--gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	--gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
	--gradient-overlay: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.9) 100%);
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.7;
	color: var(--text-dark);
	background-color: var(--bg-white);
	overflow-x: hidden;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	width: 100%;
	box-sizing: border-box;
}

/* Premium Header with Glassmorphism */
.header {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(212, 175, 55, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
	padding: 1rem 0;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.logo {
	font-size: 2rem;
	font-weight: 800;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	letter-spacing: -1px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	display: inline-block;
}

.logo::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--gradient-gold);
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover::after {
	width: 100%;
}

.logo:hover {
	transform: translateY(-2px);
	filter: brightness(1.1);
}

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

.nav-link {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	padding: 0.5rem 0;
}

.nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--gradient-gold);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
	color: var(--secondary-color);
	transform: translateY(-2px);
}

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

.burger-menu {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	gap: 6px;
	padding: 8px;
	z-index: 1001;
}

.burger-menu span {
	width: 28px;
	height: 3px;
	background: var(--primary-color);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(9px, 9px);
	background: var(--secondary-color);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
	transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
	background: var(--secondary-color);
}

/* Premium Cookie Notification */
.cookie-notification {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(15, 15, 30, 0.98) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: white;
	padding: 2rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
	border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.cookie-notification.show {
	transform: translateY(0);
}

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

.cookie-content p {
	margin: 0;
	flex: 1;
	min-width: 250px;
	line-height: 1.8;
}

.cookie-content a {
	color: var(--secondary-color);
	text-decoration: none;
	border-bottom: 1px solid var(--secondary-color);
	transition: all 0.3s ease;
}

.cookie-content a:hover {
	color: #f4d03f;
	border-bottom-color: #f4d03f;
}

.cookie-accept {
	background: var(--gradient-gold);
	color: var(--primary-color);
	border: none;
	padding: 1rem 2.5rem;
	cursor: pointer;
	font-weight: 700;
	border-radius: 50px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.cookie-accept:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
	filter: brightness(1.1);
}

/* Premium Hero Section with Parallax */
.hero {
	position: relative;
	height: auto;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	padding-top: 100px;
	padding-bottom: 200px;
	margin-bottom: 0;
	box-sizing: border-box;
}

.hero .container {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	padding-top: 0;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	z-index: 2;
	pointer-events: none;
}

.hero-slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	transform: translateZ(0);
	will-change: opacity;
}

.hero-slide.active {
	opacity: 1;
}

.hero-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

/* Дополнительный оверлей для лучшей читаемости текста */
.hero-content::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	bottom: -20px;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
	border-radius: 20px;
	z-index: -1;
	pointer-events: none;
	width: 100%;
	max-width: 100%;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 2;
	pointer-events: none;
}

.hero-wrapper {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 0 100px;
	animation: heroFadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
	box-sizing: border-box;
}

.hero-content {
	text-align: left;
	color: white;
	position: relative;
	z-index: 3;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hero-title {
	font-size: clamp(3rem, 8vw, 5.5rem);
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
	color: #ffffff;
	letter-spacing: -2px;
	position: relative;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
	width: 100%;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	box-sizing: border-box;
}

.hero-title::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100px;
	height: 4px;
	background: var(--gradient-gold);
	border-radius: 2px;
}

.hero-subtitle {
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	margin-bottom: 3rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 1px 5px rgba(0, 0, 0, 0.5);
	font-weight: 400;
	letter-spacing: 1px;
	opacity: 0.98;
	color: rgba(255, 255, 255, 0.98);
}

/* Hero Sidebar Styles */
.hero-feature-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 15px;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1.2rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.hero-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
	transition: left 0.5s ease;
}

.hero-feature-card:hover::before {
	left: 100%;
}

.hero-feature-card:hover {
	transform: translateX(10px);
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(212, 175, 55, 0.4);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.hero-feature-icon {
	font-size: 2.5rem;
	line-height: 1;
	filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
}

.hero-feature-card:hover .hero-feature-icon {
	transform: scale(1.2) rotate(5deg);
}

.hero-feature-content h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.3rem;
	color: white;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	letter-spacing: 0.5px;
}

.hero-feature-content p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	line-height: 1.4;
}

.hero-stats-card {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(201, 169, 97, 0.1) 100%);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 15px;
	padding: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 1rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.hero-stats-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
	animation: pulse 3s ease-in-out infinite;
}

.hero-stat-item {
	text-align: center;
	position: relative;
	z-index: 1;
	flex: 1;
}

.hero-stat-number {
	font-size: 2rem;
	font-weight: 900;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.3rem;
	line-height: 1;
	text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
	letter-spacing: -1px;
}

.hero-stat-label {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.hero-stat-divider {
	width: 1px;
	height: 40px;
	background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.5), transparent);
	flex-shrink: 0;
}

.hero-indicators {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 4;
}

.indicator {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.5);
	background: transparent;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.indicator::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 100%;
	height: 100%;
	background: var(--gradient-gold);
	border-radius: 50%;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active {
	border-color: var(--secondary-color);
}

.indicator.active::before {
	transform: translate(-50%, -50%) scale(1);
}

.indicator:hover {
	transform: scale(1.3);
	border-color: var(--secondary-color);
}

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

/* Premium Buttons */
.btn {
	display: inline-block;
	padding: 1.2rem 3rem;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary {
	background: var(--gradient-gold);
	color: var(--primary-color);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
	filter: brightness(1.1);
}

.btn span {
	position: relative;
	z-index: 1;
}

/* Premium Section Styles */
.section {
	padding: 8rem 0;
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
}

.section:first-of-type {
	margin-top: 0;
}

.section-header {
	text-align: center;
	margin-bottom: 5rem;
	position: relative;
}

.section-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
	letter-spacing: -2px;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--gradient-gold);
	border-radius: 2px;
}

.section-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	color: var(--text-light);
	max-width: 700px;
	margin: 2rem auto 0;
	line-height: 1.8;
	font-weight: 400;
	letter-spacing: 0.5px;
}

/* Premium About Section */
.about-section {
	background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
	margin-top: 0;
	padding-top: 8rem;
}

.about-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.about-text p {
	margin-bottom: 2rem;
	color: var(--text-light);
	font-size: 1.15rem;
	line-height: 2;
	font-weight: 400;
	letter-spacing: 0.3px;
}

.about-image {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	position: relative;
	transform: perspective(1000px) rotateY(-5deg);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
	transform: perspective(1000px) rotateY(0deg) scale(1.02);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.about-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
	z-index: 1;
	pointer-events: none;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transform: scale(1.1);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Premium Products Accordion */
.products-section {
	background: var(--bg-white);
	position: relative;
}

.products-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
}

.products-accordion {
	max-width: 1000px;
	margin: 0 auto;
}

.accordion-item {
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 15px;
	margin-bottom: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.9) 100%);
	backdrop-filter: blur(10px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.accordion-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--gradient-gold);
	transform: scaleY(0);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active::before {
	transform: scaleY(1);
}

.accordion-item:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
	border-color: rgba(212, 175, 55, 0.4);
}

.accordion-header {
	width: 100%;
	padding: 2rem;
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--primary-color);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.accordion-header:hover {
	color: var(--secondary-color);
}

.accordion-icon {
	font-size: 2rem;
	font-weight: 300;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	color: var(--secondary-color);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.1);
}

.accordion-item.active .accordion-icon {
	transform: rotate(45deg);
	background: var(--gradient-gold);
	color: var(--primary-color);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
	max-height: 800px;
}

.accordion-body {
	padding: 0 2rem 2rem;
	background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 100%);
}

.accordion-body p {
	margin-bottom: 1.5rem;
	color: var(--text-light);
	line-height: 2;
	font-size: 1.05rem;
}

.accordion-body ul {
	list-style: none;
	padding-left: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.accordion-body li {
	padding: 1rem;
	padding-left: 2.5rem;
	position: relative;
	color: var(--text-light);
	background: rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.accordion-body li:hover {
	border-left-color: var(--secondary-color);
	background: rgba(255, 255, 255, 0.8);
	transform: translateX(5px);
}

.accordion-body li::before {
	content: '✓';
	position: absolute;
	left: 0.75rem;
	color: var(--secondary-color);
	font-weight: bold;
	font-size: 1.2rem;
}

/* Premium Services Section */
.services-section {
	background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
	position: relative;
	overflow: hidden;
}

.services-section::before {
	content: '';
	position: absolute;
	top: 20%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
	border-radius: 50%;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.service-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.9) 100%);
	backdrop-filter: blur(10px);
	padding: 3rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

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

.service-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
	border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	display: inline-block;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
	position: relative;
	z-index: 1;
}

.service-card:hover .service-icon {
	transform: scale(1.2) rotate(5deg);
	filter: drop-shadow(0 10px 25px rgba(212, 175, 55, 0.4));
}

.service-card h3 {
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
	font-weight: 800;
	letter-spacing: -0.5px;
	position: relative;
	z-index: 1;
}

.service-card p {
	color: var(--text-light);
	line-height: 1.9;
	font-size: 1.05rem;
	position: relative;
	z-index: 1;
}

/* Premium Why Section */
.why-section {
	background: var(--gradient-primary);
	color: white;
	position: relative;
	overflow: hidden;
}

.why-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.why-section .section-title {
	background: linear-gradient(135deg, #ffffff 0%, #f4d03f 50%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.why-section .section-subtitle {
	color: rgba(255, 255, 255, 0.8);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.why-item {
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	border-left: 4px solid var(--secondary-color);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.why-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
	transition: left 0.5s ease;
}

.why-item:hover::before {
	left: 100%;
}

.why-item:hover {
	transform: translateX(10px) translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
	border-left-width: 6px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.why-item h3 {
	font-size: 1.5rem;
	margin-bottom: 1.2rem;
	color: var(--secondary-color);
	font-weight: 800;
	letter-spacing: -0.5px;
}

.why-item p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.9;
	font-size: 1.05rem;
}

/* Premium Stats Section */
.stats-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, #0f3460 50%, var(--primary-color) 100%);
	color: white;
	position: relative;
	overflow: hidden;
	padding: 6rem 0;
}

.stats-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
	border-radius: 50%;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 4rem;
	text-align: center;
	position: relative;
	z-index: 1;
}

.stat-item {
	padding: 2rem;
	position: relative;
}

.stat-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--gradient-gold);
	border-radius: 2px;
}

.stat-number {
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 900;
	margin-bottom: 1rem;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -2px;
	line-height: 1;
}

.stat-label {
	font-size: 1.2rem;
	opacity: 0.9;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Premium Contact Section */
.contact-section {
	background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
	position: relative;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.contact-item {
	padding: 2rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.9) 100%);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-left: 4px solid transparent;
}

.contact-item:hover {
	transform: translateX(10px);
	border-left-color: var(--secondary-color);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.contact-item h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.contact-item h3::before {
	content: '';
	width: 4px;
	height: 20px;
	background: var(--gradient-gold);
	border-radius: 2px;
}

.contact-item p {
	color: var(--text-light);
	line-height: 1.9;
	font-size: 1.05rem;
}

.contact-item a {
	color: var(--accent-color);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
	position: relative;
}

.contact-item a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-gold);
	transition: width 0.3s ease;
}

.contact-item a:hover {
	color: var(--secondary-color);
}

.contact-item a:hover::after {
	width: 100%;
}

.contact-form-wrapper {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.95) 100%);
	backdrop-filter: blur(20px);
	padding: 3.5rem;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.2);
	position: relative;
	overflow: hidden;
}

.contact-form-wrapper::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.form-group {
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1.2rem 1.5rem;
	border: 2px solid rgba(212, 175, 55, 0.2);
	border-radius: 12px;
	font-family: inherit;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--secondary-color);
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
	transform: translateY(-2px);
}

.form-group textarea {
	resize: vertical;
	min-height: 140px;
	font-family: inherit;
}

/* Premium Footer */
.footer {
	background: var(--gradient-primary);
	color: white;
	padding: 5rem 0 2rem;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.5) 50%, transparent 100%);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 4rem;
	margin-bottom: 4rem;
	position: relative;
	z-index: 1;
}

.footer-section h3 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: var(--secondary-color);
	font-weight: 800;
	letter-spacing: -0.5px;
	position: relative;
	padding-bottom: 1rem;
}

.footer-section h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: var(--gradient-gold);
	border-radius: 2px;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.9;
	margin-bottom: 1.2rem;
	font-size: 1.05rem;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.footer-section a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gradient-gold);
	transition: width 0.3s ease;
}

.footer-section a:hover {
	color: var(--secondary-color);
}

.footer-section a:hover::after {
	width: 100%;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 1rem;
	transition: transform 0.3s ease;
}

.footer-links li:hover {
	transform: translateX(5px);
}

.footer-bottom {
	text-align: center;
	padding-top: 3rem;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.95rem;
	position: relative;
	z-index: 1;
}

/* Policy Pages Premium Styles */
.policy-page {
	padding: 4rem 0 6rem;
	background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
	min-height: 80vh;
}

.policy-content {
	max-width: 1000px;
	margin: 0 auto;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.95) 100%);
	backdrop-filter: blur(20px);
	padding: 4rem;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.1);
}

.policy-content h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	margin-bottom: 2rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
	letter-spacing: -2px;
	position: relative;
	padding-bottom: 1.5rem;
}

.policy-content h1::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 4px;
	background: var(--gradient-gold);
	border-radius: 2px;
}

.policy-content h2 {
	font-size: clamp(1.8rem, 3vw, 2.3rem);
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
	font-weight: 800;
	letter-spacing: -1px;
}

.policy-content h3 {
	font-size: 1.5rem;
	margin-top: 2.5rem;
	margin-bottom: 1.2rem;
	color: var(--primary-color);
	font-weight: 700;
}

.policy-content h4 {
	font-size: 1.3rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-weight: 700;
}

.policy-content p {
	margin-bottom: 1.5rem;
	color: var(--text-light);
	line-height: 2;
	font-size: 1.05rem;
}

.policy-content ul {
	margin-bottom: 2rem;
	padding-left: 0;
}

.policy-content li {
	margin-bottom: 1rem;
	color: var(--text-light);
	line-height: 1.9;
	padding-left: 2rem;
	position: relative;
	font-size: 1.05rem;
}

.policy-content li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--secondary-color);
	font-weight: bold;
}

.policy-content a {
	color: var(--accent-color);
	text-decoration: none;
	border-bottom: 1px solid rgba(201, 169, 97, 0.3);
	transition: all 0.3s ease;
}

.policy-content a:hover {
	color: var(--secondary-color);
	border-bottom-color: var(--secondary-color);
}

/* Thanks Page Premium Styles */
.thanks-page {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem 0;
	background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.thanks-page::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.thanks-content {
	text-align: center;
	max-width: 700px;
	padding: 4rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.95) 100%);
	backdrop-filter: blur(20px);
	border-radius: 25px;
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(212, 175, 55, 0.2);
	position: relative;
	z-index: 1;
}

.thanks-content h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	margin-bottom: 2rem;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
	letter-spacing: -2px;
}

.thanks-content p {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 2rem;
	line-height: 1.9;
}

.thanks-content a {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border-bottom: 2px solid rgba(201, 169, 97, 0.3);
}

.thanks-content a:hover {
	color: var(--secondary-color);
	border-bottom-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.container {
		padding: 0 30px;
	}

	.about-content,
	.contact-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.services-grid,
	.why-grid {
		grid-template-columns: repeat(2, 1fr);
		min-width: 0;
	}

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

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

	.accordion-body ul {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 20px;
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
	}

	.nav {
		position: fixed;
		top: 80px;
		right: -100%;
		flex-direction: column;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(20px);
		width: 280px;
		max-width: 80vw;
		padding: 2.5rem;
		box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
		transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		gap: 1.5rem;
		border-left: 1px solid rgba(212, 175, 55, 0.2);
		box-sizing: border-box;
	}

	.nav.active {
		right: 0;
	}

	.burger-menu {
		display: flex;
	}

	.hero {
		height: auto;
		min-height: 80vh;
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
		padding-top: 90px;
		padding-bottom: 150px;
		align-items: flex-start;
	}

	.hero .container {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
		align-items: flex-start;
	}

	.hero-slide {
		background-position: center center;
		background-size: cover;
		width: 100%;
		max-width: 100%;
	}

	.hero-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding: 10px 0 80px;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.hero-indicators {
		bottom: 20px;
	}

	.hero-content {
		text-align: center;
		width: 100%;
		max-width: 100%;
		padding: 0;
		box-sizing: border-box;
	}

	.hero-content::before {
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
	}

	.hero-title {
		font-size: clamp(2rem, 6vw, 3rem);
		padding: 0 10px;
		box-sizing: border-box;
		word-break: break-word;
		overflow-wrap: break-word;
	}

	.hero-title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.hero-sidebar {
		max-width: 100%;
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
	}

	.section {
		padding: 5rem 0;
	}

	.section:first-of-type {
		margin-top: 0;
	}

	.about-section {
		margin-top: 0;
	}

	.section-title {
		font-size: 2.5rem;
	}

	.services-grid,
	.why-grid {
		grid-template-columns: 1fr;
		min-width: 0;
	}

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

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

	.about-content,
	.contact-content {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

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

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.policy-content {
		padding: 2.5rem 2rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 600px) {
	.container {
		padding: 0 15px;
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
	}

	.hero {
		height: auto;
		min-height: 70vh;
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
		padding-top: 80px;
		padding-bottom: 120px;
		align-items: flex-start;
	}

	.hero .container {
		padding: 0 15px;
		align-items: flex-start;
	}

	.hero-wrapper {
		padding: 10px 0 70px;
		gap: 2rem;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.hero-indicators {
		bottom: 20px;
	}

	.hero-content {
		padding: 0;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.hero-title {
		font-size: clamp(1.8rem, 5vw, 2.5rem);
		padding: 0 5px;
		letter-spacing: -1px;
		margin-bottom: 1rem;
	}

	.hero-subtitle {
		font-size: clamp(0.9rem, 2vw, 1.1rem);
		padding: 0 5px;
		margin-bottom: 2rem;
	}

	.hero-feature-card {
		padding: 1.2rem;
	}

	.hero-feature-icon {
		font-size: 2rem;
	}

	.hero-feature-content h3 {
		font-size: 1rem;
	}

	.hero-feature-content p {
		font-size: 0.85rem;
	}

	.hero-stats-card {
		padding: 1.5rem;
		flex-wrap: wrap;
	}

	.hero-stat-number {
		font-size: 1.5rem;
	}

	.hero-stat-label {
		font-size: 0.7rem;
	}

	.hero-stat-divider {
		display: none;
	}

	.section {
		padding: 4rem 0;
	}

	.section:first-of-type {
		margin-top: 0;
	}

	.about-section {
		margin-top: 0;
	}

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

	.service-card,
	.contact-form-wrapper {
		padding: 2rem;
	}

	.policy-content {
		padding: 2rem 1.5rem;
	}
}

/* Additional Premium Animations */
@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

/* Scroll Animations */
.fade-in-up {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}
