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

html, body {
	width: 100%;
	overflow-x: hidden;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333 !important;
}

/* Đảm bảo các element không bị override màu */
h1, h2, h3, h4, h5, h6, p, span, div, li, ul, ol {
	color: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
}

.nav-link {
	margin-left: 30px;
	text-decoration: none;
	color: #2c3e50;
	font-weight: 500;
	font-size: 16px;
	transition: color 0.3s;
}

.nav-link:hover {
	color: #e74c3c;
}

.btn-primary:hover {
	background-color: #c0392b;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Header Styles */
.header.header_menu {
	z-index: 1000;
	width: 100%;
	height: 115px;
	box-shadow: 2px 3.464px 16px 0px rgba(0,0,0,0.3);
}

.mid-header {
	padding: 0px;
	height: 115px;
	position: relative;
	left: 0;
	top: 0;
	z-index: 998;
}

.mid-header .content_header {
	position: relative;
	height: 115px;
}

.logo {
	display: inline-block;
	margin-top: 0px;
}

.logo .logo-wrapper {
	height: 115px;
	line-height: 115px;
	display: block;
}

.logo .logo-wrapper img {
	max-width: none;
	max-height: none;
	display: inline-block;
	vertical-align: middle;
	background: transparent;
	object-fit: contain;
	/* Make white background transparent to blend with header */
	mix-blend-mode: multiply;
	/* Alternative: if multiply makes logo too dark, try screen or overlay */
	/* mix-blend-mode: screen; */
	/* mix-blend-mode: overlay; */
}

/* Text Logo Styling */
.logo-text {
	font-family: 'Cinzel', serif;
	font-size: 24px;
	font-weight: 600;
	color: #EA580C; /* warm primary */
	letter-spacing: 0.5px;
	text-decoration: none;
	display: inline-block;
	vertical-align: middle;
	transition: all 0.3s ease;
	line-height: 1.2;
}

.logo-wrapper {
	text-decoration: none;
	cursor: pointer;
}

.logo-wrapper:hover .logo-text {
	color: #C2410C; /* deeper warm on hover */
	transform: translateY(-1px);
}

@media (max-width: 991px) {
	.logo-text {
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	.logo-text {
		font-size: 18px;
		font-weight: 500;
	}
}

.header-nav {
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* Mobile nav toggle (hamburger) */
.mobile-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	cursor: pointer;
	margin-left: auto;
}

.mobile-nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: #0f172a;
	position: relative;
	transition: all 0.2s ease;
}

.mobile-nav-toggle span::before,
.mobile-nav-toggle span::after {
	content: '';
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: #0f172a;
	transition: all 0.2s ease;
}

.mobile-nav-toggle span::before {
	top: -6px;
}

.mobile-nav-toggle span::after {
	top: 6px;
}

.mobile-nav-toggle.open span {
	background: transparent;
}

.mobile-nav-toggle.open span::before {
	top: 0;
	transform: rotate(45deg);
}

.mobile-nav-toggle.open span::after {
	top: 0;
	transform: rotate(-45deg);
}

/* Mobile nav panel */
.mobile-nav-panel {
	display: none;
	position: fixed;
	top: 90px;
	left: 0;
	right: 0;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
	padding: 12px 18px 16px;
	z-index: 999;
}

.mobile-nav-panel.open {
	display: block;
}

.mobile-nav-panel .mobile-nav-links a {
	display: block;
	padding: 10px 4px;
	font-family: 'FontMuli', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #0f172a;
	border-radius: 8px;
}

.mobile-nav-panel .mobile-nav-links a:hover {
	background: #f8fafc;
	color: #ea580c;
}

.mobile-nav-panel .mobile-nav-divider {
	height: 1px;
	background: #e2e8f0;
	margin: 8px 0;
}

.mobile-nav-panel .mobile-auth-actions a {
	display: block;
	padding: 10px 10px;
	font-family: 'FontMuli', sans-serif;
	font-size: 14px;
	font-weight: 500;
	border-radius: 8px;
	text-align: center;
	margin-top: 6px;
}

.mobile-nav-panel .mobile-auth-primary {
	background: linear-gradient(135deg, #FFB88C 0%, #FF8E53 100%);
	color: #ffffff;
}

.mobile-nav-panel .mobile-auth-secondary {
	background: #f8fafc;
	color: #0f172a;
	border: 1px solid #e2e8f0;
}

.row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

ul {
	list-style: none;
}

ul.item_big {
	list-style: none;
}

ul.item_big li {
	list-style: none;
}

.header-nav > ul.item_big {
	text-align: right;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
}

.header-nav > ul.item_big > li.nav-item {
	display: inline-block;
	float: none;
	position: relative;
	margin-right: 0;
	margin-left: 0;
	border-top: solid 3px transparent;
	border-radius: 0px;
	padding: 0;
	height: 112px;
	list-style: none;
}

.header-nav > ul.item_big > li.nav-item > a {
	display: block;
	text-align: left;
	padding: 0;
	font-size: 17px;
	font-family: 'FontMuli', sans-serif;
	font-weight: 500;
	height: 112px;
	line-height: 112px;
	position: relative;
	text-decoration: none;
	color: #343e44;
}

.header-nav > ul.item_big > li.nav-item:hover {
	background: #fff;
	border-top-color: #FFB88C;
}

.header-nav > ul.item_big > li.nav-item:hover > a {
	color: #FF8E53;
	font-weight: 700;
}

.header-nav > ul.item_big > li.active {
	background: #fff;
	border-top-color: #FFB88C;
}

.header-nav > ul.item_big > li.active > a {
	color: #FF8E53;
	font-weight: 700;
}

.phonebar {
	display: inline-block;
}

.phonebar a {
	position: relative;
	display: block;
	padding: 0 30px 0 55px;
	background: linear-gradient(135deg, #FFB88C 0%, #FF8E53 100%);
	font-family: 'FontMuli', sans-serif;
	font-size: 17px;
	color: #fff;
	height: 40px;
	z-index: 1;
	line-height: 38px;
	border-radius: 10px;
	border: solid 1px transparent;
	text-decoration: none;
}

.phonebar a:hover {
	opacity: 0.9;
}

.option_top span {
	cursor: pointer;
	user-select: none;
	transition: background-color 0.3s;
}

.option_top span:hover {
	background-color: rgba(255,255,255,0.3);
}

.item_types {
	cursor: pointer;
	transition: opacity 0.3s, transform 0.3s;
}

.item_types:hover {
	opacity: 0.8;
	transform: translateY(-5px);
}

.item_types a {
	pointer-events: auto;
}

@media (max-width: 1199px) {
	.header-nav > ul.item_big > li.nav-item {
		margin-right: 10px;
	}
}

@media (max-width: 991px) {
	.header.header_menu {
		height: 90px;
	}
	
	.mid-header {
		height: 90px;
	}
	
	.mid-header .content_header {
		height: 90px;
	}
	
	.logo .logo-wrapper {
		height: 90px;
		line-height: 90px;
	}

	/* Center logo text on mobile */
	.logo_center {
		width: 100% !important;
		text-align: center !important;
		display: flex !important;
		justify-content: center !important;
		line-height: 90px !important;
	}

	.logo .logo-wrapper {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}

	/* Position hamburger at right edge */
	.col-xl-9.col-lg-9.col-md-4.col-0.col-sm-0 {
		position: relative;
		flex: 0 0 auto;
	}

	.mobile-nav-toggle {
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translateY(-50%);
		margin-right: 0;
	}
	
	/* Ẩn nav desktop, dùng mobile nav */
	.header-nav > ul.item_big {
		display: none;
	}

	/* Hiện nút hamburger trên mobile */
	.mobile-nav-toggle {
		display: flex;
	}

	/* Điều chỉnh auth section cho mobile */
	.header-auth-section {
		display: none !important; /* auth dùng trong panel mobile */
	}
}

/* Force hide desktop nav on very small screens just in case layout leaks */
@media (max-width: 768px) {
	.header-nav {
		display: none !important;
	}
}

/* Container và Section fixes */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}

.section, section {
	width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
}

.awe-section-1, .sectionslider {
	width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
}

.sectionslider {
	min-height: 600px !important;
	padding-bottom: 120px !important;
	overflow: visible !important;
	position: relative !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.home-slider {
	position: relative;
	width: 100%;
	overflow: visible !important;
	min-height: 600px !important;
}

.module_search_pro {
	position: absolute !important;
	top: 195px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: calc(100% - 40px) !important;
	max-width: 1200px !important;
	z-index: 9 !important;
	overflow: visible !important;
	pointer-events: auto !important;
}

.collections_link {
	width: 100% !important;
	overflow: visible !important;
	display: block !important;
	visibility: visible !important;
	position: relative !important;
	z-index: 30 !important;
	background: transparent !important;
	margin-top: -160px !important;
	padding-bottom: 10px !important;
}

.group_collection {
	display: flex !important;
	justify-content: space-around !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	width: 100% !important;
	padding: 0 !important;
	visibility: visible !important;
}

.item_types {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	cursor: pointer !important;
	margin: 0 !important;
	padding: 0 !important;
	width: calc(100% / 6) !important;
	min-width: 120px !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.item_types .icon {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	height: 60px !important;
	margin-bottom: 10px !important;
	width: 100% !important;
	visibility: visible !important;
}

.item_types .icon img {
	height: 60px !important;
	width: auto !important;
	cursor: pointer !important;
	display: block !important;
	margin: 0 auto !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.item_types h3 {
	font-family: 'FontMuli', sans-serif !important;
	font-size: 15px !important;
	color: #fff !important;
	font-weight: 400 !important;
	text-align: center !important;
	line-height: 24px !important;
	margin: 0 !important;
	margin-top: 10px !important;
	padding: 0 !important;
	width: 100% !important;
	visibility: visible !important;
}

.item_types h3 a {
	color: #fff !important;
	text-decoration: none !important;
	font-size: 15px !important;
	cursor: pointer !important;
	display: block !important;
	text-align: center !important;
	width: 100% !important;
	visibility: visible !important;
}

@media (max-width: 768px) {
	.container {
		padding: 10px;
	}
	
	.nav {
		display: none;
	}
	
	.hero-content h1 {
		font-size: 32px;
	}
	
	.properties-grid {
		display: block;
	}
	
	.row {
		flex-wrap: wrap;
	}
	
	.item_types {
		width: calc(50% - 10px) !important;
		margin-bottom: 20px;
	}
}

/* ============================================
   MODERN HERO SECTION & SEARCH MODULE
   ============================================ */

.hero-section {
	position: relative;
	width: 100%;
	min-height: 700px;
	overflow: hidden;
}

.hero-slider {
	position: relative;
	width: 100%;
	min-height: 700px;
}

.hero-image-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 184, 140, 0.85) 0%, rgba(255, 142, 83, 0.75) 100%);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	padding: 100px 20px 120px;
	color: #ffffff;
}

.hero-badge {
	margin-bottom: 25px;
	animation: fadeInUp 0.8s ease-out 0.1s both;
}

.badge-text {
	display: inline-block;
	padding: 10px 24px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	font-family: 'FontMuli', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	letter-spacing: 0.5px;
}

.hero-title {
	font-family: 'FontMuli', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 52px;
	font-weight: 900;
	line-height: 1.2;
	margin: 0 0 20px;
	text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
	animation: fadeInUp 0.8s ease-out 0.2s both;
	letter-spacing: -0.5px;
}

.hero-subtitle {
	font-family: 'FontMuli', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 22px;
	font-weight: 400;
	margin: 0 0 40px;
	opacity: 0.95;
	text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-top: 40px;
	margin-bottom: 0;
	padding-bottom: 0;
	animation: fadeInUp 0.8s ease-out 0.4s both;
	flex-wrap: wrap;
}

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

.stat-number {
	font-family: 'FontMuli', sans-serif;
	font-size: 36px;
	font-weight: 800;
	color: #ffffff;
	text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
	margin-bottom: 8px;
	line-height: 1;
}

.stat-label {
	font-family: 'FontMuli', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Search Module with Glassmorphism */
.search-module {
	position: relative;
	z-index: 4;
	margin-top: -80px;
	padding: 0 20px 40px;
}

.search-wrapper {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	padding: 30px;
	max-width: 1200px;
	margin: 0 auto;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Search Tabs */
.search-tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 25px;
	justify-content: center;
}

.search-tab {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 30px;
	border: none;
	border-radius: 12px;
	background: #f0f4f8;
	color: #64748b;
	font-family: 'FontMuli', sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.search-tab::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.search-tab:hover::before {
	left: 100%;
}

.search-tab:hover {
	background: #e2e8f0;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-tab.active {
	background: linear-gradient(135deg, #FFB88C 0%, #FF8E53 100%);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(255, 184, 140, 0.4);
}

.search-tab.active:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(63, 125, 246, 0.5);
}

.tab-icon {
	font-size: 18px;
}

.tab-text {
	font-weight: 600;
}

/* Search Form */
.search-form-container {
	width: 100%;
}

.search-form {
	width: 100%;
}

.search-row {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.search-field-wrapper {
	flex: 1;
	min-width: 200px;
}

.search-field-large {
	flex: 2;
	min-width: 300px;
}

.search-field-button {
	flex: 0 0 auto;
	min-width: 180px;
}

.field-label {
	display: block;
	font-family: 'FontMuli', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #475569;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.search-input,
.search-select {
	width: 100%;
	height: 56px;
	padding: 0 20px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-family: 'FontMuli', sans-serif;
	font-size: 15px;
	color: #1e293b;
	background: #ffffff;
	transition: all 0.3s ease;
}

.search-input:focus,
.search-select:focus {
	outline: none;
	border-color: #FFB88C;
	box-shadow: 0 0 0 4px rgba(255, 184, 140, 0.1);
}

.search-input::placeholder {
	color: #94a3b8;
}

.search-select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	padding-right: 50px;
}

.search-button {
	width: 100%;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(135deg, #FFB88C 0%, #FF8E53 100%);
	color: #ffffff;
	border: none;
	border-radius: 12px;
	font-family: 'FontMuli', sans-serif;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 184, 140, 0.3);
}

.search-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(255, 184, 140, 0.4);
	background: linear-gradient(135deg, #FF8E53 0%, #FF7A3D 100%);
}

.search-button:active {
	transform: translateY(0);
}

.button-icon {
	font-size: 18px;
}

.button-text {
	font-weight: 600;
}

/* Advanced Search */
.advanced-search-toggle {
	margin-top: 15px;
	text-align: center;
}

.toggle-advanced {
	background: none;
	border: none;
	color: #FF8E53;
	font-family: 'FontMuli', sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 auto;
	padding: 8px 16px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.toggle-advanced:hover {
	background: #FFF8E7;
	color: #D2691E;
}

.toggle-icon {
	transition: transform 0.3s ease;
	font-size: 12px;
}

.toggle-advanced.active .toggle-icon {
	transform: rotate(180deg);
}

.advanced-search-fields {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 2px solid #f1f5f9;
	animation: slideDown 0.3s ease-out;
}

/* Collections Section */
.collections-section {
	position: relative;
	z-index: 4;
	margin-top: 60px;
	padding: 0 20px 60px;
	background: linear-gradient(to bottom, rgba(255, 248, 231, 0.3), rgba(255, 229, 180, 0.2));
	border-radius: 30px 30px 0 0;
}

.collections-header {
	text-align: center;
	margin-bottom: 40px;
}

.collections-title {
	font-family: 'FontMuli', sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: #8B4513;
	margin: 0 0 10px;
	text-shadow: 2px 4px 8px rgba(255, 255, 255, 0.5);
}

.collections-subtitle {
	font-family: 'FontMuli', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #8B4513;
	opacity: 0.8;
	margin: 0;
	text-shadow: 1px 2px 4px rgba(255, 255, 255, 0.3);
}

.collections-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 25px;
	max-width: 1200px;
	margin: 0 auto;
}

.collection-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 32px 24px;
	/* Claymorphism with warm colors */
	background: linear-gradient(135deg, #FFF8E7 0%, #FFE5B4 100%);
	border-radius: 20px;
	transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
	cursor: pointer;
	text-decoration: none;
	/* Double shadows for claymorphism */
	box-shadow: 
		inset -2px -2px 8px rgba(255, 255, 255, 0.8),
		inset 2px 2px 8px rgba(255, 180, 140, 0.3),
		4px 4px 12px rgba(255, 180, 140, 0.2);
	border: 3px solid rgba(255, 214, 204, 0.6);
	position: relative;
	overflow: visible;
}

.collection-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 214, 204, 0.4) 0%, rgba(255, 180, 140, 0.3) 100%);
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 0;
	border-radius: 20px;
}

.collection-item:hover {
	transform: translateY(-6px) scale(1.02);
	/* Enhanced claymorphism shadow on hover */
	box-shadow: 
		inset -3px -3px 10px rgba(255, 255, 255, 0.9),
		inset 3px 3px 10px rgba(255, 180, 140, 0.4),
		8px 8px 20px rgba(255, 180, 140, 0.3);
	background: linear-gradient(135deg, #FFE5B4 0%, #FFD6CC 100%);
	border-color: rgba(255, 180, 140, 0.8);
}

.collection-item:hover::before {
	opacity: 1;
}

.collection-item:active {
	transform: translateY(-2px) scale(0.98);
	box-shadow: 
		inset -1px -1px 6px rgba(255, 255, 255, 0.7),
		inset 1px 1px 6px rgba(255, 180, 140, 0.2),
		2px 2px 8px rgba(255, 180, 140, 0.15);
}

.collection-icon-wrapper {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.collection-icon-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Use the hover style as default for better visibility */
	background: linear-gradient(135deg, rgba(255, 140, 100, 0.6) 0%, rgba(255, 107, 107, 0.55) 100%);
	border-radius: 18px;
	opacity: 1;
	transition: all 0.2s ease;
	box-shadow: 
		inset -3px -3px 8px rgba(255, 255, 255, 0.6),
		inset 3px 3px 8px rgba(210, 105, 30, 0.5),
		0 4px 12px rgba(139, 69, 19, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.6);
}

.collection-item:hover .collection-icon-bg {
	opacity: 1;
	transform: scale(1.05);
	/* Keep same style, just add animation */
	background: linear-gradient(135deg, rgba(255, 140, 100, 0.6) 0%, rgba(255, 107, 107, 0.55) 100%);
	box-shadow: 
		inset -3px -3px 8px rgba(255, 255, 255, 0.6),
		inset 3px 3px 8px rgba(210, 105, 30, 0.5),
		0 4px 12px rgba(139, 69, 19, 0.3);
	border-color: rgba(255, 255, 255, 0.6);
}

.collection-icon {
	width: 64px;
	height: 64px;
	object-fit: contain;
	/* Use hover style as default for better visibility */
	filter: brightness(0.8) contrast(1.6) saturate(1.3) drop-shadow(0 3px 6px rgba(139, 69, 19, 0.5));
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
	padding: 8px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(4px);
	-webkit-filter: brightness(0.8) contrast(1.6) saturate(1.3) drop-shadow(0 3px 6px rgba(139, 69, 19, 0.5));
}

.collection-item:hover .collection-icon {
	transform: scale(1.08);
	/* Keep same style, just add animation */
	filter: brightness(0.8) contrast(1.6) saturate(1.3) drop-shadow(0 3px 6px rgba(139, 69, 19, 0.5));
	background: rgba(255, 255, 255, 0.4);
	border-color: rgba(255, 255, 255, 0.7);
	-webkit-filter: brightness(0.8) contrast(1.6) saturate(1.3) drop-shadow(0 3px 6px rgba(139, 69, 19, 0.5));
}

.collection-title {
	font-family: 'FontMuli', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #8B4513;
	margin: 0;
	transition: all 0.2s ease;
	position: relative;
	z-index: 1;
	letter-spacing: -0.2px;
	line-height: 1.4;
}

.collection-item:hover .collection-title {
	color: #D2691E;
}

/* ============================================
   ENHANCED PROPERTY CARDS
   ============================================ */

.section_bds_choban {
	position: relative;
	padding: 80px 0;
	background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.section_bds_choban .title {
	margin-bottom: 60px;
}

.section_bds_choban .title h2 {
	font-family: 'FontMuli', sans-serif;
	font-size: 36px;
	font-weight: 800;
	color: #8B4513;
	text-align: center;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
	width: 100%;
}

.section_bds_choban .title h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #FFB88C, #FF8E53);
	border-radius: 2px;
}

.contentpr {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
	padding: 0;
}

.item_product_main {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	position: relative;
}

.item_product_main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 184, 140, 0.05) 0%, rgba(255, 214, 204, 0.02) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
	pointer-events: none;
}

.item_product_main:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(255, 184, 140, 0.15);
}

.item_product_main:hover::before {
	opacity: 1;
}

.product-thumbnail {
	position: relative;
	width: 100%;
	height: 260px;
	overflow: hidden;
	background: #f1f5f9;
}

.image_thumb {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.image_thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.item_product_main:hover .image_thumb img {
	transform: scale(1.1);
}

.product-thumbnail .lb {
	position: absolute;
	z-index: 6;
	padding: 6px 14px;
	border-radius: 8px;
	font-family: 'FontMuli', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
}

.product-thumbnail .lb.hot {
	background: linear-gradient(135deg, #ff4a26 0%, #ff6b4a 100%);
	color: #ffffff;
	right: 15px;
	top: 15px;
}

.product-thumbnail .lb.ban {
	background: linear-gradient(135deg, #FFB88C 0%, #FF8E53 100%);
	color: #ffffff;
	left: 15px;
	top: 15px;
}

.product-thumbnail .lb.thue {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	left: 15px;
	top: 15px;
}

.product-info {
	padding: 25px;
	position: relative;
	z-index: 2;
}

.product-info h3 {
	font-family: 'FontMuli', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 20px;
	line-height: 1.4;
	min-height: 50px;
}

.product-info h3 a {
	color: #1e293b;
	text-decoration: none;
	transition: color 0.3s ease;
}

.product-info h3 a:hover {
	color: #FF8E53;
}

.product-info .profile {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.product-info .profile li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	font-family: 'FontMuli', sans-serif;
	font-size: 14px;
	color: #64748b;
	border-bottom: 1px solid #f1f5f9;
}

.product-info .profile li:last-child {
	border-bottom: none;
}

.product-info .profile li span:first-child {
	font-size: 16px;
	width: 24px;
	text-align: center;
}

.price_button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	border-top: 2px solid #f1f5f9;
	gap: 15px;
}

.price-box {
	flex: 1;
}

.price-box span {
	font-family: 'FontMuli', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #FF8E53;
	display: block;
}

.btn-views {
	padding: 12px 24px;
	background: linear-gradient(135deg, #FFB88C 0%, #FF8E53 100%);
	color: #ffffff;
	border: none;
	border-radius: 10px;
	font-family: 'FontMuli', sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(255, 184, 140, 0.2);
}

.btn-views:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 184, 140, 0.3);
	background: linear-gradient(135deg, #FF8E53 0%, #FF7A3D 100%);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		max-height: 0;
	}
	to {
		opacity: 1;
		max-height: 500px;
	}
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
	.hero-title {
		font-size: 40px;
	}
	
	.hero-subtitle {
		font-size: 18px;
	}
	
	.search-row {
		flex-direction: column;
	}
	
	.search-field-wrapper,
	.search-field-large,
	.search-field-button {
		width: 100%;
		min-width: 100%;
	}
	
	.collections-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 20px;
	}
	
	.contentpr {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.hero-section {
		min-height: 600px;
	}
	
	.hero-slider {
		min-height: 600px;
	}
	
	.hero-content {
		padding: 80px 20px 100px;
	}
	
	.hero-badge {
		margin-bottom: 20px;
	}
	
	.badge-text {
		font-size: 12px;
		padding: 8px 20px;
	}
	
	.hero-title {
		font-size: 32px;
	}
	
	.hero-subtitle {
		font-size: 16px;
		margin-bottom: 30px;
	}
	
	.hero-stats {
		gap: 30px;
		margin-top: 30px;
		margin-bottom: 0;
	}
	
	.stat-number {
		font-size: 28px;
	}
	
	.stat-label {
		font-size: 12px;
	}
	
	.search-module {
		margin-top: -60px;
		padding: 0 15px 30px;
	}
	
	.search-wrapper {
		padding: 20px;
		border-radius: 16px;
	}
	
	.search-tabs {
		flex-direction: column;
		gap: 8px;
	}
	
	.search-tab {
		width: 100%;
		justify-content: center;
	}
	
	.collections-title {
		font-size: 24px;
	}
	
	.collections-subtitle {
		font-size: 14px;
	}
	
	.collections-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
	
	.collection-item {
		padding: 24px 16px;
	}
	
	.collection-icon-wrapper {
		width: 70px;
		height: 70px;
		margin-bottom: 14px;
	}
	
	.collection-icon-bg {
		border-radius: 14px;
	}
	
	.collection-icon {
		width: 56px;
		height: 56px;
	}
	
	.collection-title {
		font-size: 13px;
	}
	
	.section_bds_choban {
		padding: 60px 0;
	}
	
	.section_bds_choban .title h2 {
		font-size: 28px;
	}
	
	.contentpr {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.price_button {
		flex-direction: column;
		align-items: stretch;
	}
	
	.btn-views {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 26px;
	}
	
	.hero-subtitle {
		font-size: 14px;
		margin-bottom: 25px;
	}
	
	.hero-stats {
		gap: 20px;
		margin-top: 25px;
	}
	
	.stat-number {
		font-size: 24px;
	}
	
	.stat-label {
		font-size: 11px;
	}
	
	.search-wrapper {
		padding: 15px;
	}
	
	.search-input,
	.search-select,
	.search-button {
		height: 50px;
		font-size: 14px;
	}
	
	.collections-title {
		font-size: 20px;
	}
	
	.collections-subtitle {
		font-size: 13px;
	}
	
	.collections-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.collection-item {
		padding: 20px 12px;
	}
	
	.collection-icon-wrapper {
		width: 64px;
		height: 64px;
		margin-bottom: 12px;
	}
	
	.collection-icon-bg {
		border-radius: 12px;
	}
	
	.collection-icon {
		width: 48px;
		height: 48px;
	}
	
	.collection-title {
		font-size: 13px;
	}
}

/* ============================================
   CLAYMORPHISM SECTIONS WITH WARM COLORS
   ============================================ */

/* Section Header Styles */
.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-title {
	font-family: 'FontMuli', sans-serif;
	font-size: 36px;
	font-weight: 800;
	color: #8B4513;
	margin: 0 0 15px;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #FFB88C, #FFD6CC);
	border-radius: 2px;
}

.section-subtitle {
	font-family: 'FontMuli', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #8B4513;
	margin: 20px 0 0;
	opacity: 0.8;
}

/* Services Section */
.services-section {
	padding: 80px 0;
	background: linear-gradient(to bottom, #FFF8E7 0%, #FFE5B4 50%, #FFF8E7 100%);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	background: linear-gradient(135deg, #FFF8E7 0%, #FFE5B4 100%);
	border-radius: 24px;
	padding: 40px 30px;
	text-align: center;
	position: relative;
	transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
	/* Claymorphism shadows */
	box-shadow: 
		inset -3px -3px 10px rgba(255, 255, 255, 0.8),
		inset 3px 3px 10px rgba(255, 180, 140, 0.3),
		6px 6px 20px rgba(255, 180, 140, 0.2);
	border: 4px solid rgba(255, 214, 204, 0.6);
}

.service-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		inset -4px -4px 12px rgba(255, 255, 255, 0.9),
		inset 4px 4px 12px rgba(255, 180, 140, 0.4),
		12px 12px 30px rgba(255, 180, 140, 0.3);
	background: linear-gradient(135deg, #FFE5B4 0%, #FFD6CC 100%);
	border-color: rgba(255, 180, 140, 0.8);
}

.service-card.featured {
	background: linear-gradient(135deg, #FFD6CC 0%, #FFB88C 100%);
	border-color: rgba(255, 140, 100, 0.8);
}

.service-badge {
	position: absolute;
	top: -15px;
	right: 20px;
	background: linear-gradient(135deg, #FF6B6B, #FF8E53);
	color: #ffffff;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.service-icon {
	font-size: 64px;
	margin-bottom: 20px;
	display: block;
}

.service-name {
	font-family: 'FontMuli', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #8B4513;
	margin: 0 0 20px;
}

.service-price {
	margin-bottom: 30px;
}

.price-amount {
	font-family: 'FontMuli', sans-serif;
	font-size: 36px;
	font-weight: 800;
	color: #D2691E;
	display: block;
}

.price-period {
	font-family: 'FontMuli', sans-serif;
	font-size: 16px;
	color: #8B4513;
	opacity: 0.7;
}

.service-features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
	text-align: left;
}

.service-features li {
	font-family: 'FontMuli', sans-serif;
	font-size: 15px;
	color: #8B4513;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 180, 140, 0.3);
}

.service-features li:last-child {
	border-bottom: none;
}

.service-button {
	width: 100%;
	padding: 16px 32px;
	background: linear-gradient(135deg, #FFB88C 0%, #FF8E53 100%);
	color: #ffffff;
	border: none;
	border-radius: 16px;
	font-family: 'FontMuli', sans-serif;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 
		inset -2px -2px 6px rgba(255, 255, 255, 0.3),
		inset 2px 2px 6px rgba(0, 0, 0, 0.1),
		0 4px 12px rgba(255, 180, 140, 0.3);
}

.service-button:hover {
	transform: translateY(-2px);
	box-shadow: 
		inset -2px -2px 6px rgba(255, 255, 255, 0.4),
		inset 2px 2px 6px rgba(0, 0, 0, 0.15),
		0 6px 20px rgba(255, 180, 140, 0.4);
}

.service-button:active {
	transform: translateY(0);
}

/* Gallery Section */
.gallery-section {
	padding: 80px 0;
	background: linear-gradient(to bottom, #FFE5B4 0%, #FFD6CC 50%, #FFE5B4 100%);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.gallery-item {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
	/* Claymorphism */
	box-shadow: 
		inset -2px -2px 8px rgba(255, 255, 255, 0.6),
		inset 2px 2px 8px rgba(255, 180, 140, 0.2),
		6px 6px 20px rgba(255, 180, 140, 0.25);
	border: 3px solid rgba(255, 214, 204, 0.5);
}

.gallery-item:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		inset -3px -3px 10px rgba(255, 255, 255, 0.7),
		inset 3px 3px 10px rgba(255, 180, 140, 0.3),
		12px 12px 30px rgba(255, 180, 140, 0.35);
	border-color: rgba(255, 180, 140, 0.7);
}

.gallery-image-wrapper {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(139, 69, 19, 0.9), transparent);
	padding: 30px 20px 20px;
	color: #ffffff;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
}

.gallery-title {
	font-family: 'FontMuli', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 8px;
}

.gallery-location {
	font-family: 'FontMuli', sans-serif;
	font-size: 14px;
	opacity: 0.9;
	margin: 0;
}

/* Booking Section */
.booking-section {
	padding: 80px 0;
	background: linear-gradient(to bottom, #FFD6CC 0%, #FFB88C 50%, #FFD6CC 100%);
}

.booking-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.booking-content {
	background: linear-gradient(135deg, #FFF8E7 0%, #FFE5B4 100%);
	border-radius: 24px;
	padding: 50px 40px;
	/* Claymorphism */
	box-shadow: 
		inset -4px -4px 12px rgba(255, 255, 255, 0.8),
		inset 4px 4px 12px rgba(255, 180, 140, 0.3),
		8px 8px 30px rgba(255, 180, 140, 0.25);
	border: 4px solid rgba(255, 214, 204, 0.6);
}

.booking-title {
	font-family: 'FontMuli', sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: #8B4513;
	margin: 0 0 15px;
	text-align: center;
}

.booking-subtitle {
	font-family: 'FontMuli', sans-serif;
	font-size: 16px;
	color: #8B4513;
	opacity: 0.8;
	text-align: center;
	margin: 0 0 40px;
}

.booking-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

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

.form-group label {
	font-family: 'FontMuli', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #8B4513;
	margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 14px 18px;
	border: 3px solid rgba(255, 214, 204, 0.6);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.8);
	font-family: 'FontMuli', sans-serif;
	font-size: 15px;
	color: #8B4513;
	transition: all 0.2s ease;
	/* Claymorphism input */
	box-shadow: 
		inset -2px -2px 6px rgba(255, 255, 255, 0.8),
		inset 2px 2px 6px rgba(255, 180, 140, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: rgba(255, 180, 140, 0.8);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 
		inset -2px -2px 6px rgba(255, 255, 255, 0.9),
		inset 2px 2px 6px rgba(255, 180, 140, 0.3),
		0 0 0 4px rgba(255, 180, 140, 0.1);
}

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

.booking-submit {
	padding: 18px 40px;
	background: linear-gradient(135deg, #FFB88C 0%, #FF8E53 100%);
	color: #ffffff;
	border: none;
	border-radius: 16px;
	font-family: 'FontMuli', sans-serif;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-top: 10px;
	box-shadow: 
		inset -2px -2px 6px rgba(255, 255, 255, 0.3),
		inset 2px 2px 6px rgba(0, 0, 0, 0.1),
		0 4px 12px rgba(255, 180, 140, 0.3);
}

.booking-submit:hover {
	transform: translateY(-2px);
	box-shadow: 
		inset -2px -2px 6px rgba(255, 255, 255, 0.4),
		inset 2px 2px 6px rgba(0, 0, 0, 0.15),
		0 6px 20px rgba(255, 180, 140, 0.4);
}

.booking-submit:active {
	transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
	padding: 80px 0;
	background: linear-gradient(to bottom, #FFE5B4 0%, #FFF8E7 50%, #FFE5B4 100%);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.testimonial-card {
	background: linear-gradient(135deg, #FFF8E7 0%, #FFE5B4 100%);
	border-radius: 20px;
	padding: 35px 30px;
	/* Claymorphism */
	box-shadow: 
		inset -3px -3px 10px rgba(255, 255, 255, 0.8),
		inset 3px 3px 10px rgba(255, 180, 140, 0.3),
		6px 6px 20px rgba(255, 180, 140, 0.2);
	border: 3px solid rgba(255, 214, 204, 0.6);
	transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 
		inset -4px -4px 12px rgba(255, 255, 255, 0.9),
		inset 4px 4px 12px rgba(255, 180, 140, 0.4),
		10px 10px 30px rgba(255, 180, 140, 0.3);
	border-color: rgba(255, 180, 140, 0.8);
}

.testimonial-rating {
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
}

.testimonial-text {
	font-family: 'FontMuli', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #8B4513;
	margin: 0 0 25px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #FFD6CC 0%, #FFB88C 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 
		inset -2px -2px 6px rgba(255, 255, 255, 0.6),
		inset 2px 2px 6px rgba(255, 180, 140, 0.3);
}

.author-info {
	flex: 1;
}

.author-name {
	font-family: 'FontMuli', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #8B4513;
	margin-bottom: 4px;
}

.author-role {
	font-family: 'FontMuli', sans-serif;
	font-size: 14px;
	color: #8B4513;
	opacity: 0.7;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
	.section-title {
		font-size: 28px;
	}
	
	.section-subtitle {
		font-size: 16px;
	}
	
	.services-grid,
	.gallery-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.service-card,
	.booking-content {
		padding: 30px 20px;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.gallery-image-wrapper {
		height: 250px;
	}
}

/* Header Auth Buttons Styling */
.auth-dropdown {
    position: relative;
}

.auth-dropdown-btn {
    position: relative;
}

.auth-dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.auth-dropdown-menu.show ~ .auth-dropdown-btn #dropdown-arrow,
.auth-dropdown-btn:has(+ .auth-dropdown-menu.show) #dropdown-arrow {
    transform: rotate(180deg);
}

/* User Profile Dropdown Styling */
.user-profile-dropdown {
    position: relative;
}

.user-profile-btn {
    position: relative;
}

.user-profile-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.user-name-display {
    display: inline-block;
}

/* Close dropdown when clicking outside */
@media (max-width: 768px) {
    .header-auth-section {
        flex-wrap: wrap;
        gap: 8px !important;
        margin-left: 10px !important;
    }
    
    .auth-dropdown-btn {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
    
    .user-profile-btn {
        padding: 4px 8px !important;
    }
    
    .user-name-display {
        display: none;
    }
    
    .auth-dropdown-menu,
    .user-profile-menu {
        right: 0 !important;
        left: auto !important;
        min-width: 200px !important;
    }
    
    .user-profile-menu {
        top: calc(100% + 4px) !important;
    }
}

