/*

TemplateMo 599 Noir Fashion - Black & Red Theme

https://templatemo.com/tm-599-noir-fashion

*/

@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #0a0a0a;
	--accent: #dc0000;
	--accent-hover: #ff0000;
	--accent-dark: #a00000;
	--text-light: #ffffff;
	--text-muted: #999;
	--bg-dark: #000;
	--bg-section: #0a0a0a;
	--red-glow: rgba(220, 0, 0, 0.3);
}

html {
	scroll-behavior: smooth;
}

section {
	scroll-margin-top: 70px;
}

body {
	font-family: 'Arial', sans-serif;
	background: var(--bg-dark);
	color: var(--text-light);
	overflow-x: hidden;
}

/* Navigation */
nav {
	position: fixed;
	width: 100%;
	padding: 20px 50px;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	animation: slideDown 0.8s ease;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(220, 0, 0, 0.1);
}

nav.scrolled {
	padding: 15px 50px;
	background: rgba(0, 0, 0, 0.98);
	box-shadow: 0 5px 20px rgba(220, 0, 0, 0.3);
	border-bottom: 1px solid rgba(220, 0, 0, 0.3);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	flex-wrap: wrap;
	gap: 20px;
}

.logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.logo-link:hover {
	transform: scale(1.05);
}

.logo-svg {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.logo-text {
	font-size: 28px;
	font-weight: 900;
	letter-spacing: -2px;
	background: linear-gradient(135deg, #fff, var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nav-links {
	display: flex;
	gap: 10px;
	list-style: none;
	align-items: center;
}

.nav-links a {
	color: var(--text-light);
	text-decoration: none;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
	transition: all 0.3s ease;
	padding: 5px 10px;
	opacity: 0.7;
}

.nav-links a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent);
	opacity: 0;
	transform: skewX(-10deg);
	transition: all 0.3s ease;
	z-index: -1;
}

.nav-links a:hover {
	color: white;
	opacity: 1;
	text-shadow: 0 0 10px var(--red-glow);
}

.nav-links a:hover::before {
	opacity: 1;
}

.nav-links a.active {
	color: white;
	opacity: 1;
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 2px;
	background: var(--accent);
	box-shadow: 0 0 10px var(--accent);
}

.nav-cta {
	background: var(--accent);
	color: white !important;
	padding: 10px 25px !important;
	border-radius: 25px;
	font-weight: 600;
	opacity: 1 !important;
	box-shadow: 0 0 20px rgba(220, 0, 0, 0.4);
}

.nav-cta:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px var(--red-glow), 0 0 30px rgba(220, 0, 0, 0.5);
}

.nav-cta::before {
	display: none;
}

/* Tablet screens */
@media (max-width: 900px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 120px;
	}

	.hero-left {
		padding-right: 0;
		max-width: 600px;
		margin: 0 auto;
	}

	.hero-stats {
		justify-content: center;
	}

	.hero-right {
		display: none;
	}

	.grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}

	.featured-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.featured-hero {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.featured-hero {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.featured-content {
		padding: 30px;
	}

	.featured-content h2 {
		font-size: 32px;
	}

	.feature-highlights {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.featured-image-section {
		height: 400px;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.testimonial-card {
		padding: 25px;
	}
}

/* Medium screens - stack navigation */
@media (max-width: 1070px) and (min-width: 769px) {
	nav {
		padding: 15px 30px;
	}

	.nav-container {
		flex-direction: column;
		gap: 15px;
	}

	.nav-links {
		width: 100%;
		justify-content: center;
	}

	.nav-links a {
		font-size: 12px;
	}

	nav.scrolled {
		padding: 10px 30px;
	}

	.hero-container {
		padding: 0 30px;
	}

	.hero-title {
		font-size: 60px;
	}

	.hero-image-wrapper {
		max-width: 400px;
	}

	.tag {
		display: none;
	}

	.featured-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.collections,
	.featured,
	.contact {
		padding-top: 120px;
	}

	section {
		scroll-margin-top: 100px;
	}
}

/* Mobile Menu */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1001;
}

.menu-toggle span {
	width: 25px;
	height: 2px;
	background: var(--text-light);
	margin: 3px 0;
	transition: 0.3s;
	box-shadow: 0 0 5px var(--accent);
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.98);
	backdrop-filter: blur(20px);
	transition: right 0.3s ease;
	z-index: 999;
	border-left: 2px solid var(--accent);
}

.mobile-nav.active {
	right: 0;
}

.mobile-nav-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 30px;
	list-style: none;
}

.mobile-nav-links a {
	color: var(--text-light);
	text-decoration: none;
	font-size: 24px;
	letter-spacing: 3px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
	color: var(--accent);
	transform: translateX(10px);
	text-shadow: 0 0 20px var(--red-glow);
}

/* Hero Section */
.hero {
	height: 100vh;
	position: relative;
	overflow: hidden;
	background: #000;
}

.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.hero-bg::before {
	content: '';
	position: absolute;
	width: 150%;
	height: 150%;
	top: -25%;
	left: -25%;
	background: conic-gradient(from 180deg at 50% 50%, #dc0000 0deg, #000 60deg, #dc0000 120deg, #000 180deg, #dc0000 240deg, #000 300deg, #dc0000 360deg);
	animation: spin 20s linear infinite;
	opacity: 0.2;
}

.hero-bg::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.hero-container {
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
	position: relative;
	z-index: 2;
	align-items: center;
}

.hero-left {
	padding-right: 60px;
}

.hero-badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(220, 0, 0, 0.15);
	border: 1px solid var(--accent);
	color: var(--accent);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 30px;
	animation: slideInLeft 1s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(220, 0, 0, 0.3);
}

.hero-badge::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(220, 0, 0, 0.6), transparent);
	left: -30px;
	animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
	0% {
		left: -30px;
	}
	100% {
		left: calc(100% + 30px);
	}
}

.hero-title {
	font-size: clamp(50px, 7vw, 60px);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 25px;
	position: relative;
}

.hero-title .line {
	display: block;
	overflow: hidden;
}

.hero-title .line span {
	display: inline-block;
	animation: slideUp 1s ease backwards;
}

.hero-title .line:nth-child(1) span {
	animation-delay: 0.2s;
}

.hero-title .line:nth-child(2) span {
	animation-delay: 0.3s;
}

.hero-title .line:nth-child(3) span {
	animation-delay: 0.4s;
}

.hero-title .accent {
	background: linear-gradient(90deg, #dc0000, #ff0000);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-style: italic;
	text-shadow: 0 0 30px var(--red-glow);
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		transform: translateX(-50px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.hero-description {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-muted);
	margin-bottom: 40px;
	animation: fadeIn 1s ease 0.6s backwards;
}

.hero-stats {
	display: flex;
	gap: 50px;
	margin-bottom: 50px;
	animation: fadeIn 1s ease 0.8s backwards;
}

.stat {
	position: relative;
}

.stat-number {
	font-size: 36px;
	font-weight: 900;
	color: var(--accent);
	display: block;
	margin-bottom: 5px;
	text-shadow: 0 0 20px var(--red-glow);
}

.stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-muted);
}

.cta-group {
	display: flex;
	gap: 20px;
	animation: fadeIn 1s ease 1s backwards;
}

.cta-button.whatsapp {
	box-shadow: 0 0 30px rgba(220, 0, 0, 0.5);
	color: white;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: rgba(0, 220, 40, 0.5);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.cta-button.whatsapp:hover {
	background: #20BA5A;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.cta-button.whatsapp svg {
	width: 20px;
	height: 20px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cta-button {
	padding: 12px 24px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	font-size: 13px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
	display: inline-block;
}

.cta-button.primary {
	background: var(--accent);
	color: white;
	box-shadow: 0 0 30px rgba(220, 0, 0, 0.5);
}

.cta-button.primary::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, height 0.6s;
}

.cta-button.primary:hover::before {
	width: 300px;
	height: 300px;
}

.cta-button.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px var(--red-glow), 0 0 50px rgba(220, 0, 0, 0.6);
}

.cta-button.outline {
	background: transparent;
	color: white;
	border: 1px solid rgba(220, 0, 0, 0.5);
	backdrop-filter: blur(10px);
}

.cta-button.outline:hover {
	background: rgba(220, 0, 0, 0.1);
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 0 20px rgba(220, 0, 0, 0.3);
}

.hero-right {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.hero-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 600px;
	z-index: 2;
}

.hero-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(220, 0, 0, 0.3);
	border: 1px solid rgba(220, 0, 0, 0.2);
	z-index: 2;
}

.carousel-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
	transform: scale(1.1);
}

.carousel-slide.active {
	opacity: 1;
	transform: scale(1);
	animation: kenburns 12s ease-out;
}

@keyframes kenburns {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.05);
	}
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.indicator {
	width: 40px;
	height: 3px;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 3px;
}

.indicator.active {
	background: var(--accent);
	width: 60px;
	box-shadow: 0 0 15px var(--accent);
}

.carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(220, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
	pointer-events: none;
}

.floating-tags {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.tag {
	position: absolute;
	padding: 8px 16px;
	background: rgba(0, 0, 0, 0.9);
	border: 1px solid var(--accent);
	backdrop-filter: blur(10px);
	color: white;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	animation: fadeInScale 1s ease backwards;
	box-shadow: 0 0 20px rgba(220, 0, 0, 0.5);
}

.tag:nth-child(1) {
	top: 20%;
	left: -50px;
	animation-delay: 1.2s;
}

.tag:nth-child(2) {
	top: 40%;
	right: -60px;
	animation-delay: 1.4s;
}

.tag:nth-child(3) {
	bottom: 30%;
	left: -40px;
	animation-delay: 1.6s;
}

@keyframes fadeInScale {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s ease infinite;
	z-index: 100;
	pointer-events: none;
}

.scroll-indicator span {
	display: block;
	width: 30px;
	height: 50px;
	border: 2px solid rgba(220, 0, 0, 0.5);
	border-radius: 25px;
	position: relative;
}

.scroll-indicator span::after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 10px;
	animation: scrollDot 2s ease infinite;
	box-shadow: 0 0 10px var(--accent);
}

@keyframes bounce {
	0%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

@keyframes scrollDot {
	0% {
		top: 10px;
		opacity: 1;
	}
	50% {
		top: 30px;
		opacity: 0.5;
	}
	100% {
		top: 10px;
		opacity: 1;
	}
}




 @media (max-width: 1440px){
	.hero-title {
		font-size: clamp(30px, 5vw, 40px);
	}
 }


/* Hero Section Responsive - Medium screens (1024px and below) */
@media (max-width: 1024px) {
	
	/* Hero Section Fixes */
	.hero {
		height: auto;
		min-height: 100vh;
	}

	.hero-container {
		grid-template-columns: 1fr;
		padding: 100px 20px 60px;
		text-align: center;
		gap: 50px;
	}

	.hero-left {
		padding-right: 0;
		padding-top: 0;
		max-width: 600px;
		margin: 0 auto;
	}

	.hero-title {
		font-size: clamp(42px, 6vw, 50px);
	}

	.hero-stats {
		justify-content: center;
		gap: 30px;
		flex-direction: column;
	}

	.stat-number {
		font-size: 28px;
	}

	/* Show carousel below content - CENTERED */
	.hero-right {
		display: flex !important;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: auto;
		margin: 0 auto;
	}

	.hero-image-wrapper {
		max-width: 500px;
		width: 100%;
		height: 500px;
		margin: 0 auto;
	}

	.hero-carousel {
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 8px;
	}

	/* Hide floating tags */
	.tag {
		display: none;
	}

	/* CTA Buttons */
	.cta-group {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 15px;
	}

	.cta-button {
		width: 250px;
		text-align: center;
		padding: 14px 25px;
	}

	/* Other sections */
	.collections,
	.featured,
	.contact {
		padding: 80px 20px 50px;
	}

	section {
		scroll-margin-top: 60px;
	}

	.grid {
		display: flex;
		flex-wrap: wrap;
		gap: 25px;
		max-width: 1024px;
		margin: 0 auto;
		padding: 0 20px;
		justify-content: center;
	}

	.collection-thumbnail {
		height: 250px;
	}

	.card-content {
		padding: 20px;
	}

	.featured-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.featured-content {
		padding: 25px;
	}

	.featured-content h2 {
		font-size: 32px;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-form-wrapper {
		padding: 30px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-info {
		padding: 30px 20px;
	}

	.map-section {
		height: 300px;
		margin-top: 40px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	
	.scroll-indicator {
		display: none;
	}


}



/*showcase*/
.showcase {
	padding: 150px 0;
	position: relative;
	justify-content: center;
}

.hexagon-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.hexagon {
	width: 220px;
	height: 290px;
	position: relative;
	margin: 20px;
	transition: all 0.4s ease;
}

.hexagon:hover {
	transform: scale(1.1);
}

.hexagon-inner {
	width: 100%;
	height: 100%;
	position: relative;
	transform: rotate(30deg);
	border-radius: 25px;
	padding: 50px 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	transition: all 0.4s ease;
}

.hexagon:hover .hexagon-inner {
	transform: rotate(0deg);
	border-radius: 15px;
}

.hexagon:nth-child(odd) .hexagon-inner {
	background: linear-gradient(135deg, rgba(0, 255, 255, 0.12), rgba(255, 0, 128, 0.12));
	border: 1px solid rgba(0, 255, 255, 0.3);
}

.hexagon:nth-child(even) .hexagon-inner {
	background: linear-gradient(135deg, rgba(255, 0, 128, 0.12), rgba(128, 0, 255, 0.12));
	border: 1px solid rgba(255, 0, 128, 0.3);
}

.hexagon-icon {
	font-size: 2.8rem;
	margin-bottom: 20px;
	transform: rotate(-30deg);
	filter: drop-shadow(0 0 10px currentColor);
	transition: all 0.4s ease;
}

.hexagon:hover .hexagon-icon {
	transform: rotate(0deg);
}

.hexagon h4 {
	font-size: 1.3rem;
	color: #ffffff;
	transform: rotate(-30deg);
	margin-bottom: 15px;
	font-weight: bold;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
	transition: all 0.4s ease;
}

.hexagon:hover h4 {
	transform: rotate(0deg);
}

.hexagon p {
	font-size: 0.95rem;
	color: #e0e0e0;
	transform: rotate(-30deg);
	line-height: 1.5;
	max-width: 140px;
	word-wrap: break-word;
	hyphens: auto;
	transition: all 0.4s ease;
}

.hexagon:hover p {
	transform: rotate(0deg);
}


@media (max-width: 1023px) {
	.showcase{
		display: none;
	}
}


/* Section 2: Diagonal Features */
 .features {
     padding: 150px 0;
     position: relative;
     overflow: hidden;
}
 .features::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.1), transparent);
     animation: rotate 20s linear infinite;
     z-index: -1;
}
 @keyframes rotate {
     from {
         transform: rotate(0deg);
    }
     to {
         transform: rotate(360deg);
    }
}
 .section-title {
     text-align: center;
     font-size: clamp(2.5rem, 6vw, 4rem);
     margin-bottom: 80px;
     color: #dbe0e0;
     position: relative;
}
 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 3px;
     background: linear-gradient(90deg, #00ffff, #ff0080);
     border-radius: 2px;
}
 .features-container {
     max-width: 1240px;
     margin: 0 auto;
     padding: 0 20px;
}
 .diagonal-grid {
     display: flex;
     flex-direction: column;
     gap: 60px;
}
 .feature-row {
     display: flex;
     align-items: center;
     gap: 80px;
     position: relative;
}
 .feature-row:nth-child(even) {
     flex-direction: row-reverse;
}
 .feature-content {
     flex: 1;
     padding: 50px;
     transform: skew(-5deg);
     transition: all 0.4s ease;
}
 .feature-content:hover {
     transform: skew(-5deg) translateY(-10px);
     box-shadow: 0 30px 60px rgba(0, 255, 255, 0.2);
}
 .feature-visual {
    position: relative;
	flex: 1;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
     background-repeat: no-repeat;
     transition: all 0.4s ease;
}

.feature-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 👈 keeps image proportion, fills container */
	object-position: center; /* 👈 centers image focus */
	transition: transform 0.4s ease;
}

 .feature-visual:hover {
     transform: scale(1.05);
     box-shadow: 0 20px 40px rgba(224, 163, 255, 0.3);
}

.feature-visual:hover img {
	transform: scale(1.05);
}
 .feature-visual::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(224, 163, 255, 0.1), rgba(255, 105, 180, 0.1));
     z-index: 1;
     backdrop-filter: blur(1px);
     transition: all 0.4s ease;
}
 .feature-visual:hover::before {
     background: linear-gradient(45deg, rgba(224, 163, 255, 0.2), rgba(255, 105, 180, 0.2));
}
 .feature-row:nth-child(1) .feature-visual {
     background-image: url('images/templatemo-neural-01.jpg');
}
 .feature-row:nth-child(2) .feature-visual {
     background-image: url('images/templatemo-neural-02.jpg');
}
 .feature-row:nth-child(3) .feature-visual {
     background-image: url('images/templatemo-neural-03.jpg');
}
 .feature-icon {
     font-size: 4rem;
     margin-bottom: 25px;
     background: linear-gradient(45deg, #ff0080, #8000ff);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
}
 .feature-content h3 {
     font-size: 2.2rem;
     margin-bottom: 20px;
     color: #ffffff;
}
 .feature-content p {
     font-size: 1.1rem;
     color: #cccccc;
     line-height: 1.8;
}

/* ---------- TABLET (≤1024px) ---------- */
@media (max-width: 1024px) {
	.features {
		padding: 100px 0;
	}

	.section-title {
		margin-bottom: 60px;
		font-size: clamp(2rem, 5vw, 3rem);
	}

	.feature-row {
		gap: 50px;
	}

	.feature-content {
		padding: 40px;
	}

	.feature-content h3 {
		font-size: 1.8rem;
	}

	.feature-content p {
		font-size: 1rem;
	}

	.feature-visual {
		height: 280px;
	}
}


/* ---------- SMALL TABLET & LARGE PHONE (≤768px) ---------- */
@media (max-width: 768px) {
	.feature-row {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.feature-row:nth-child(even) {
		flex-direction: column; /* override reverse */
	}

	.feature-content {
		transform: none;
		padding: 30px 20px;
	}

	.feature-content:hover {
		transform: none;
		box-shadow: none;
	}

	.feature-content h3 {
		font-size: 1.6rem;
	}

	.feature-visual {
		width: 100%;
		height: 250px;
		border-radius: 15px;
	}

	.feature-icon {
		font-size: 3rem;
		margin-bottom: 15px;
	}
}


/* ---------- MOBILE PHONES (≤480px) ---------- */
@media (max-width: 480px) {
	.features {
		padding: 80px 0;
	}

	.section-title {
		font-size: 1.8rem;
		margin-bottom: 40px;
	}

	.feature-row {
		gap: 30px;
	}

	.feature-content {
		padding: 20px;
	}

	.feature-content h3 {
		font-size: 1.4rem;
	}

	.feature-content p {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.feature-icon {
		font-size: 2.5rem;
		margin-bottom: 10px;
	}

	.feature-visual {
		height: 200px;
		border-radius: 10px;
	}
}


/* Collections Grid */
.collections {
	padding: 120px 50px 100px;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 48px;
	letter-spacing: -2px;
	margin-bottom: 20px;
	text-align: center;
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* Category Tabs */
.category-tabs {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 12px 30px;
	background: transparent;
	border: 1px solid var(--text-muted);
	color: var(--text-muted);
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.3s ease;
	font-size: 12px;
}

.tab-btn.active,
.tab-btn:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 0 20px var(--red-glow);
}

.grid {
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 25px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Tablet: 2 equal columns */
@media (min-width: 768px) and (max-width: 1023px) {
	.grid {
		grid-template-columns: repeat(auto-fill, minmax(300px,350px ));
		max-width: 750px;
		gap: 30px;
	}

	
}

/* Improved responsive layout for larger screens */
@media (min-width: 1024px) {
	.grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 900px;
		gap: 40px;
	}
	
	.collection-card {
		min-height: 500px;
	}
	
	.collection-thumbnail {
		height: 350px;
	}
}

/* Optional: even larger screens */
@media (min-width: 1400px) {
	.grid {
		max-width: 1000px;
		gap: 50px;
	}
	
	.collection-card {
		min-height: 524px;
	}
	
	.collection-thumbnail {
		height: 350px;
	}
}

.collection-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s ease;
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
	border-radius: 8px;
	border: 1px solid rgba(220, 0, 0, 0.1);
}

.card-content {
	text-align: center;
	width: 100%;
}

.collection-card:nth-child(1) {
	animation-delay: 0.1s;
}

.collection-card:nth-child(2) {
	animation-delay: 0.2s;
}

.collection-card:nth-child(3) {
	animation-delay: 0.3s;
}

.collection-card:nth-child(4) {
	animation-delay: 0.4s;
}

.collection-card:nth-child(5) {
	animation-delay: 0.5s;
}

.collection-card:nth-child(6) {
	animation-delay: 0.6s;
}

.collection-card:nth-child(7) {
	animation-delay: 0.7s;
}

.collection-card:nth-child(8) {
	animation-delay: 0.8s;
}

.collection-thumbnail {
	width: 100%;
	height: 300px;
	background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 50px;
	opacity: 0.3;
	transition: transform 0.5s ease, opacity 0.5s ease;
	position: relative;
	overflow: hidden;
}

.collection-thumbnail::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 30%, rgba(220, 0, 0, 0.2) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.8s ease;
}

.collection-card:hover .collection-thumbnail::after {
	transform: translateX(100%);
}

.collection-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.collection-card:hover .collection-thumbnail {
	transform: scale(1.05);
	opacity: 0.8;
}

.collection-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px var(--red-glow), 0 0 40px rgba(220, 0, 0, 0.2);
	border-color: var(--accent);
}

.card-content {
	padding: 25px;
	background: rgba(0, 0, 0, 0.95);
}

.card-badge {
	display: inline-block;
	padding: 4px 12px;
	background: var(--accent);
	color: white;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(220, 0, 0, 0.5);
}

.card-title {
	font-size: 22px;
	margin-bottom: 8px;
	font-weight: 700;
}

.card-subtitle {
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 11px;
	margin-bottom: 12px;
}

.card-price {
	font-size: 18px;
	color: var(--accent);
	font-weight: 600;
	text-shadow: 0 0 10px rgba(220, 0, 0, 0.3);
}

/* Featured Section */
.featured {
	padding: 100px 30px;
	background: var(--bg-section);
	position: relative;
	overflow: hidden;
}

.featured::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 30% 70%, var(--accent) 0%, transparent 50%);
	opacity: 0.08;
	z-index: 1;
}

.featured-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

/* 2-column hero section */
.featured-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
}

/* Typography */
.featured-content h2 {
	font-size: 44px;
	margin-bottom: 20px;
	letter-spacing: -1.5px;
	line-height: 1.2;
}

.featured-content .label {
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 12px;
	margin-bottom: 20px;
	display: block;
	text-shadow: 0 0 10px rgba(220, 0, 0, 0.5);
}

.featured-content p {
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 30px;
	font-size: 16px;
}

/* Feature highlights grid */
.feature-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 40px;
}

.highlight-item {
	padding: 25px;
	background: rgba(220, 0, 0, 0.05);
	border: 1px solid rgba(220, 0, 0, 0.2);
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;
}

.highlight-item:hover {
	background: rgba(220, 0, 0, 0.1);
	border-color: var(--accent);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(220, 0, 0, 0.3);
}

.highlight-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent), var(--accent-hover));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 24px;
	box-shadow: 0 0 30px rgba(220, 0, 0, 0.6);
}

.highlight-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: white;
}

.highlight-desc {
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.5;
}

/* Image Section */
.featured-image-section {
	position: relative;
	height: auto;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
	border: 1px solid rgba(220, 0, 0, 0.2);
	box-shadow: 0 0 40px rgba(220, 0, 0, 0.2);
	padding: 10px;
}

/* --- Modern grid layout --- */
.featured-image-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 250px 250px;
	grid-gap: 10px;
}

.featured-img {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.featured-img:hover img {
	transform: scale(1.05);
}

/* --- Make first image span more area --- */
.featured-img.large {
	grid-row: span 2;
}


/* CTA Buttons */
.cat-group {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.cat-group a {
	flex: 1;
	text-align: center;
}

/* ✅ Responsive Breakpoints */

/* Tablet (<=1024px) */
@media (max-width: 1024px) {
	.featured-hero {
		grid-template-columns: 1fr;
		gap: 50px;
		text-align: center;
	}

	.featured-content h2 {
		font-size: 36px;
	}

	.featured-image-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.featured-img.large {
		grid-row: auto;
		grid-column: span 2;
		height: 300px;
	}
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
	.featured {
		padding: 80px 20px;
	}

	.featured-content h2 {
		font-size: 28px;
	}

	.feature-highlights {
		grid-template-columns: 1fr;
	}

	.featured-image-section {
		height: 300px;
	}

	.cat-group {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 15px;
	}

	.featured-content p {
		font-size: 14px;
		line-height: 1.6;
	}
}

/* Small mobile (<=480px) */
@media (max-width: 480px) {
	.featured-content h2 {
		font-size: 24px;
		
	}
	.featured-content p {
		font-size: 13px;
	}
	.featured-image-grid {
		grid-template-columns: 1fr;
	}

	.featured-img {
		height: 250px;
	}
}



.rental-details {
    margin: 20px 0;
    padding: 20px;
    background: rgba(220, 0, 0, 0.05);
    border-left: 3px solid var(--accent);
}

.rental-details dl {
    margin: 0;
}

.rental-details dt {
    color: var(--accent);
    font-weight: 600;
    margin-top: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rental-details dt:first-child {
    margin-top: 0;
}

.rental-details dd {
    margin: 5px 0 0 0;
    color: var(--text-muted);
    line-height: 1.6;
}
/* Testimonials */
.testimonials {
	margin-top: 60px;
}

.testimonials-header {
	text-align: center;
	margin-bottom: 50px;
}

.testimonials-header h3 {
	font-size: 32px;
	margin-bottom: 15px;
	letter-spacing: -1px;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	padding: 40px;
	background: rgba(220, 0, 0, 0.05);
	border: 1px solid rgba(220, 0, 0, 0.2);
	border-radius: 12px;
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	background: rgba(220, 0, 0, 0.1);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(220, 0, 0, 0.3);
}

.testimonial-quote {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-light);
	margin-bottom: 25px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-avatar {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent), var(--accent-hover));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	font-size: 18px;
	box-shadow: 0 0 20px rgba(220, 0, 0, 0.5);
}

.author-info h4 {
	font-size: 16px;
	margin-bottom: 5px;
	color: white;
}

.author-info p {
	font-size: 14px;
	color: var(--text-muted);
}

.testimonial-rating {
	position: absolute;
	top: 20px;
	right: 20px;
	color: var(--accent);
	font-size: 14px;
}


  /* callout-banner */
.callout-banner {
    background: var(--accent);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.callout-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.callout-cta {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: var(--accent);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

/* Newsletter Section */
.newsletter {
	padding: 120px 50px 100px;
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	text-align: center;
	box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.newsletter-content {
	max-width: 600px;
	margin: 0 auto;
}

.newsletter h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

.newsletter p {
	font-size: 18px;
	margin-bottom: 40px;
	opacity: 0.9;
}

.newsletter-form {
	display: flex;
	gap: 10px;
	max-width: 500px;
	margin: 0 auto;
}

.newsletter-input {
	flex: 1;
	padding: 18px 25px;
	background: rgba(0, 0, 0, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	font-size: 16px;
	transition: all 0.3s ease;
}

.newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
	outline: none;
	background: rgba(0, 0, 0, 0.4);
	border-color: white;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
	padding: 18px 40px;
	background: white;
	color: var(--accent);
	border: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.newsletter-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	background: #fff;
}


/*---------------------------------------
  FAQs              
-----------------------------------------*/

        .wrapper {

           width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
			justify-content: center;
			padding-top: 20px;
			padding-bottom: 25px;
        }



        .accordion-container {
            max-width: 700px;
            width: 100%;
            background: #1a1a1a;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
            overflow: hidden;
            border: 1px solid #ff2e2e;
            
        }

        .accordion-item {
            border-bottom: 1px solid rgba(255, 46, 46, 0.3);
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-input {
            display: none;
        }

        .accordion-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
            background: #1a1a1a;
            transition: background 0.3s ease, color 0.3s ease;
            font-weight: 600;
            color: #fff;
            user-select: none;
            border-left: 5px solid transparent;
        }

        .accordion-label:hover {
            background: #2b0000;
            color: #ff2e2e;
        }

        .accordion-label::after {
            content: '+';
            font-size: 24px;
            color: #ff2e2e;
            transition: transform 0.3s ease;
        }

        .accordion-input:checked + .accordion-label {
            background: #2b0000;
            border-left: 5px solid #ff2e2e;
        }

        .accordion-input:checked + .accordion-label::after {
            content: '−';
            transform: rotate(180deg);
            color: #fff;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease, background 0.4s ease;
            background: #111;
        }

        .accordion-input:checked ~ .accordion-content {
            max-height: 500px;
            padding: 20px 25px;
            background: #1a1a1a;
        }

        .accordion-content p {
            color: #ddd;
            line-height: 1.6;
        }


/* Contact Section */
.contact {
	padding: 120px 50px 100px;
	background: var(--bg-section);
}

.contact-container {
	max-width: 1400px;
	margin: 0 auto;
}

.contact-header {
	text-align: center;
	margin-bottom: 60px;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
	
}

.contact-form-wrapper {
	background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
	padding: 50px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(220, 0, 0, 0.2);
	box-shadow: 0 0 40px rgba(220, 0, 0, 0.1);
}

.contact-form-wrapper::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
	opacity: 0.08;
	animation: rotate 30s linear infinite;
}

.form-group {
	margin-bottom: 25px;
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--text-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	background: rgba(220, 0, 0, 0.05);
	border: 1px solid rgba(220, 0, 0, 0.2);
	color: white;
	font-size: 16px;
	transition: all 0.3s ease;
	font-family: 'Arial', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	background: rgba(220, 0, 0, 0.1);
	border-color: var(--accent);
	box-shadow: 0 0 20px rgba(220, 0, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-submit {
	background: var(--accent);
	color: white;
	padding: 18px 50px;
	border: none;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 30px rgba(220, 0, 0, 0.5);
}

.form-submit::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, height 0.6s;
}

.form-submit:hover::before {
	width: 300px;
	height: 300px;
}

.form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px var(--red-glow), 0 0 50px rgba(220, 0, 0, 0.6);
}

.contact-info {
	padding: 50px;
	background: linear-gradient(135deg, rgba(220, 0, 0, 0.1), rgba(220, 0, 0, 0.05));
	border-radius: 10px;
	border: 1px solid rgba(220, 0, 0, 0.3);
	box-shadow: 0 0 30px rgba(220, 0, 0, 0.2);
}

.info-item {
	margin-bottom: 50px;
	display: flex;
	align-items: start;
	gap: 20px;
	transition: all 0.3s ease;
}

.info-item:hover {
	transform: translateX(5px);
}

.info-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent), var(--accent-hover));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
	box-shadow: 0 5px 15px rgba(220, 0, 0, 0.4), 0 0 30px rgba(220, 0, 0, 0.3);
}

.info-content h3 {
	font-size: 18px;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 700;
}

.info-content p {
	color: var(--text-muted);
	line-height: 1.8;
	font-size: 15px;
}

.info-content a {
	color: var(--accent);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
}

.info-content a:hover {
	color: var(--accent-hover);
	text-decoration: underline;
	text-shadow: 0 0 10px rgba(220, 0, 0, 0.5);
}

/* Map Section */
.map-section {
	position: relative;
	height: 400px;
	background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
	overflow: hidden;
	margin-top: 60px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(220, 0, 0, 0.2);
	border: 1px solid rgba(220, 0, 0, 0.2);
}

.map-container {
	width: 100%;
	height: 100%;
	position: relative;
	background: #111;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 8px;
	filter: brightness(0.8) contrast(1.2) invert(1) hue-rotate(180deg) saturate(0.3);
}

.map-placeholder {
	text-align: center;
	color: var(--text-muted);
	width: 100%;
	height: 100%;
}

/* Footer */
footer {
	background: #000;
	padding: 80px 50px 30px;
	border-top: 1px solid rgba(220, 0, 0, 0.3);
	box-shadow: inset 0 10px 40px rgba(220, 0, 0, 0.1);
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-brand h3 {
	font-size: 32px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #fff, var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-brand p {
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 30px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-link {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(220, 0, 0, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(220, 0, 0, 0.5);
}

.footer-column h4 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 25px;
	color: white;
}

.footer-column ul {
	list-style: none;
}

.footer-column a {
	color: var(--text-muted);
	text-decoration: none;
	display: block;
	padding: 8px 0;
	transition: all 0.3s ease;
}

.footer-column a:hover {
	color: var(--accent);
	transform: translateX(5px);
	text-shadow: 0 0 10px rgba(220, 0, 0, 0.5);
}

.footer-bottom {
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 30px;
	border-top: 1px solid rgba(220, 0, 0, 0.2);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-bottom p {
	color: var(--text-muted);
	font-size: 14px;
}

.payment-methods {
	display: flex;
	gap: 15px;
}

.payment-icon {
	width: 40px;
	height: 25px;
	background: rgba(220, 0, 0, 0.1);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	color: var(--text-muted);
	border: 1px solid rgba(220, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Responsive */
@media (max-width: 1024px) {
	nav {
		padding: 15px 20px;
	}

	.nav-links {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.mobile-nav {
		display: block;
	}

	.hero-container {
		grid-template-columns: 1fr;
		padding: 0 20px;
		text-align: center;
	}

	.hero-left {
		padding-right: 0;
		padding-top: 100px;
	}

	.hero-title {
		font-size: 50px;
	}

	.hero-stats {
		justify-content: center;
		gap: 30px;
	}

	.stat-number {
		font-size: 28px;
	}

	.hero-right {
		display: none;
	}

	.cta-group {
		flex-direction: column;
		align-items: center;
	}

	.cta-button {
		width: 220px;
		text-align: center;
		padding: 16px 30px;
	}

	.collections,
	.featured,
	.contact {
		padding: 80px 20px 50px;
	}

	section {
		scroll-margin-top: 60px;
	}

	.grid {
	  display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
	
	}

	.collection-thumbnail {
		height: 250px;
	}

	.card-content {
		padding: 20px;
	}

	.featured-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.featured-content {
		padding: 25px;
	}

	.featured-content h2 {
		font-size: 32px;
	}

	.feature-timeline {
		padding: 20px;
	}

	.timeline-item {
		padding-left: 35px;
	}

	.feature-progress {
		margin: 25px 0;
	}

	.progress-item {
		margin-bottom: 20px;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-form-wrapper {
		padding: 30px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-info {
		padding: 30px 20px;
	}

	.map-section {
		height: 300px;
		margin-top: 40px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}