:root {
	--primary: #6d28d9;
	--primary-dark: #5b21b6;
	--primary-light: #a78bfa;
	--black: #0f0f0f;
	--gray-900: #1a1a1a;
	--gray-800: #2d2d2d;
	--gray-700: #404040;
	--gray-600: #525252;
	--gray-400: #a3a3a3;
	--gray-300: #d4d4d4;
	--gray-200: #e5e5e5;
	--gray-100: #f5f5f5;
	--white: #ffffff;
	--font-serif: "Playfair Display", serif;
	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
	font-family: var(--font-sans);
	color: var(--gray-900);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; color: var(--black); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

.badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--primary);
	color: var(--white);
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.btn-primary, .btn-secondary, .btn-outline {
	display: inline-block;
	padding: 0.875rem 2rem;
	border-radius: 0.5rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(109, 40, 217, 0.3); }

.btn-secondary { background: var(--white); color: var(--black); border-color: var(--gray-300); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-primary.large, .btn-secondary.large { padding: 1.125rem 2.5rem; font-size: 1.125rem; }
.btn-primary.full-width { width: 100%; text-align: center; }

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	z-index: 1000;
	padding: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
	background: rgba(15, 15, 15, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.navbar-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 0;
	transition: padding 0.3s ease;
}

.navbar.scrolled .navbar-content {
	padding: 1.125rem 0;
}

.navbar .logo {
	font-family: var(--font-serif);
	font-size: 1.875rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.03em;
	text-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
	transition: all 0.3s ease;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.navbar .logo img {
	height: 50px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 2px 10px rgba(139, 92, 246, 0.3));
	transition: all 0.3s ease;
}

.navbar .logo:hover img {
	filter: drop-shadow(0 4px 20px rgba(139, 92, 246, 0.5));
}

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

.nav-links a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a:not(.btn-primary) {
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links a:not(.btn-primary)::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #8b5cf6, #ec4899);
	border-radius: 2px;
	transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover {
	color: #ffffff;
}

.nav-links a:not(.btn-primary):hover::before {
	width: 100%;
}

.nav-links .btn-primary {
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	color: #ffffff;
	padding: 0.875rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	border: 2px solid rgba(139, 92, 246, 0.5);
	box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-shadow: none;
}

.nav-links .btn-primary::before {
	display: none;
}

.nav-links .btn-primary:hover {
	background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
	box-shadow: 0 6px 30px rgba(139, 92, 246, 0.6);
	transform: translateY(-2px);
	border-color: rgba(139, 92, 246, 0.8);
}

.mobile-menu-btn {
	display: none;
	background: rgba(139, 92, 246, 0.2);
	border: 2px solid rgba(139, 92, 246, 0.3);
	border-radius: 12px;
	color: #ffffff;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.625rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.mobile-menu-btn:hover {
	background: rgba(139, 92, 246, 0.3);
	border-color: rgba(139, 92, 246, 0.5);
	transform: scale(1.05);
}

.mobile-menu-btn:active {
	transform: scale(0.95);
}

/* Index Page Styles - Collection, About, Services, Contact sections only */

/* Collection Section */
.collection {
	padding: 6rem 0;
	background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
	position: relative;
}

/* Inventory Carousel */
.inventory-carousel {
	position: relative;
	margin-bottom: 2rem;
}

.inventory-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
}

.inventory-card {
	transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Carousel Controls */
.carousel-controls {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: calc(100% + 120px);
	left: -60px;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
}

.carousel-btn {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	border: 2px solid rgba(139, 92, 246, 0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	pointer-events: all;
	box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
	color: white;
}

.carousel-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5);
	background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.carousel-btn:active {
	transform: scale(0.95);
}

.carousel-btn svg {
	width: 24px;
	height: 24px;
}

/* Carousel Dots */
.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 3rem;
	margin-bottom: 2rem;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	background: rgba(139, 92, 246, 0.2);
	border: 2px solid rgba(139, 92, 246, 0.3);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.carousel-dot:hover {
	background: rgba(139, 92, 246, 0.4);
	transform: scale(1.2);
}

.carousel-dot.active {
	background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
	border-color: #8b5cf6;
	width: 32px;
	border-radius: 6px;
}

.inventory-filters {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.filter-btn {
	padding: 0.625rem 1.5rem;
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: 50px;
	color: var(--gray-700);
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-sans);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-btn:hover {
	background: var(--gray-100);
	border-color: rgba(139, 92, 246, 0.3);
	color: var(--primary);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.filter-btn.active {
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	border-color: rgba(139, 92, 246, 0.5);
	color: var(--white);
	box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.inventory-cta {
	text-align: center;
	padding: 2.5rem 2rem;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
	border: 2px solid rgba(139, 92, 246, 0.15);
	border-radius: 1.25rem;
	margin-top: 3rem;
}

.inventory-cta p {
	color: var(--gray-700);
	font-size: 1.0625rem;
	margin-bottom: 1.75rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.inventory-cta .btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.inventory-cta .btn-primary svg {
	transition: transform 0.3s ease;
}

.inventory-cta .btn-primary:hover svg {
	transform: translateX(3px);
}

/* About Section */
.about {
	padding: 6rem 0 10rem 0;
	background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f8f9fa 100%);
	position: relative;
	overflow: hidden;
}

.about::before {
	content: '';
	position: absolute;
	top: -130px;
	left: 0;
	width: 100%;
	height: 320px;
	background-image: 
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 320'%3E%3Cdefs%3E%3ClinearGradient id='aboutline1' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%238b5cf6;stop-opacity:0.22'/%3E%3Cstop offset='50%25' style='stop-color:%23ec4899;stop-opacity:0.3'/%3E%3Cstop offset='100%25' style='stop-color:%238b5cf6;stop-opacity:0.22'/%3E%3C/linearGradient%3E%3ClinearGradient id='aboutline2' x1='100%25' y1='0%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23ec4899;stop-opacity:0.18'/%3E%3Cstop offset='50%25' style='stop-color:%238b5cf6;stop-opacity:0.28'/%3E%3Cstop offset='100%25' style='stop-color:%23ec4899;stop-opacity:0.18'/%3E%3C/linearGradient%3E%3ClinearGradient id='aboutline3' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23a78bfa;stop-opacity:0.15'/%3E%3Cstop offset='50%25' style='stop-color:%238b5cf6;stop-opacity:0.22'/%3E%3Cstop offset='100%25' style='stop-color:%23a78bfa;stop-opacity:0.15'/%3E%3C/linearGradient%3E%3Cfilter id='aboutglow'%3E%3CfeGaussianBlur stdDeviation='2.5' result='coloredBlur'/%3E%3CfeMerge%3E%3CfeMergeNode in='coloredBlur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M0,160 Q300,110 600,160 T1200,160' stroke='url(%23aboutline1)' stroke-width='3' fill='none' filter='url(%23aboutglow)'/%3E%3Cpath d='M0,195 Q200,145 400,195 T800,195 Q1000,220 1200,195' stroke='url(%23aboutline2)' stroke-width='2.5' fill='none' filter='url(%23aboutglow)'/%3E%3Cpath d='M0,130 Q350,90 700,130 T1200,130' stroke='url(%23aboutline3)' stroke-width='2' fill='none' opacity='0.8'/%3E%3Cpath d='M0,230 Q250,180 500,230 T1000,230 Q1100,250 1200,230' stroke='url(%23aboutline1)' stroke-width='1.5' fill='none' opacity='0.6'/%3E%3Cpath d='M0,100 Q400,60 800,100 T1200,100' stroke='url(%23aboutline2)' stroke-width='1.5' fill='none' opacity='0.5'/%3E%3C/svg%3E");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: 1;
	animation: line-flow-reverse 35s ease-in-out infinite;
	pointer-events: none;
	filter: blur(0.5px);
}

@keyframes line-flow-reverse {
	0%, 100% { 
		transform: translateX(0) translateY(0);
		opacity: 0.85;
	}
	33% {
		transform: translateX(-35px) translateY(-8px);
		opacity: 1;
	}
	66% {
		transform: translateX(25px) translateY(8px);
		opacity: 0.9;
	}
}

.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 5rem;
	align-items: center;
	position: relative;
	z-index: 1;
	padding-top: 4rem;
}

.about-content .badge {
	background: rgba(139, 92, 246, 0.1);
	border: 1px solid rgba(139, 92, 246, 0.2);
	color: var(--primary);
	margin-bottom: 1.5rem;
}

.lead {
	font-size: 1.25rem;
	color: var(--gray-700);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.about-content p {
	color: var(--gray-600);
	margin-bottom: 2.5rem;
	line-height: 1.8;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2.5rem;
	padding: 2rem;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
	border-radius: 1rem;
	border: 2px solid rgba(139, 92, 246, 0.1);
}

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

.about-stat strong {
	display: block;
	font-family: var(--font-serif);
	font-size: 2.5rem;
	background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
	line-height: 1;
}

.about-stat span {
	display: block;
	font-size: 0.875rem;
	color: var(--gray-600);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.features-list {
	list-style: none;
	display: grid;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.features-list li {
	padding-left: 2.5rem;
	position: relative;
	color: var(--gray-700);
	line-height: 1.7;
}

.features-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #fff;
	font-weight: 700;
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	border: 1px solid rgba(139, 92, 246, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.about-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.about-actions .btn-primary svg {
	transition: transform 0.3s ease;
}

.about-actions .btn-primary:hover svg {
	transform: translateX(3px);
}

.about-image {
	height: 550px;
	background-size: cover;
	background-position: center;
	border-radius: 1.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	border: 1px solid var(--gray-200);
}

.image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Services Section */
.services {
	padding: 6rem 0 10rem 0;
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.services::before {
	content: '';
	position: absolute;
	top: -120px;
	left: 0;
	width: 100%;
	height: 270px;
	background-image: 
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 270'%3E%3Cdefs%3E%3ClinearGradient id='service1' x1='100%25' y1='0%25' x2='0%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%238b5cf6;stop-opacity:0.3'/%3E%3Cstop offset='50%25' style='stop-color:%23a78bfa;stop-opacity:0.35'/%3E%3Cstop offset='100%25' style='stop-color:%238b5cf6;stop-opacity:0.3'/%3E%3C/linearGradient%3E%3ClinearGradient id='service2' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23ec4899;stop-opacity:0.26'/%3E%3Cstop offset='50%25' style='stop-color:%238b5cf6;stop-opacity:0.32'/%3E%3Cstop offset='100%25' style='stop-color:%23ec4899;stop-opacity:0.26'/%3E%3C/linearGradient%3E%3Cfilter id='serviceglow'%3E%3CfeGaussianBlur stdDeviation='3.2' result='coloredBlur'/%3E%3CfeMerge%3E%3CfeMergeNode in='coloredBlur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M1200,135 Q850,85 500,135 T0,135' stroke='url(%23service1)' stroke-width='3.2' fill='none' filter='url(%23serviceglow)'/%3E%3Cpath d='M0,100 Q400,55 800,100 T1200,100' stroke='url(%23service2)' stroke-width='2.6' fill='none' filter='url(%23serviceglow)'/%3E%3C/svg%3E");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: 5;
	animation: service-line-flow 28s ease-in-out infinite;
	pointer-events: none;
	filter: blur(0.4px);
}

@keyframes service-line-flow {
	0%, 100% { 
		transform: translateX(0) translateY(0);
		opacity: 0.9;
	}
	50% {
		transform: translateX(-20px) translateY(3px);
		opacity: 1;
	}
}

.services-carousel-wrapper {
	position: relative;
	padding: 0 4rem;
	overflow: hidden;
}

.carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
	border: 2px solid rgba(139, 92, 246, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(139, 92, 246, 0.1);
}

.carousel-nav:hover {
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	border-color: rgba(139, 92, 246, 0.5);
	box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
	transform: translateY(-50%) scale(1.1);
}

.carousel-nav svg {
	color: #8b5cf6;
	transition: color 0.3s ease;
}

.carousel-nav:hover svg {
	color: var(--white);
}

.carousel-nav.prev { left: 0; }
.carousel-nav.next { right: 0; }

.services-grid {
	display: flex;
	gap: 2rem;
	transition: transform 0.5s ease;
}

.service-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 1.25rem;
	border: 1px solid var(--gray-200);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	flex: 0 0 calc(33.333% - 1.333rem);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(139, 92, 246, 0.3);
	box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon-wrapper {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.75rem;
	transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
	transform: scale(1.05) rotate(3deg);
}

.service-icon {
	width: 48px;
	height: 48px;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.service-card p {
	color: var(--gray-600);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.service-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.service-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--gray-700);
	font-size: 0.875rem;
	font-weight: 500;
}

.service-features li::before {
	content: '→';
	color: #8b5cf6;
	font-weight: 700;
	transition: transform 0.3s ease;
}

.service-card:hover .service-features li::before {
	transform: translateX(3px);
}

.services-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.services-dots .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(139, 92, 246, 0.2);
	border: 1px solid rgba(139, 92, 246, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.services-dots .dot.active {
	background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
	width: 24px;
	border-radius: 5px;
}

/* Contact Section */
.contact {
	padding: 6rem 0;
	background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.contact-top-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.hours-card,
.contact-form-wrapper {
	background: var(--white);
	padding: 3rem;
	border-radius: 1.5rem;
	border: 1px solid rgba(139, 92, 246, 0.1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.hours-card h3 {
	font-size: 1.625rem;
	margin-bottom: 2.25rem;
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

.hours-card h3 svg {
	color: #8b5cf6;
}

.hours-list {
	display: grid;
	gap: 1rem;
}

.hour-item {
	display: flex;
	justify-content: space-between;
	padding: 1.125rem 1.5rem;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 0.75rem;
	border: 1px solid rgba(139, 92, 246, 0.06);
	transition: all 0.3s ease;
}

.hour-item:hover {
	background: var(--white);
	transform: translateX(4px);
}

.hour-item.today {
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
	border-color: rgba(139, 92, 246, 0.3);
}

.hour-day {
	font-weight: 700;
	color: var(--gray-800);
}

.hour-time {
	color: var(--gray-600);
	font-weight: 600;
}

.hour-item.today .hour-day,
.hour-item.today .hour-time {
	color: var(--primary);
}

.form-header h3 {
	font-size: 1.625rem;
	margin-bottom: 0.75rem;
}

.form-subtitle {
	color: var(--gray-600);
	margin-bottom: 2rem;
}

.contact-form {
	display: grid;
	gap: 2rem;
}

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

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

.form-group label {
	font-weight: 700;
	color: var(--gray-800);
}

.form-group label .required {
	color: #ef4444;
	margin-left: 0.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
	padding: 1.125rem 1.5rem;
	border: 2px solid rgba(139, 92, 246, 0.12);
	border-radius: 0.875rem;
	font-family: inherit;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: #8b5cf6;
	box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

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

.form-submit-btn {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.form-submit-btn svg {
	transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
	transform: translateX(4px);
}

.contact-info-card {
	background: var(--white);
	padding: 3rem;
	border-radius: 1.5rem;
	border: 1px solid rgba(139, 92, 246, 0.1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-info-header {
	margin-bottom: 2.5rem;
}

.contact-info-card h3 {
	font-size: 1.625rem;
	margin-bottom: 1rem;
}

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

.method {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1.5rem;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 1rem;
	border: 1px solid rgba(139, 92, 246, 0.08);
	transition: all 0.3s ease;
}

.method:hover {
	border-color: rgba(139, 92, 246, 0.2);
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(139, 92, 246, 0.15);
}

.method-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
	border-radius: 1.125rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.method-icon svg {
	width: 28px;
	height: 28px;
	color: var(--white);
}

.method-content strong {
	display: block;
	margin-bottom: 0.75rem;
	font-weight: 700;
}

.method-content a,
.method-content span {
	color: var(--gray-600);
	text-decoration: none;
}

.method-content a:hover {
	color: var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.service-card {
		flex: 0 0 calc(50% - 1rem);
	}
}

@media (max-width: 1024px) {
	.inventory-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.carousel-controls {
		width: calc(100% + 100px);
		left: -50px;
	}
}

@media (max-width: 768px) {
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.about-stats {
		grid-template-columns: 1fr;
	}
	
	.inventory-carousel {
		padding: 0 40px;
	}
	
	.inventory-grid {
		grid-template-columns: 1fr;
	}
	
	.carousel-controls {
		width: calc(100% + 80px);
		left: -40px;
	}
	
	.carousel-btn {
		width: 44px;
		height: 44px;
	}
}

@media (max-width: 480px) {
	.carousel-controls {
		width: calc(100% + 70px);
		left: -35px;
	}
	
	.carousel-btn {
		width: 40px;
		height: 40px;
	}
	
	.carousel-btn svg {
		width: 18px;
		height: 18px;
	}
	
	.carousel-dot {
		width: 10px;
		height: 10px;
	}
	
	.carousel-dot.active {
		width: 24px;
	}
}
