/*

TemplateMo 599 Noir Fashion

https://templatemo.com/tm-599-noir-fashion

*/

@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #0a0a0a;
	--accent: #262262;
	--accent-hover: #262262;
	--text-light: #ffffff;
	--text-muted: #999;
	--bg-dark: #000;
	--bg-section: #0a0a0a;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* Supaya tidak ketutup navbar */
}

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: white;
	backdrop-filter: blur(10px);
	animation: slideDown 0.8s ease;
	transition: all 0.3s ease;
}

nav.scrolled {
	padding: 15px 50px;
	background: white;
		 font-weight: bold;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.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;
}

.-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: 30px;
	list-style: none;
	align-items: center;
	 position: relative;
  transition: color 0.3s ease;
}

.nav-links a {
	color: var(--accent);
	text-decoration: none;
	font-size: 14px;
	 font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
	transition: all 0.3s ease;
	padding: 5px 10px;
	opacity: 0.7;
}

.nav-links a::before {
	content: '';
		 font-weight: bold;
	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;
}

.nav-links a.active:hover {
	color: white;
	opacity: 1;
}

.nav-links a:hover::before {
	opacity: 1;
}

.nav-links a.active {
	color: var(--accent);
	opacity: 1;
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 2px;
	background: var(--accent);
}

.nav-cta {
	background: var(--accent);
	color: white !important;
	padding: 10px 25px !important;
	border-radius: 25px;
	font-weight: 600;
	opacity: 1 !important;
}

.nav-cta:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

.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-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;
	}
	

    .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000 !important; /* warna hitam */
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
  }

	.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 {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}
}

/* Mobile Menu */
.menu-toggle {
  display: none !important;
  flex-direction: column;  /* Supaya garis jadi vertikal */
  justify-content: space-around; /* Jarak antar garis merata */
  width: 30px;  /* Lebar tombol */
  height: 24px; /* Tinggi tombol */
  cursor: pointer;
  background: transparent; /* Agar tidak ada background putih */
  border: none;
  padding: 0;
  position: relative; /* Tetap di dalam navbar */
  z-index: 1001; /* Lebih tinggi dari navbar */
  margin-left: auto; /* Supaya tombol berada di kanan navbar */
  /* jangan fixed atau absolute supaya tetap mengalir di navbar */
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000; /* Warna garis hitam agar terlihat */
  border-radius: 2px;
  transition: all 0.3s ease;
}
.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: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  color: white;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  transition: right 0.3s ease;
}

.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: #fff; /* link putih */
	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);
}

/* 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%, #262262 0deg, #000 60deg, #262262 120deg, #000 180deg, #262262 240deg, #000 300deg, #262262 360deg);
	animation: spin 20s linear infinite;
	opacity: 0.15;
}

.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;
    width: 100%;
    margin: 0;
    padding: 0 0 0 50px; /* kiri tetap ada ruang, kanan mentok */
    position: relative;
    z-index: 2;
    align-items: center;
}

.hero-left {
	padding-right: 60px;
}

.hero-badge {
	display: inline-block;
	padding: 8px 20px;
	margin: 80px;
	background: rgba(95, 51, 255, 0.1);
	border: 1px solid white;
	color: white;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 30px;
	animation: slideInLeft 1s ease;
	position: relative;
	overflow: hidden;
}

.hero-badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50px; /* mulai dari luar kiri */
	width: 50px; /* lebar area shimmer */
	height: 100%; /* penuh dari atas ke bawah */
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(255, 51, 102, 0.5) 50%,
		transparent 100%
	);
	transform: skewX(-20deg); /* efek miring agar lebih modern */
	animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
	0% {
		left: -60px;
	}
	100% {
		left: calc(100% + 60px);
	}
}


.hero-title {
	font-size: clamp(67px, 7vw, 67px);
	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, #262262, #262262);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	
}

@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;
}

.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 {
	padding: 18px 40px;
	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;
}

.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 rgba(139, 51, 255, 0.3);
}

.cta-button.outline {
	background: transparent;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.cta-button.outline:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.hero-right {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* dorong ke kanan */
    width: 100%;
}


.hero-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 600px;
}

.hero-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.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;
}

.carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 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.8);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	color: white;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	animation: fadeInScale 1s ease backwards;
}

.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: 3;
}

.scroll-indicator span {
	display: block;
	width: 30px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	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;
}

@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;
	}
}

/* Collections Grid */
.collections {
  width: 100%;
  min-height: 100vh;
  background: white;
  padding: 80px 5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: white; /* Warna judul hitam */
}

.section-title-car {
    font-size: 48px;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--accent); /* Warna judul hitam */
}

.section-subtitle {
    color: var(--accent); /* Warna subjudul hitam */
    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(--accent); /* Border hitam */
    color: var(--accent); /* Warna teks hitam */
    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); /* Warna aktif hitam */
    border-color: var(--accent);
    color: #ffffff; /* Teks putih saat aktif/hover */
    transform: translateY(-2px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* tepat 3 card dalam 1 baris */
  gap: 25px; /* jarak antar card */
  padding: 20px;
}

/* Collection Cards */
.collection-card {
  background: linear-gradient(145deg, #0d1117, #08121c);
  border: 1px solid rgba(0, 180, 255, 0.1);
  border-radius: 18px;
    display: block;
  width: 100%;
    max-width: 400px;
    flex: 0 1 360px; 
    margin: 0 auto;
	box-sizing: border-box;
  box-shadow: 0 0 25px rgba(0, 150, 255, 0.08);
  overflow: visible;
    overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
  padding-bottom: 15px;
}


.collection-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 200, 255, 0.25), transparent 80%);
  transform: skewX(-25deg);
  transition: all 0.8s ease;
  opacity: 0.4;
}

.collection-card:hover::before {
  transform: rotate(35deg) scale(1.1);
  opacity: 0.5;
}
.collection-card:hover::before {
  left: 120%;
}

.collection-card:hover {
  box-shadow: 0 0 35px rgba(0, 180, 255, 0.2);
  transform: translateY(-5px);
}

.collection-thumbnail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
   height: 240px;         /* otomatis menyesuaikan tinggi isi */
  overflow: visible;      /* pastikan tidak terpotong */
}

.main-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  position: relative;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.collection-thumbnail img.main-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.9) contrast(1.1);
}

.collection-card:hover .collection-thumbnail img.main-image {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.25);
}

.thumbnail-gallery {
  display: flex;
  justify-content: center;
   gap: 8px;
   margin-top: -2px;
     padding-top: 10px;
     background: rgba(10, 20, 35, 0.6);;
  position: relative;
  backdrop-filter: blur(12px);
  box-shadow: none !important; /* pastikan tidak ada garis dari shadow */
   top: -5px;
   z-index: 1;
   border-radius: 0 0 12px 12px;
}


.thumbnail-gallery img {
  width: 85px;
  height: 60px;;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail-gallery img:hover {
  transform: scale(1.05);
  border-color: #00bfff;
}

.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: 260px;
  overflow: hidden;
    border-bottom: none !important;
  margin-bottom: 0 !important;
}

.collection-thumbnail::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 51, 102, 0.1) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.8s ease;
}

.collection-card:hover .collection-thumbnail img {
    transform: scale(1.05);
}

.collection-card:hover .collection-thumbnail::after {
	transform: translateX(100%);
}

.collection-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  filter: brightness(0.85) contrast(1.1);
}

.collection-card:hover .collection-thumbnail img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.2);
}

.collection-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(156, 51, 255, 0.2);
}

.card-content {
  padding: 24px;
  color: #e9f4ff;
  background: rgba(10, 20, 35, 0.6); /* samakan dengan thumbnail-gallery */
  backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  z-index: 2;
}

.card-badge {
  display: inline-block;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.card-title {
  color: #e8f6ff;
  font-size: 18px;
  margin: 5px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card-subtitle {
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 11px;
	margin-bottom: 12px;
}

.card-seat {
  color: #8ab6d6;
  font-size: 14px;
  margin-bottom: 5px;
}

.card-price {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
}

.card-price small {
  font-size: 8px;
  color: #aaa;
  text-transform: uppercase;
  margin-right: 4px;
  opacity: 0.8;
}


/* Featured Section */
.featured {
	padding: 120px 50px 100px;
	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.05;
	z-index: 1;
}

.featured-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.featured-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	margin-bottom: 100px;
}

.featured-content h2 {
	font-size: 48px;
	margin-bottom: 20px;
	letter-spacing: -2px;
}

.featured-content .label {
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 15px;
	margin-bottom: 20px;
	display: block;
}

.featured-content p {
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 30px;
	font-size: 16px;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: -10px 0;
    padding: 10px 10px;
    border-radius: 20px;
}

/* Card style */
.highlight-item {
    background: linear-gradient(145deg, #1B2A45, #12203A); /* glossy dark */
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    flex: 1 1 200px;
    max-width: 250px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect: background + glow seluruh card */
.highlight-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, #000000, #003366); /* hitam ke biru kebiruan */
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.6), 0 0 40px rgba(0, 51, 102, 0.4);
    filter: drop-shadow(0 0 15px rgba(0, 102, 204, 0.5));
}

/* Icon style glossy blue */
.highlight-icon {
    font-size: 2em;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%; /* lingkaran modern */
    color: #fff;
    background: linear-gradient(135deg, #00C6FF, #0072FF); /* blue-cyan gradient */
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover icon effect */
.highlight-item:hover .highlight-icon {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(0, 194, 255, 0.7);
}

.highlight-item:nth-child(1) .highlight-icon { background-color: #4CAF50; }  /* hijau - terpercaya */
.highlight-item:nth-child(2) .highlight-icon { background-color: #FF9800; }  /* orange - harga */
.highlight-item:nth-child(3) .highlight-icon { background-color: #2196F3; }  /* biru - mobil */

/* Title & description text */
.highlight-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 8px;
    color: #E0F7FF; /* light cyan */
}

.highlight-desc {
    font-size: 0.95em;
    color: #B0D8FF; /* softer cyan for description */
    line-height: 1.4;
}

/* Optional: responsive tweak */
@media (max-width: 768px) {
    .feature-highlights {
        flex-direction: column;
        align-items: center;
    }
}

.featured-image-section {
	position: relative;
	height: 570px;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.featured-image-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 2px;
	height: 100%;
}

.featured-img {
	background: linear-gradient(45deg, #333, #222);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 14px;
	transition: transform 0.3s ease;
	position: relative;
	overflow: hidden;
}

.featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.featured-img:hover img {
	transform: scale(1.05);
}

.featured-img:hover {
	transform: scale(1.02);
}

.featured-img:first-child {
	grid-row: 1 / 3;
	background: linear-gradient(135deg, #444, #222);
	font-size: 18px;
}

.featured-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 51, 102, 0.1) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.8s ease;
}

.featured-img:hover::before {
	transform: translateX(100%);
}

.feature-cta {
	display: inline-block;
	padding: 18px 50px;
	background: var(--accent);
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 20px;
	border-radius: 4px;
}

.feature-cta:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(122, 51, 255, 0.4);
}

@media (max-width: 1024px) {
    .featured-hero {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .featured-content h2 {
        font-size: 38px;
    }

    .featured-image-section {
        height: 400px;
    }

    .featured-image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .featured-img:first-child {
        grid-row: auto;
        grid-column: span 2;
        height: 250px;
    }
}

/* Mobile - di bawah 768px */
@media (max-width: 768px) {
    .featured {
        padding: 80px 20px;
    }

    .featured-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .feature-highlights {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .highlight-item {
        max-width: 100%;
        width: 90%;
    }

    .featured-image-section {
        height: auto;
    }

    .featured-image-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .featured-img {
        height: 200px;
    }

    .featured-img img {
        object-fit: cover;
    }
}

/* Very small mobile - di bawah 480px */
@media (max-width: 480px) {
    .featured-content h2 {
        font-size: 26px;
    }

    .featured-content .label {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .highlight-item {
        padding: 20px 15px;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6em;
    }

    .featured-img {
        height: 160px;
    }
}

/* Testimonials */
.testimonials {
	position: relative;
	width: 100vw; /* penuh dari kiri ke kanan */
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 80px 20px;
	color: #e0e6ed;
	background: radial-gradient(circle at top left, #0a0a0f, #0d1b2a, #000);
	border-top: 1px solid rgba(255,255,255,0.1);
	border-bottom: 1px solid rgba(255,255,255,0.1);
	box-shadow: inset 0 0 40px rgba(0, 170, 255, 0.1);
	overflow: hidden;
}

.testimonials-header {
	text-align: center;
	margin-bottom: 50px;
}

.testimonials-header h3 {
	font-size: 32px;
	margin-bottom: 10px;
	letter-spacing: -1px;
	color: #9bdfff;
	text-shadow: 0 0 10px rgba(0, 200, 255, 0.4);
}

.section-subtitle {
	color: white;
	font-size: 14px;
	letter-spacing: 1px;
}

.section-subtitle-car {
	color: var(--accent);
	font-size: 14px;
	letter-spacing: 1px;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	padding: 20px;
	background: transparent;
	max-width: 1200px; /* batasi lebar konten agar tetap elegan */
	margin: 0 auto;
}

.testimonial-card {
	position: relative;
	background: linear-gradient(145deg, rgba(15,25,40,0.95), rgba(10,15,25,0.85));
	border-radius: 18px;
	padding: 25px;
	backdrop-filter: blur(8px);
	box-shadow: 0 8px 25px rgba(0, 150, 255, 0.15), inset 0 0 20px rgba(0, 200, 255, 0.05);
	border: 1px solid rgba(0, 200, 255, 0.1);
	transition: all 0.35s ease;
	overflow: hidden;
}

.testimonial-card::before {
	content: "";
	position: absolute;
	top: -100%;
	left: -100%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		120deg,
		transparent 40%,
		rgba(0, 200, 255, 0.15) 50%,
		transparent 60%
	);
	transform: rotate(20deg);
	transition: opacity 0.5s ease;
	opacity: 0;
}

.testimonial-card:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 20px 40px rgba(0, 200, 255, 0.25), inset 0 0 25px rgba(0, 200, 255, 0.08);
	border-color: rgba(0, 200, 255, 0.3);
	animation: glowPulse 0.5s infinite alternate ease-in-out;
}

.testimonial-card:hover::before {
	opacity: 1;
	animation: shimmerSlide 1.5s linear infinite;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}


.testimonial-rating {
	font-size: 28px;
	margin-bottom: 15px;
	text-shadow: 0 0 6px rgba(0, 200, 255, 0.4);
}

.testimonial-rating .star {
	font-size: 30px;
	color: #2a3a4a;
	margin-right: 4px;
	transition: transform 0.3s ease, color 0.3s ease;
}

.testimonial-rating .star.filled {
	color: #00c8ff;
	text-shadow: 0 0 10px rgba(0, 220, 255, 0.8), 0 0 20px rgba(0, 200, 255, 0.4);
}

.testimonial-rating .star.filled:hover {
	transform: scale(1.3);
	color: #33eaff;
}

.testimonial-quote {
	font-style: italic;
	color: #c8d4e3;
	margin-bottom: 15px;
	position: relative;
	line-height: 1.6;
}

.testimonial-quote::before {
	content: "“";
	font-size: 42px;
	color: #00c8ff;
	position: absolute;
	left: -12px;
	top: -20px;
	text-shadow: 0 0 15px rgba(0, 200, 255, 0.6);
}

.testimonial-author {
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.author-avatar {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: linear-gradient(135deg, #00c8ff, #004466);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 22px;
	margin-right: 12px;
	box-shadow: 0 0 15px rgba(0, 200, 255, 0.5);
	border: 1px solid rgba(255,255,255,0.15);
}

.author-info h4 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #9bdfff;
}

.author-info p {
	margin: 0;
	font-size: 12px;
	color: #6f8092;
}

@keyframes glowPulse {
	0% {
		box-shadow: 0 10px 25px rgba(0, 200, 255, 0.15), inset 0 0 20px rgba(0, 200, 255, 0.05);
	}
	100% {
		box-shadow: 0 20px 45px rgba(0, 200, 255, 0.3), inset 0 0 30px rgba(0, 200, 255, 0.1);
	}
}

@keyframes shimmerSlide {
	0% {
		transform: translate(-150%, -150%) rotate(25deg);
	}
	100% {
		transform: translate(150%, 150%) rotate(25deg);
	}
}
/* testimonial */


/* Newsletter Section */
.newsletter {
	padding: 120px 50px 100px;
	background: linear-gradient(135deg, var(--accent), #4e00cc);
	text-align: center;
}

.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(255, 255, 255, 0.1);
	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(255, 255, 255, 0.2);
	border-color: white;
}

.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.2);
}

/* Contact Section */
.contact {
	padding: 20px 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;
}

.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.05;
	animation: rotate 30s linear infinite;
}

.form-group {
	margin-bottom: 25px;
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: white;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	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(255, 255, 255, 0.08);
	border-color: var(--accent);
	box-shadow: 0 0 20px rgba(255, 51, 102, 0.1);
}

.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;
}

.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 rgba(105, 51, 255, 0.4);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #020203, #050510, #0a0f1a);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 50, 255, 0.25);
  backdrop-filter: blur(15px);
}

.info-item {
  flex: 1 1 280px;
  background: rgba(10, 15, 30, 0.55);
  border: 1px solid rgba(0, 100, 255, 0.3);
  border-radius: 16px;
  padding: 25px 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.4s ease;
  box-shadow: inset 0 0 15px rgba(0, 80, 255, 0.2);
  backdrop-filter: blur(10px);
}

/* Hover effect ringan */
.info-item:hover .info-icon {
    transform: scale(1.1);
}

.pin-icon {
    background-color: #FF6B6B;  /* merah soft */
}

.phone-icon {
    background-color: #4D96FF;  /* biru cerah */
}

.email-icon {
    background-color: #FFA94D;  /* orange / kuning modern */
}

.info-icon {
    font-size: 1.5em;          /* sedikit lebih kecil agar terlihat rapi */
    width: 60px;
    height: 60px;
    border-radius: 15px;       /* sudut agak membulat, modern */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, background 0.3s;
}

.info-content h3 {
  color: #e8f0ff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 6px;
  text-shadow: 0 0 10px rgba(0, 120, 255, 0.3);
}

.info-content p {
  color: #b0caff;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

.info-content a {
  color: #66b3ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.info-content a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #0099ff;
}
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .info-item {
    width: 90%;
  }
}

/* Map Section */
/* ======== MAP SECTION - CLEAN LUXURY BLACK BLUE ======== */
.map-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}


.map-section::before {
  width: 250px;
  height: 250px;
  top: -60px;
  right: -80px;
  background: radial-gradient(circle, rgba(0, 110, 255, 0.25), transparent 70%);
}
.map-section::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(0, 80, 200, 0.2), transparent 70%);
}

/* Container bingkai map */
.map-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(15, 20, 35, 0.4); /* sedikit transparan glossy */
  border: 1px solid rgba(0, 120, 255, 0.25);
  box-shadow:
    0 0 25px rgba(0, 120, 255, 0.15),
    inset 0 0 15px rgba(0, 120, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1;
  transition: all 0.4s ease;
}

/* Hover effect lembut */
.map-container:hover {
  transform: scale(1.015);
  box-shadow:
    0 0 35px rgba(0, 150, 255, 0.25),
    inset 0 0 20px rgba(0, 120, 255, 0.2);
}

/* Map iframe */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  filter: grayscale(10%) brightness(95%) contrast(110%) saturate(120%);
  transition: filter 0.4s ease;
}

/* Hover: sedikit lebih terang */
.map-container:hover iframe {
  filter: grayscale(0%) brightness(100%) contrast(120%) saturate(130%);
}


/* Responsif */
@media (max-width: 768px) {
  .map-container {
    height: 340px;
  }
}

.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 #222;
}

.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 var(--text-muted);
	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);
}

.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);
}

.footer-bottom {
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 30px;
	border-top: 1px solid #222;
	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(255, 255, 255, 0.1);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	color: var(--text-muted);
}

/* 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: 768px) {
	nav {
		padding: 15px 20px;
	}

	.nav-links {
		display: none;
	}

	.menu-toggle {
		display: flex !important;
	}

	.mobile-nav {
		display: block;
	}
z
	.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: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: start;
}

	.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;
	}
}