* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #0a0a0a;
	--accent: #2e54d3;
	--accent-hover: #29197f;
	--text-light: #ffffff;
	--text-muted: #999;
	--bg-dark: #000;
	--bg-section: #0a0a0a;
}

html {
	scroll-behavior: smooth;
}

section {
	/* offset anchor jumps for the fixed nav */
	scroll-margin-top: 120px;
}

body {
	font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
	background: var(--bg-dark);
	color: var(--text-light);
	overflow-x: hidden;
}

/* Navigation */
nav {
	position: fixed;
	width: 100%;
	padding: 5px 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;
}

nav.scrolled {
	padding: 15px 50px;
	background: rgba(0, 0, 0, 0.98);
	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;
}

.logo-link:hover {
	transform: scale(1.05);
}

.logo-img {
    width: 80px;      /* increase size */
    height: 80px;     /* make height equal to width for perfect circle */
    margin-right: 10px;
    border-radius: 50%;   /* makes it circular */
    object-fit: cover;    /* keeps image proportions while filling the circle */
}

.nav-links {
	display: flex;
	gap: 30px;
	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;
}

.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);
}

.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(17, 10, 94, 0.3);
}

.nav-cta::before {
	display: none;
}

/* Tablet screens */
@media (max-width: 900px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 40px;
	}

	.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: 65px;
		margin-top: 0;
	}

	.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;
}

.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;
}

.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);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	height: auto;
	position: relative;
	overflow: hidden;
	background: #000;
	/* more headroom so the fixed nav does not overlap the hero content */
	padding: 160px 0 80px;
}

.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%, #4f8cd1 0deg, #000 60deg, hsl(232, 58%, 59%) 120deg, #000 180deg, #616ce1 240deg, #000 300deg, #536be0 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;
	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(60, 11, 141, 0.1);
	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;
}

.hero-badge::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(7, 25, 59, 0.5), 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, 85px);
	font-weight: 900;
	line-height: 1.1;
	margin-top: 0;
	margin-bottom: 20px;
	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;
}


@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(255, 51, 102, 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: center;
}

.hero-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 520px;
	padding-bottom: 80px;
}

.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 {
	display: none;
}

.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 {
	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;
}

.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);
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

/* Card */
.collection-card {
  position: relative;
  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;
}

.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; }

/* Thumbnail */
.collection-thumbnail {
  width: 100%;
  height: 300px;
  background: linear-gradient(45deg, #ffffff, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  opacity: 0.9;
  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(28, 16, 190, 0.1) 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;
}

/* Hover */
.collection-card:hover .collection-thumbnail {
  transform: scale(1.05);
  opacity: 0.8;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(19, 89, 196, 0.2);
}

/* Title-only content */
.card-content {
  padding: 16px 18px;
  background: rgba(27, 26, 26, 0.95);
  text-align: center;
}

.card-title {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.view-gallery-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.view-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 30px;
  font-weight: 600;
  color: #3b7cdf; /* clean blue */
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.view-gallery-btn .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.view-gallery-btn:hover {
  color: #1f4fbf; /* darker blue on hover */
}

.view-gallery-btn:hover .arrow {
  transform: translateX(6px);
}

/* Featured Section */
.featured {
  padding: 120px 50px 100px;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  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;
}

/* Left content */
.featured-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.featured-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
}

/* Team cards */
.team-cards {
  display: grid;
  gap: 30px;
}

.team-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 30px;
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

/* Bigger, centred images */
.team-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.1);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text tweaks */
.team-info {
  text-align: center;
}

.team-name {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.team-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.team-fun-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.team-fun-facts li {
  margin-bottom: 6px;
}

/* Layout */
.featured-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Responsive */
@media (max-width: 900px) {
  .featured-hero {
    grid-template-columns: 1fr;
  }

.featured-image-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
}

/* Right image grid (kept) */
.featured-image-section {
  position: relative;
  border-radius: 12px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.featured-image-grid {
  height: 500px;          /* controls how much space each row fills */
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}


.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;
}

.featured-img::before {
  content: '';
  position: absolute;
  inset: 0;
  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%);
}

/* Responsive */
@media (max-width: 900px) {
  .featured-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-image-section {
    height: 380px;
  }

  .featured-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .featured {
    padding: 80px 20px 60px;
  }

  .team-card {
    gap: 14px;
    padding: 16px;
  }

  .team-photo {
    width: 74px;
    height: 74px;
  }

  .featured-image-section {
    height: 320px;
  }
}

.team-fun-facts {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
  font-size: 14px;
  color: var(--text-muted);
}

.team-fun-facts li {
  margin-bottom: 6px;
}

.team-fun-facts strong {
  color: #fff;
  font-weight: 600;
}



/* Testimonials */
.testimonials {
	margin-top: 20px;
}

.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(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-5px);
}

.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), #4380f1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgb(255, 255, 255);
	font-weight: 600;
	font-size: 18px;
}

.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;
}

/* Newsletter Section */
.newsletter {
	padding: 120px 50px 100px;
	background: linear-gradient(135deg, var(--accent), #cc0044);
	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;
}

.hero-badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(28, 16, 206, 0.1);
	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;
}

.hero-badge::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(21, 23, 179, 0.5), transparent);
	left: -30px;
	animation: shimmer 3s ease infinite;
}

.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.507);
}

/* Contact Section */
.contact {
	padding: 12px 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: var(--text-muted);
	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(8, 55, 105, 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(32, 196, 180, 0.4);
}

.contact-info {
	padding: 50px;
	background: linear-gradient(135deg, rgba(32, 171, 176, 0.08), rgba(57, 183, 199, 0.02));
	border-radius: 10px;
	border: 1px solid rgba(26, 18, 133, 0.1);
}

.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), #458e96);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
	box-shadow: 0 5px 15px rgba(255, 51, 102, 0.2);
}

.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;
}

/* 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);
}

.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 #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;
	}

	.mobile-nav {
		display: block;
	}

	.hero-container {
		grid-template-columns: 1fr;
		padding: 0 20px;
		text-align: center;
	}

	.hero-left {
		padding-right: 0;
		
	}

	.hero-title {
		font-size: 65px;
		margin-top: 0;
	}

	.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 {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 15px;
	}

	.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;
	}
}

/* =========================
   Gallery Page
   ========================= */

.gallery-page {
  padding: 140px 50px 90px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-title {
  font-size: 48px;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.gallery-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-actions {
  margin: 30px auto 35px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  border-radius: 999px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  transition: 0.25s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
  border-color: var(--accent);
  background: rgba(46,84,211,0.15);
  color: #fff;
  transform: translateY(-2px);
}

/* Optional: subtle emphasis for new categories */
.gallery-filter[data-filter="featured"],
.gallery-filter[data-filter="bts"] {
  border-style: dashed;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

/* Card */
.g-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: 0.3s ease;
  min-height: 220px;
}

.g-item:hover {
  transform: translateY(-4px);
  border-color: rgba(46,84,211,0.35);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.g-item:hover img {
  transform: scale(1.06);
}

/* Overlay */
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 55%);
  opacity: 0.95;
  pointer-events: none;
}

.g-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-end;
  pointer-events: none;
}

.g-name {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  line-height: 1.2;
}

.g-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Optional: tag colour tweaks */
[data-cat="featured"] .g-tag { background: rgba(46,84,211,0.35); }
[data-cat="bts"] .g-tag { background: rgba(120,120,120,0.35); }

/* Sizing helpers */
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }
.span-3 { grid-column: span 3; }

.tall { min-height: 360px; }
.mid  { min-height: 280px; }

/* Back link */
.gallery-back {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.gallery-back a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3b7cdf;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.25s ease;
}

.gallery-back a:hover {
  color: #1f4fbf;
  transform: translateX(-2px);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lb-inner {
  width: min(1100px, 96vw);
  max-height: 86vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
}

.lb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,0.9);
}

.lb-title {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

.lb-close {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}

.lb-close:hover {
  border-color: var(--accent);
  background: rgba(46,84,211,0.18);
  transform: translateY(-1px);
}

.lb-imgwrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 78vh;
}

.lb-imgwrap img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}

.lb-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.lb-btn {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.25s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.lb-btn:hover {
  border-color: var(--accent);
  background: rgba(46,84,211,0.18);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1000px) {
  .gallery-page { padding: 130px 24px 70px; }
  .gallery-title { font-size: 38px; }

  .span-6 { grid-column: span 12; }
  .span-4 { grid-column: span 6; }
  .span-3 { grid-column: span 6; }
  .tall { min-height: 320px; }
}

@media (max-width: 640px) {
  .gallery-title { font-size: 32px; }

  .span-4, .span-3 { grid-column: span 12; }
  .g-item { min-height: 240px; }
  .tall { min-height: 280px; }
}


/* WhatsApp Speech Bubble Styles */
.whatsapp-bubble {
  position: fixed;
  bottom: 20px;
  right: -220px; /* start offscreen */
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 30px 30px 30px 6px; /* speech bubble shape */
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  opacity: 0;
  transition: right 0.6s ease-out, opacity 0.6s ease-out, background-color 0.3s ease;
  z-index: 99999;
}

.whatsapp-bubble img {
  width: 30px;
  height: 30px;
}

.whatsapp-bubble span {
  font-size: 16px;
  white-space: nowrap;
}

/* Hover effect: darker green */
.whatsapp-bubble:hover {
  background-color: #1a9c4e; /* slightly darker green */
}

/* Slide in + fade in after page load */
body.loaded .whatsapp-bubble {
  right: 20px;
  opacity: 1;
}

.gallery-img { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
}

.lightbox-close:hover {
  opacity: 1;
}

/* CTA container */
.hero-cta {
  display: flex;
  flex-direction: column;   /* STACK vertically */
  align-items: flex-start;  /* left-align with text */
  gap: 14px;
  margin-top: 28px;
}

/* Social icons row */
.hero-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Social buttons */
.hero-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 18px;

  text-decoration: none;
  outline: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.hero-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46, 84, 211, 0.4);
}

.hero-socials a:focus,
.hero-socials a:active {
  outline: none;
  box-shadow: none;
}

/* Optional: centre everything on mobile */
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ---------- Flexbox Layout + Mobile Responsiveness (no redesign) ---------- */

/* NAV */
.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* Keep UL as flex (desktop) */
.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}

/* HERO */
.hero-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.hero-left,
.hero-right{
  flex:1 1 0;
  min-width:0; /* prevents overflow on small screens */
}

/* Badge + socials row */
.hero-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.hero-socials{
  display:flex;
  align-items:center;
  gap:12px;
}

/* TESTIMONIALS */
.testimonials-grid{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.testimonial-card{
  flex:1 1 280px; /* 1-3 cards per row depending on width */
  min-width:0;
}

/* OUR WORK GRID (flexbox wrap, like a responsive grid) */
.grid#collectionsGrid{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.collection-card{
  flex:1 1 240px; /* responsive cards */
  min-width:0;
}

/* TEAM SECTION */
.featured-hero{
  display:flex;
  gap:28px;
  align-items:flex-start;
}

.featured-content{
  flex:1 1 520px;
  min-width:0;
}

.featured-image-section{
  flex:1 1 420px;
  min-width:0;
  display:grid;
  grid-template-rows: auto auto;
  gap:16px;
  height:auto !important; /* override earlier fixed heights */
}

/* Image grids in team section */
.featured-image-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:12px;
  width:100%;
  height:auto !important; /* avoid inherited fixed heights */
}

.featured-img{
  position:relative;
  aspect-ratio: 3 / 2;
  min-height: 200px;
  grid-row: auto;
  grid-column: auto;
}

.featured-img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

/* CONTACT */
.contact-content{
  display:flex;
  gap:28px;
  align-items:stretch;
  flex-wrap:wrap;
}

.contact-form-wrapper{
  flex:1 1 58%;
  min-width:320px;
}

.contact-info{
  flex:1 1 38%;
  min-width:280px;
}

/* Form rows */
.form-row{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.form-row .form-group{
  flex:1 1 220px;
  min-width:0;
}

/* Map responsive */
.map-container iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}

/* ---------- MOBILE STACKING ---------- */
@media (max-width: 900px){
  .hero-container,
  .featured-hero,
  .contact-content{
    flex-direction:column;
    align-items: stretch;
  }

  .hero-left,
  .hero-right{
    width:100%;
  }

  .hero-right{
    display:flex;
    justify-content:center;
  }

  .featured-image-grid{
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .featured-img{
    width:100%;
  }

  /* make cards full width on small screens */
  .testimonial-card,
  .collection-card{
    flex:1 1 100%;
  }
}

/* ---------- NAV MOBILE (your burger menu handles showing/hiding) ---------- */
@media (max-width: 860px){
  .nav-links{
    display:none; /* keep your mobile nav working */
  }
}

/* ---------- Featured image layout override (force clean grid) ---------- */
.featured-image-section{
  flex:1 1 420px;
  min-width:0;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:16px;
  height:auto !important;
}

.featured-image-grid{
  display:contents;
  height:auto !important;
}

.featured-img{
  position:relative;
  aspect-ratio: 4 / 3;
  min-height: 220px;
}

@media (max-width: 900px){
  .featured-image-section{
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
