/* Gallery Slideshow Styles */
.gallery-slideshow-section {
	width: 100vw;
	background: linear-gradient(135deg, #e9fbe7 0%, #fff 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 48px 0 56px 0;
	margin-top: 40px;
}
.gallery-slideshow-container {
	position: relative;
	width: 90vw;
	max-width: 700px;
	height: 420px;
	box-shadow: 0 8px 32px rgba(14,133,129,0.10);
	border-radius: 24px;
	overflow: hidden;
	background: #fff;
		display: flex;
		align-items: stretch;
		justify-content: center;
}
.gallery-slideshow {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gallery-slide {
		position: relative;
		width: 100%;
		height: 100%;
		object-fit: contain;
		background: #fff;
		opacity: 0;
		transition: opacity 0.7s cubic-bezier(.4,2,.3,1);
		z-index: 1;
		border-radius: 24px;
		box-shadow: 0 4px 24px rgba(14,133,129,0.10);
			display: block;
			margin: auto;
			max-height: 100%;
			max-width: 100%;
}
.gallery-slide.active {
	opacity: 1;
	z-index: 2;
}
.gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(14,133,129,0.12);
	color: #085839;
	border: none;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	font-size: 2rem;
	cursor: pointer;
	z-index: 10;
	transition: background 0.2s, color 0.2s;
	box-shadow: 0 2px 8px rgba(14,133,129,0.10);
}
.gallery-nav:hover {
	background: #0e8581;
	color: #fff;
}
.gallery-nav.prev {
	left: 18px;
}
.gallery-nav.next {
	right: 18px;
}
@media (max-width: 800px) {
	.gallery-slideshow-container {
		max-width: 98vw;
		height: 240px;
		border-radius: 14px;
	}
	.gallery-slide {
		border-radius: 14px;
	}
	.gallery-nav {
		width: 36px;
		height: 36px;
		font-size: 1.4rem;
	}
}
/* Replicated Hero Section Styles */
.replicated-hero-section {
	position: relative;
	width: 100%;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	padding-bottom: 5rem;
	background: url('images/hero.png') center center/cover no-repeat;
}
.replicated-hero-section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
	z-index: 1;
}
.replicated-hero-bg {
		position: relative;
		width: 100%;
		height: auto;
		min-height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		z-index: 2;
}
/* Replicated Hero Title Styles */
.replicated-hero-title {
		position: relative;
		z-index: 10;
		color: #fff !important;
	font-size: 2.25rem;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.5px;
	margin: 10rem 0 1.2rem 0;
	padding: 0.5rem 1rem;
	line-height: 1.2;
	text-shadow: 0 2px 12px rgba(0,0,0,0.4);
	border: none;
}

@media (max-width: 600px) {
	.replicated-hero-title {
		font-size: 1.3rem;
		padding: 0.5rem;
		margin-top: 2.5rem;
		margin-bottom: 0.8rem;
	}
}

.replicated-hero-desc {
	color: #fff;
	font-size: 1.15rem;
	text-align: center;
	margin: 0 0 2rem 0;
	font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
	font-weight: 400;
	letter-spacing: 0.1px;
	line-height: 1.5;
	z-index: 10;
}

@media (max-width: 600px) {
	.replicated-hero-desc {
		font-size: 1rem;
		margin-bottom: 1.2rem;
	}
}

.award-card-desc {
	font-size: 0.92rem;
	color: #444;
	font-family: 'Inter', Arial, sans-serif;
	margin-top: 6px;
	text-align: left;
	line-height: 1.4;
}
/* Recognitions & Awards Section Styles */
.awards-section {
	width: 100%;
	background: #f8fbfd;
	padding: 64px 0 72px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.awards-title {
	font-family: 'Times New Roman', Times, serif;
	font-size: 2.5rem;
	font-weight: 500;
	color: #000;
	margin-bottom: -3px;
	letter-spacing: 1px;
}
.awards-subtext {
	font-size: 1rem;
	color: #222;
	line-height: 1.3;
	font-family: 'Times New Roman', Times, serif;
	margin-bottom: 38px;
	text-align: left;
	max-width: 700px;
}
.awards-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(180px, 1fr));
	gap: 36px;
	width: 90vw;
	max-width: 1300px;
}
.award-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(60,60,70,0.08);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 22px 18px 22px 18px;
	min-height: 120px;
	transition: box-shadow 0.2s, transform 0.2s;
}
.award-card:hover {
	box-shadow: 0 8px 32px rgba(60,60,70,0.16);
	transform: translateY(-2px) scale(1.01);
}
.award-icon {
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.award-card-title {
	font-family: 'Inter', Arial, sans-serif;
	font-size: 1rem;
	color: #222;
	font-weight: 500;
	text-align: left;
}
@media (max-width: 1100px) {
	.awards-grid {
		grid-template-columns: repeat(2, minmax(180px, 1fr));
		gap: 28px;
	}
}
@media (max-width: 700px) {
	.awards-title, .awards-subtext {
		text-align: center !important;
		margin-left: auto !important;
		margin-right: auto !important;
		max-width: 95vw;
	}
	.collections-subtext {
		text-align: center !important;
		margin-left: auto !important;
		margin-right: auto !important;
		max-width: 95vw;
	}
	.awards-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.award-card {
		min-height: 80px;
		padding: 14px 10px 14px 10px;
	}
}
/* Craftsmen Tags Styles */
.craftsmen-tags {
	display: flex;
	gap: 14px;
	margin-top: 28px;
	flex-wrap: wrap;
}
.craftsmen-tag {
		display: inline-block;
		background: #fff;
		color: #222;
		font-size: 0.78rem;
		font-family: 'Inter', Arial, sans-serif;
		padding: 4px 14px;
		border-radius: 16px;
		font-weight: 500;
		box-shadow: 0 2px 8px rgba(60,60,70,0.07);
		letter-spacing: 0.2px;
		border: 1px solid #b3d8f6;
		transition: background 0.2s, color 0.2s;
	}

@media (max-width: 768px) {
  .craftsmen-tags {
    justify-content: center;
  }
}

/* Master Craftsmen Section Styles */
.craftsmen-section {
	width: 100%;
	background: radial-gradient(circle at 30% 40%, #e3f0fa 60%, #b3d8f6 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 60px 0;
}
.craftsmen-img {
	width: 400px;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(60,60,70,0.10);
	margin-left: 0;
	margin-top: 81px;
}
@media (max-width: 900px) {
	.craftsmen-img {
		width: 90vw;
		height: 220px;
		border-radius: 12px;
	}
}
/* Our Collections Section Styles */
.collections-section {
	width: 100%;
	background: #f8fbfd;
	padding: 64px 0 72px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.collections-title {
		font-family: 'Times New Roman', Times, serif;
		font-size: 2.5rem;
		font-weight: 500;
		color: #000;
		margin-bottom: -8px;
		letter-spacing: 1px;
}
/* Collections Subtext Style */
.collections-subtext {
	font-size: 1rem;
	color: #222;
	line-height: 1.3;
	font-family: 'Times New Roman', Times, serif;
	margin-bottom: 88px;
	text-align: left;
	max-width: 700px;
}
.collections-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(220px, 1fr));
	gap: 16px;
	width: 90vw;
	max-width: 1300px;
}
.collection-card {
			background: #fff;
			border-radius: 10px;
			box-shadow: 0 4px 24px rgba(60,60,70,0.08);
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			padding: 0;
			transition: box-shadow 0.2s, transform 0.2s;
			min-height: 260px;
			height: 320px;
			overflow: hidden;
}
.collection-card:hover {
	box-shadow: 0 8px 32px rgba(60,60,70,0.16);
	transform: translateY(-4px) scale(1.02);
}
.collection-img {
			width: 100%;
			height: 60%;
			min-height: 110px;
			max-height: 200px;
			object-fit: cover;
			border-radius: 0;
			margin: 0;
			box-shadow: none;
			display: block;
}
.collection-card-title {
				font-family: 'Times New Roman', Times, serif;
				font-size: 1.02rem;
				font-weight: 600;
				color: #222;
				margin-top: 14px;
				margin-bottom: 7px;
				text-align: left;
				padding-left: 18px;
				padding-right: 18px;
}
.collection-card-desc {
				font-size: 0.87rem;
				color: #444;
				font-family: 'Inter', Arial, sans-serif;
				text-align: left;
				margin-bottom: 10px;
				line-height: 1.4;
				padding-left: 18px;
				padding-right: 18px;
}
.collection-card-link {
				font-family: 'Inter', Arial, sans-serif;
				font-size: 0.92rem;
				color: #0097a7;
				text-decoration: none;
				font-weight: 600;
				letter-spacing: 0.5px;
				transition: color 0.2s;
				text-align: left;
				padding-left: 18px;
				padding-right: 18px;
}
.collection-card-link:hover {
	color: #005e6a;
	text-decoration: underline;
}
@media (max-width: 1100px) {
	.collections-grid {
		grid-template-columns: repeat(2, minmax(220px, 1fr));
		gap: 28px;
	}
}
@media (max-width: 700px) {
	.collections-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.collection-card {
		min-height: 340px;
		padding: 18px 10px 22px 10px;
	}
	.collection-img {
		max-width: 100%;
		height: 213px;
	}
}
.blurred-divider {
	position: relative;
	width: 100vw;
	height: 32px;

	/* Overlap into hero */
	margin: -20px auto -16px auto;

	background: rgb(255, 255, 255);
	backdrop-filter: blur(28px);
	-webkit-backdrop-filter: blur(28px);

	/* Feather mask for smaller space */
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
	mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;

	z-index: 2;
	pointer-events: none;
}


/* Our Heritage Section Styles */
.heritage-section {
	width: 100%;
	min-height: 320px;
	background: radial-gradient(
		circle at 30% 40%,
		#ffffff 0%,
		#e3f0fa 45%,
		#e3ddf8 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 60px 0;
}
.heritage-content-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1300px;
	width: 90vw;
	margin: 0 auto;
	gap: 24px;
}
.heritage-left {
	flex: 1 1 45%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding-left: 13vw;
	padding-top: 90px;
}
.heritage-title {
	font-size: 2.5rem;
	font-weight: 500;
	color: #000;
	margin-bottom: 18px;
	font-family: 'Times New Roman', Times, serif;
}
.heritage-desc {
	font-size: 15px;
	color: #222;
	font-family: 'Times New Roman', Times, serif;
	margin-bottom: 0;
}
.heritage-right {
	flex: 1 1 55%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 11vw;
}
.heritage-grid {
	display: grid;
	grid-template-columns: repeat(2, 180px);
	grid-template-rows: repeat(2, 180px);
	gap: 24px;
	align-items: center;
	justify-items: center;
	padding-top: 80px;
}
.heritage-img.square:nth-child(1) {
	grid-row: 1;
	grid-column: 1;
}
.heritage-img.square:nth-child(2) {
	grid-row: 1;
	grid-column: 2;
}
.heritage-img.square:nth-child(3) {
	grid-row: 2;
	grid-column: 1 / span 2;
	width: 384px;
	height: 180px;
	border-radius: 8px;
}
.heritage-img.square {
	width: 180px;
	height: 180px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: transform 0.3s;
}
.heritage-img.square:hover {
	transform: scale(1.07);
}
.heritage-img.rectangle {
	grid-column: 1 / span 3;
	grid-row: 3;
	width: 378px;
	height: 90px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	margin-top: 18px;
	transition: transform 0.3s;
}
.heritage-img.rectangle:hover {
	transform: scale(1.04);
}
@media (max-width: 900px) {
	.heritage-content-wrapper {
		flex-direction: column;
		align-items: center;
		gap: 32px;
	}
	.heritage-left {
		align-items: center;
		text-align: center;
		padding-left: 0;
	}
	.heritage-right {
		justify-content: center;
		padding-right: 0;
	}
	.heritage-grid {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 18px;
	}
	.heritage-img.square {
		width: 70vw;
		max-width: 180px;
		height: 70vw;
		max-height: 180px;
		object-fit: cover;
		margin: 0 auto;
	}
	.heritage-img.square:nth-child(3) {
		width: 70vw;
		max-width: 180px;
		height: 70vw;
		max-height: 180px;
		object-fit: cover;
		margin: 0 auto;
		border-radius: 8px;
	}
}
html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}
/* Hero Section Styles */
.hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 0px;
	padding-bottom: 0;
	padding-left: 0;
}
.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.hero-img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	display: block;
}
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.6);
	z-index: 1;
}
.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
	width: 90vw;
	max-width: 600px;
}
.hero-title {
	font-family: 'Times New Roman', Times, serif;
	color: #fff;
	font-size: 3rem;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 18px;
	letter-spacing: 2px;
}
.hero-subtitle {
	font-family: 'Times New Roman', Times, serif;
	color: #fff;
	font-size: 1.3rem;
	margin-bottom: 32px;
	letter-spacing: 1px;
}
.hero-buttons {
	display: flex;
	gap: 18px;
	justify-content: center;
}
.hero-btn {
	font-family: 'Times New Roman', Times, serif;
	color: #fff;
	padding: 12px 32px;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #fff;
	background: transparent;
	transition: background 0.2s, color 0.2s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.hero-btn.primary {
	background: #fff;
	color: #222;
	border: 2px solid #fff;
}
.hero-btn.primary:hover {
	background: #0097a7;
	color: #fff;
	border-color: #0097a7;
}
.hero-btn.secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}
.hero-btn.secondary:hover {
	background: #222;
	color: #fff;
	border-color: #222;
}
@media (max-width: 600px) {
	.hero-title {
		font-size: 2rem;
	}
	.hero-subtitle {
		font-size: 1rem;
	}
	.hero-content {
		max-width: 95vw;
	}
	.hero-btn {
		padding: 10px 18px;
		font-size: 1rem;
	}
}
/* Top bar icons styles */
.nav-icons {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-left: 32px;
}
.icon-link {
	display: flex;
	align-items: center;
	color: #333;
	transition: color 0.2s, transform 0.2s;
}
.icon-link:hover {
	color: #0097a7;
	transform: scale(1.15);
}
.icon-link svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
}

html {
	transform: none;
	width: 100vw;
	overflow-x: hidden;
}

/* Burger menu styles */
.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1100;
}
.burger span {
	display: block;
	width: 24px;
	height: 3px;
	margin: 4px 0;
	background: #333;
	border-radius: 2px;
	transition: 0.3s;
}
.burger.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
	opacity: 0;
}
.burger.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Base nav-links transition */
.nav-links {
	transition: max-height 0.3s, opacity 0.3s;
}

/* Mobile styles */
@media (max-width: 800px) {
	/* hide top icons */
	.nav-icons {
		display: none !important;
	}

	/* show burger */
	.burger {
		display: flex;
		position: absolute;
		top: 16px;
		right: 20px;
	}

	nav {
		position: relative;
	}

	/* collapsed nav */
	.nav-links {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;         /* appears below header */
		left: 0;
		width: 100vw;
		background: #fff;  /* clean dropdown */
		box-shadow: 0 2px 8px rgba(0,0,0,0.05);

		max-height: 0;
		overflow: hidden;
		opacity: 0;

		transition: max-height 0.3s ease, opacity 0.3s ease;
		z-index: 1002;
	}

	/* expanded nav */
	.nav-links.nav-active {
		max-height: 100vh;   /* full height, no cut */
		opacity: 1;
		box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	}

	nav ul.nav-links {
		margin: 0;
	}

	.dropdown-menu {
		position: static;
		box-shadow: none;
		border: none;
		min-width: 0;
		padding-left: 20px;
	}
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body, header, nav, ul, li, a {
	font-family: 'Inter', Arial, sans-serif;
}
header {
	background-color: #fff;
	color: #000;
	font-weight: bold;
	padding: 0;
	border-bottom: 1px solid #e0e0e0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

nav {
	display: flex;
	align-items: center;
	max-width: 1285px;
	margin: 0 auto;
	padding: 10px 20px;
	flex-wrap: wrap;
}

.nav-links {
	margin-left: auto;
	display: flex;
	align-items: center;
}
@media (max-width: 800px) {
	nav {
		flex-direction: column;
		align-items: flex-start;
		padding: 10px 10px;
	}
	nav img {
		height: 50px;
		margin-bottom: 10px;
	}
	nav ul {
		flex-direction: column;
		gap: 4px;
		margin: 0;
		width: 100%;
	}
	nav ul li {
		width: 100%;
	}
	nav ul li a, .dropdown-menu li a {
		width: 100%;
		text-align: left;
		font-size: 1rem;
		padding: 10px 12px;
	}
	.dropdown-menu {
		min-width: 100%;
		left: 0;
	}
}
@media (max-width: 500px) {
	header {
		border-radius: 0;
	}
	nav {
		padding: 6px 4px;
	}
	nav img {
		height: 36px;
		margin-bottom: 6px;
	}
	nav ul li a, .dropdown-menu li a {
		font-size: 0.95rem;
		padding: 8px 8px;
	}
}

nav img {
	height: 70px;
	margin-right: auto;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 8px;
	margin: 0 0 0 32px;
	padding: 0;
	position: relative;
}
/* Dropdown styles */
.dropdown {
	position: relative;
}
.dropdown-link {
	cursor: pointer;
	position: relative;
}
.dropdown-menu {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	background: #222;
	min-width: 180px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
	border-radius: 0.5rem;
	z-index: 100;
	padding: 0.7rem 0;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
	display: block;
}
.dropdown-menu li {
	margin: 0;
}
.dropdown-menu a {
	display: block;
	padding: 0.7rem 1.2rem;
	color: #fff;
	text-decoration: none;
	font-size: 0.98rem;
	transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
	background: #25d366;
	color: #181818;
}
nav ul li a {
	color: #686666;
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: bold;
	transition: color 0.2s, background 0.2s;
	padding: 6px 12px;
	border-radius: 4px;
}

nav ul li a:hover {
	background-color: #f5f5f5;
	color: #333;
}
.contact-cards-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 700px;
}
.contact-card {
  background: rgba(30, 30, 30, 0.85);
  color: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 2rem 2.2rem;
  width: 320px;
  height: 220px;
  min-width: 320px;
  max-width: 320px;
  min-height: 220px;
  max-height: 220px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 3;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}
.qr-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-top: 0.8rem;
}
.qr-image {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 0.6rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border: 1px solid rgba(37,211,102,0.18);
  display: block;
  margin: 0 auto;
}
.whatsapp-card {
  background: rgba(37, 211, 102, 0.13);
  color: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.10);
  padding: 2rem 2.2rem;
  width: 320px;
  height: 220px;
  min-width: 320px;
  max-width: 320px;
  min-height: 220px;
  max-height: 220px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 3;
  position: relative;
  border: 1px solid rgba(37,211,102,0.18);


}
@media (max-width: 700px) {
  .contact-cards-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    max-width: 100%;
  }

  .contact-card,
  .whatsapp-card {
    width: 100%;
    height: auto;           /* ✅ allow content to define height */
    min-height: unset;      /* ✅ remove rigid constraints */
    max-height: unset;
    padding: 1.2rem 1.4rem; /* ✅ reduce padding if needed */
  }

  .qr-image {
    width: 70px;
    height: 70px;
    margin-top: 0.4rem;
  }
}

/* Footer Styles */
.site-footer {
  background: #181818;
  color: #f5f5f5;
  padding: 5rem 0 2.5rem 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.1px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
  padding: 0 2rem;
}
.footer-col {
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 260px;
  margin-bottom: 2rem;
}
.brand-info {
  max-width: 260px;
}
.footer-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #fff;
  font-family: 'Playfair Display', serif;
}
.footer-subtext {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin-bottom: 0.3rem;
}
.footer-desc {
  font-size: 0.88rem;
  color: #bdbdbd;
  margin-bottom: 0.7rem;
}
.footer-col-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #fff;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #25d366;
}
.footer-newsletter-text {
  font-size: 0.92rem;
  color: #e0e0e0;
  margin-bottom: 0.7rem;
}
.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-input {
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  border: none;
  font-size: 0.92rem;
  background: #232323;
  color: #fff;
  outline: none;
  width: 170px;
}
.footer-submit {
  background: #25d366;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-submit:hover {
  background: #1da851;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.2rem 2rem 0 2rem;
  border-top: 1px solid #232323;
  font-size: 0.92rem;
}
.footer-copyright {
  color: #bdbdbd;
}
.footer-social {
  display: flex;
  gap: 1.2rem;
}
.footer-social-icon {
  color: #fff;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social-icon:hover {
  color: #25d366;
}
@media (max-width: 900px) {
  .footer-main {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .footer-col {
    min-width: 140px;
    max-width: 100%;
    margin-bottom: 1.2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 2rem 1rem 0 1rem;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding: 3rem 0 1.5rem 0;
  }
  .footer-bottom {
    padding: 1.5rem 0.5rem 0 0.5rem;
  }
}

/* Section title */
.section-title {
  text-align: center;
  font-size: 28px;
  margin: 40px 0 20px;
  color: #333;
  font-weight: bold;
}

/* Container for category cards */
.category-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

/* Individual category card */
.category-card {
		background: linear-gradient(45deg, #0e8581, #085839);
		border-radius: 20px;
		box-shadow: 0 1px 4px rgba(37,211,102,0.10);
		padding: 4px 16px;
			min-width: 120px;
			max-width: 180px;
		height: 32px;
		text-align: center;
		transition: transform 0.14s cubic-bezier(.4,2,.3,1), box-shadow 0.14s;
		cursor: pointer;
		border: none;
			display: inline-flex;
			align-items: center;
			justify-content: center;
				margin-bottom: 0;
				margin-top: 8px;
}

/* Hover effect */
.category-card:hover {
		transform: scale(1.08);
		box-shadow: 0 2px 8px rgba(37,211,102,0.18);
}

/* Category name text */
.category-name {
		font-size: 0.92rem;
		font-weight: 500;
		color: #fff;
		font-family: 'Inter', Arial, sans-serif;
		letter-spacing: 0.2px;
		margin-bottom: 0;
}

