:root {
	--primary-color: #2C3E50;
	--secondary-color: #D4AF37;
	--accent-color: #5D6D7E;
	--light-bg: #F8F9FA;
	--dark-bg: #1A252F;
}

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

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--primary-color);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
}

.parsley-errors-list {
	list-style: none;
	font-size: 14px;
	padding: 0;
	color: orangered;
}

.overlay {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.4);
	width: 100%;
	height: 100%;
	z-index: 12;
}

/* Minimal Navigation */
.navbar-minimal {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 1.5rem 0;
	transition: all 0.3s ease;
	box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar-minimal.scrolled {
	padding: 1rem 0;
	box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.navbar-brand {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--primary-color) !important;
	letter-spacing: 1px;
}

.nav-link {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--primary-color) !important;
	margin: 0 1rem;
	position: relative;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	text-transform: capitalize;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--secondary-color);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.btn-book-now {
	background: var(--secondary-color);
	color: white;
	border: none;
	padding: 0.7rem 2rem;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.btn-book-now:hover {
	background: #C5A028;
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Hero Section - Full Screen */
.hero-minimal {
	height: 100vh;
	background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('../images/banner_pic1.jpg') center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
}

.hero-content h1 {
	font-size: 5rem;
	font-weight: 300;
	letter-spacing: 3px;
	margin-top: 120px;
	margin-bottom: 1.5rem;
	animation: fadeInUp 1s ease;
}

.hero-content p {
	font-size: 1.3rem;
	font-weight: 300;
	letter-spacing: 2px;
	margin-bottom: 0;
	animation: fadeInUp 1.2s ease;
}

.hero-scroll {
	position: absolute;
	bottom: 3rem;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
}

.hero-scroll i {
	font-size: 2rem;
	color: white;
}

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

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* Page title */
.page_title {
	background: url("../images/page_title.jpg") no-repeat center top;
	background-size: cover;
	position: relative;
	color: #f3f3f3;
}

.page_title .container {
	position: relative;
	z-index: 13;
}

.page_title .row {
	padding-top: 120px;
}

.breadcrumb {
	background-color: transparent;
	padding: 0;
}

.breadcrumb-item a {
	text-decoration: none;
	color: #ddd
}

.breadcrumb-item a:hover {
	text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: '\f054';
	font-family: 'FontAwesome';
	font-weight: 300;
	font-size: 10px;
	line-height: 26px;
	color: #f3f3f3
}

.breadcrumb-item.active {
	color: #f3f3f3;
}

/* Room Cards */
.rooms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-bottom: 4rem;
}

.room-card {
	background: white;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	overflow: hidden;
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
}

.room-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.room-image-wrapper {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.room-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease;
}

.room-card:hover .room-image {
	transform: scale(1.1);
}

.room-price-badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: var(--secondary-color);
	color: white;
	padding: 0.8rem 1.5rem;
	font-size: 1.3rem;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.room-content {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.room-title {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

.room-features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
	flex: 1;
}

.room-features li {
	padding: 0.6rem 0;
	color: var(--accent-color);
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.room-features li i {
	color: var(--secondary-color);
	font-size: 1.1rem;
	width: 20px;
}

.room-footer {
	padding-top: 1.5rem;
	border-top: 1px solid var(--light-bg);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.facilities-label {
	font-size: 0.85rem;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-more-info {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 0.8rem 2rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.btn-more-info:hover {
	background: var(--secondary-color);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Section Styling */
.section-minimal {
	padding: 8rem 0;
}

.section-title {
	text-align: center;
	margin-bottom: 5rem;
}

.section-title h2 {
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.section-title h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background: var(--secondary-color);
}

.section-title p {
	color: var(--accent-color);
	font-size: 1.1rem;
	font-weight: 300;
	margin-top: 2rem;
}

/* Experience Cards */
.experience-card {
	text-align: center;
	padding: 3rem 2rem;
	transition: all 0.4s ease;
	cursor: pointer;
}

.experience-card:hover {
	transform: translateY(-10px);
}

.experience-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
	background: var(--light-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--secondary-color);
	transition: all 0.4s ease;
}

.experience-card:hover .experience-icon {
	background: var(--secondary-color);
	color: white;
	transform: rotate(360deg);
}

.experience-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 500;
}

.experience-card p {
	color: var(--accent-color);
	font-weight: 300;
	line-height: 1.8;
}

/* Rooms Section */
.room-card-minimal {
	position: relative;
	overflow: hidden;
	margin-bottom: 2rem;
	border-radius: 0;
	border: none;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	transition: all 0.4s ease;
}

.room-card-minimal:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.room-image-wrapper {
	position: relative;
	overflow: hidden;
	height: 400px;
}

.col-sm-4 .room-image-wrapper {
	height: 300px;
}

.room-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease;
}

.room-card-minimal:hover .room-image-wrapper img {
	transform: scale(1.05);
}

.room-card-minimal .room-title {
	color: var(--light-bg);
}

.room-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
	display: flex;
	align-items: flex-end;
	padding: 2rem;
	color: white;
}

.room-info {
	width: 100%;
}

.room-title {
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.room-price {
	font-size: 1.3rem;
	color: var(--secondary-color);
	font-weight: 600;
}

.room-price span {
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(255,255,255,0.8);
}

.room-details {
	padding: 2rem;
}

.room-features {
	display: flex;
	gap: 2rem;
	margin-bottom: 1.5rem;
	color: var(--accent-color);
}

.room-features span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Parallax Section */
.parallax-section {
	height: 60vh;
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1600') center/cover fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.parallax-content h2 {
	font-size: 3.5rem;
	font-weight: 300;
	margin-bottom: 2rem;
}

.parallax-content p {
	font-size: 1.3rem;
	font-weight: 300;
	max-width: 800px;
	margin: 0 auto 3rem;
	line-height: 2;
}

/* Amenities Grid */
.amenity-item {
	text-align: center;
	padding: 2rem;
	transition: all 0.3s ease;
}

.amenity-item i {
	font-size: 3rem;
	color: var(--secondary-color);
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.amenity-item:hover i {
	transform: scale(1.1);
}

.amenity-item h4 {
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--primary-color);
}

.hero-content h1 {
	font-size: 4.5rem;
	font-weight: 300;
	letter-spacing: 3px;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
}

.hero-content p {
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: 2px;
	max-width: 700px;
	margin: 0 auto;
	animation: fadeInUp 1.2s ease;
}

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

/* Section Styling */
.section-minimal {
	padding: 5rem 0;
}

.section-title {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title h2 {
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.section-title h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background: var(--secondary-color);
}

.section-title p {
	color: var(--accent-color);
	font-size: 1.1rem;
	font-weight: 300;
	margin-top: 2rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.9;
}

/* Gallery Section */
.gallery-section {
	margin-bottom: 4rem;
}

.main-gallery {
	position: relative;
	margin-bottom: 1rem;
}

.main-image {
	width: 100%;
	height: 600px;
	object-fit: cover;
	cursor: pointer;
}

.gallery-overlay-btn {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	padding: 1rem 2rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.gallery-overlay-btn:hover {
	background: white;
	transform: translateY(-2px);
}

.thumbnail-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.thumbnail-item {
	height: 140px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.thumbnail-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s ease;
}

.thumbnail-item:hover img {
	transform: scale(1.1);
}

.thumbnail-item.active::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 3px solid var(--secondary-color);
}

/* Room Header */
.room-header {
	margin-bottom: 3rem;
}

.room-title {
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.room-subtitle {
	font-size: 1.2rem;
	color: var(--accent-color);
	font-weight: 300;
	margin-bottom: 2rem;
}

.room-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	padding: 2rem;
	background: var(--light-bg);
	border-left: 4px solid var(--secondary-color);
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.meta-icon {
	width: 45px;
	height: 45px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary-color);
	font-size: 1.3rem;
}

.meta-content h4 {
	font-size: 0.85rem;
	color: var(--accent-color);
	margin: 0;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.meta-content p {
	font-size: 1.1rem;
	margin: 0;
	font-weight: 600;
	color: var(--primary-color);
}

/* Content Section */
.room-description {
	margin-bottom: 4rem;
}

.section-heading {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 1rem;
}

.section-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--secondary-color);
}

.description-text {
	font-size: 1.05rem;
	line-height: 2;
	color: var(--accent-color);
	font-weight: 300;
}

/* Features Section */
.features-section {
	background: var(--light-bg);
	padding: 3rem;
	margin-bottom: 4rem;
}

.features-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.feature-item i {
	color: var(--secondary-color);
	font-size: 1.2rem;
}

.feature-item span {
	font-size: 0.95rem;
	color: var(--primary-color);
}

/* Room Policies */
.policies-section {
	margin-bottom: 4rem;
}

.policy-card {
	background: white;
	padding: 2rem;
	border: 1px solid #e0e0e0;
	margin-bottom: 1.5rem;
}

.policy-card h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.policy-card h4 i {
	color: var(--secondary-color);
}

.policy-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.policy-card li {
	padding: 0.5rem 0;
	color: var(--accent-color);
	font-size: 0.95rem;
}

.policy-card li i {
	color: var(--secondary-color);
	margin-right: 0.5rem;
}

/* Booking Sidebar */
.booking-sidebar {
	position: sticky;
	top: 100px;
}

.booking-card {
	background: white;
	border: 2px solid var(--secondary-color);
	padding: 2.5rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.price-section {
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e0e0e0;
}

.price-label {
	font-size: 0.9rem;
	color: var(--accent-color);
	margin-bottom: 0.5rem;
}

.price-amount {
	font-size: 3rem;
	font-weight: 600;
	color: var(--primary-color);
	font-family: 'Playfair Display', serif;
}

.price-amount span {
	font-size: 1rem;
	color: var(--accent-color);
	font-weight: 400;
}

.booking-form .form-label {
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.booking-form .form-control,
.booking-form .form-select {
	padding: 0.9rem;
	border: 1px solid #ddd;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.booking-summary {
	background: var(--light-bg);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.summary-row:last-child {
	margin-bottom: 0;
	padding-top: 1rem;
	border-top: 1px solid #ddd;
	font-weight: 600;
	font-size: 1.1rem;
}

.btn-reserve {
	width: 100%;
	padding: 1.2rem;
	background: var(--secondary-color);
	color: white;
	border: none;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.btn-reserve:hover {
	background: #C5A028;
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.booking-note {
	text-align: center;
	margin-top: 1.5rem;
	font-size: 0.85rem;
	color: var(--accent-color);
}

.booking-note i {
	color: var(--secondary-color);
	margin-right: 0.3rem;
}

/* Custom Bootstrap 5 styling for datepicker */
.datepicker {
	padding: 10px;
	border-radius: 0.5rem;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	border: 1px solid #dee2e6;
}

.day {
	padding: 10px;
}

.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
	background: #e9ecef;
	cursor: pointer;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.highlighted {
	background-color: #0d6efd;
	color: #fff;
	border-radius: 0.25rem;
}

.datepicker table tr td.today,
.datepicker table tr td.today:hover {
	background-color: #ffc107;
	color: #000;
	border-radius: 0.25rem;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
	background: #f8f9fa;
	color: #adb5bd;
	cursor: not-allowed;
}

.datepicker table tr td.range,
.datepicker table tr td.range:hover {
	background-color: #e7f1ff;
}

.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
	cursor: pointer;
}

.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
	background: #e9ecef;
}

/* Input styling */
.date-input-group .form-control {
	border-right: none;
}

.date-input-group .input-group-text {
	background-color: #fff;
	border-left: none;
}

.date-input-group .form-control:focus {
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
	border-color: #86b7fe;
}

.date-input-group .form-control:focus + .input-group-text {
	border-color: #86b7fe;
}

/* Story Section */
.story-section {
	background: white;
}

.story-content {
	display: flex;
	align-items: center;
	gap: 4rem;
	margin-bottom: 4rem;
}

.story-content:nth-child(even) {
	flex-direction: row-reverse;
}

.story-image {
	flex: 1;
	position: relative;
	overflow: hidden;
}

.story-image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	transition: all 0.6s ease;
}

.story-image:hover img {
	transform: scale(1.05);
}

.story-text {
	flex: 1;
	padding: 2rem;
}

.story-text h3 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 2rem;
	color: var(--primary-color);
}

.story-text p {
	font-size: 1.1rem;
	line-height: 2;
	color: var(--accent-color);
	margin-bottom: 1.5rem;
}

.story-highlight {
	background: var(--light-bg);
	padding: 2rem;
	border-left: 4px solid var(--secondary-color);
	margin: 2rem 0;
}

.story-highlight p {
	font-size: 1.2rem;
	font-style: italic;
	margin: 0;
	color: var(--primary-color);
}

/* Gallery Section */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	height: 300px;
	cursor: pointer;
}

.gallery-item:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
	height: 100%;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease;
}

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

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(212, 175, 55, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay i {
	font-size: 3rem;
	color: white;
}

/* Contact Cards */
.contact-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 5rem;
}

.contact-card {
	background: white;
	padding: 3rem 2rem;
	text-align: center;
	box-shadow: 0 5px 25px rgba(0,0,0,0.08);
	transition: all 0.4s ease;
}

.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
	background: var(--light-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: var(--secondary-color);
	transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
	background: var(--secondary-color);
	color: white;
	transform: rotate(360deg);
}

.contact-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

.contact-detail {
	margin-bottom: 1rem;
	font-size: 1rem;
	color: var(--accent-color);
	line-height: 1.8;
}

.contact-detail a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s;
}

.contact-detail a:hover {
	color: var(--secondary-color);
}

.contact-detail strong {
	color: var(--primary-color);
	display: block;
	margin-bottom: 0.3rem;
}

/* Contact Form Section */
.contact-form-section {
	background: var(--light-bg);
	padding: 5rem 0;
}

.form-container {
	background: white;
	padding: 3rem;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	max-width: 800px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.section-title p {
	color: var(--accent-color);
	font-size: 1.1rem;
}

.form-label {
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.form-label .required {
	color: #e74c3c;
}

.form-control,
.form-select {
	padding: 1rem;
	border: 1px solid #ddd;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-submit {
	background: var(--secondary-color);
	color: white;
	border: none;
	padding: 1.2rem 3rem;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 1rem;
	width: 100%;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background: #C5A028;
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Map Section */
.map-section {
	margin-bottom: 5rem;
}

.map-container {
	width: 100%;
	height: 500px;
	background: var(--light-bg);
	border: none;
}

.map-info {
	background: white;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	margin-top: -100px;
	position: relative;
	z-index: 10;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.map-info h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.map-info p {
	color: var(--accent-color);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.map-info i {
	color: var(--secondary-color);
	font-size: 1.2rem;
}

.gps-coordinates {
	background: var(--light-bg);
	padding: 1rem;
	margin-top: 1rem;
	font-family: monospace;
	font-size: 0.9rem;
	color: var(--primary-color);
}

/* Quick Contact */
.quick-contact {
	background: var(--primary-color);
	color: white;
	padding: 4rem 0;
	text-align: center;
}

.quick-contact h2 {
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 2rem;
}

.quick-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.quick-contact-item {
	padding: 2rem;
}

.quick-contact-item i {
	font-size: 2.5rem;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

.quick-contact-item h4 {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.quick-contact-item a {
	color: white;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s;
}

.quick-contact-item a:hover {
	color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
	background: var(--light-bg);
}

.contact-info {
	padding: 3rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.3rem;
	flex-shrink: 0;
}

.contact-details h4 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.contact-details p {
	color: var(--accent-color);
	margin: 0;
}

.form-control, .form-select {
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 0;
	margin-bottom: 1.5rem;
}

.form-control:focus, .form-select:focus {
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-submit {
	background: var(--primary-color);
	color: white;
	padding: 1rem 3rem;
	border: none;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

/* Search Banner */
.search-banner {
	padding: 3rem 0;
	margin-bottom: 3rem;
	color: white;
}

.search-banner.page_title {
	padding-bottom: 1rem;
}

.search-banner h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.search-info {
	font-size: 1.1rem;
	font-weight: 300;
	margin-bottom: 2rem;
}

.search-card {
	background: white;
	padding: 2rem;
	border-radius: 0;
	box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.search-form .form-label {
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.search-form .form-control,
.search-form .form-select {
	padding: 0.9rem;
	border: 1px solid #ddd;
	font-size: 0.95rem;
}

.search-form .form-control:focus,
.search-form .form-select:focus {
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-search {
	background: var(--secondary-color);
	color: white;
	border: none;
	padding: 0.9rem 2rem;
	font-weight: 600;
	letter-spacing: 1px;
	width: 100%;
	transition: all 0.3s ease;
}

.btn-search:hover {
	background: #C5A028;
	transform: translateY(-2px);
}

/* Results Header */
.results-header {
	background: white;
	padding: 1.5rem;
	margin-bottom: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.results-count {
	font-size: 1.1rem;
	color: var(--primary-color);
}

.results-count strong {
	color: var(--secondary-color);
	font-weight: 600;
}

.results-controls {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.view-toggle {
	display: flex;
	gap: 0.5rem;
}

.view-btn {
	width: 40px;
	height: 40px;
	border: 1px solid #ddd;
	background: white;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
	background: var(--secondary-color);
	color: white;
	border-color: var(--secondary-color);
}

.sort-dropdown {
	min-width: 200px;
	margin-bottom: 0;
	padding: 10px;
}

/* Sidebar Filters */
.filters-sidebar {
	background: white;
	padding: 2rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	position: sticky;
	top: 100px;
}

.filter-section {
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e0e0e0;
}

.filter-section:last-child {
	border-bottom: none;
}

.filter-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

.filter-option {
	margin-bottom: 1rem;
}

.filter-option label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-size: 0.95rem;
	color: var(--accent-color);
}

.filter-option input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-right: 0.8rem;
	cursor: pointer;
	accent-color: var(--secondary-color);
}

.filter-count {
	color: var(--accent-color);
	font-size: 0.85rem;
}

/* Price Range Slider */
.price-range {
	margin-top: 1rem;
}

.price-inputs {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.price-input {
	flex: 1;
}

.price-input label {
	font-size: 0.8rem;
	color: var(--accent-color);
	margin-bottom: 0.3rem;
	display: block;
}

.price-input input {
	width: 100%;
	padding: 0.6rem;
	border: 1px solid #ddd;
	font-size: 0.9rem;
}

.range-slider {
	width: 100%;
	height: 4px;
	background: #ddd;
	border-radius: 2px;
	position: relative;
}

.range-progress {
	height: 100%;
	background: var(--secondary-color);
	border-radius: 2px;
}

/* Room Cards - Grid View */
.room-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2rem;
}

.room-card {
	background: white;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
}

.room-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.room-image-wrapper {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.room-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease;
}

.room-card:hover .room-image {
	transform: scale(1.05);
}

.room-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--secondary-color);
	color: white;
	padding: 0.4rem 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.room-favorite {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.9);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.room-favorite:hover {
	background: white;
	transform: scale(1.1);
}

.room-favorite i {
	color: var(--accent-color);
	font-size: 1.2rem;
}

.room-favorite.active i {
	color: #e74c3c;
}

.room-content {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.room-header-info {
	margin-bottom: 1rem;
}

.room-title {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.room-title a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s;
}

.room-title a:hover {
	color: var(--secondary-color);
}

.room-location {
	color: var(--accent-color);
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.room-features {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e0e0e0;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--accent-color);
	font-size: 0.9rem;
}

.feature-item i {
	color: var(--secondary-color);
}

.room-description {
	color: var(--accent-color);
	font-size: 0.95rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	flex: 1;
}

.room-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.amenity-tag {
	background: var(--light-bg);
	padding: 0.4rem 1rem;
	font-size: 0.85rem;
	color: var(--accent-color);
}

.room-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid #e0e0e0;
}

.room-price {
	display: flex;
	flex-direction: column;
}

.price-amount {
	font-size: 2rem;
	font-weight: 600;
	color: var(--secondary-color);
	font-family: 'Playfair Display', serif;
}

.price-period {
	font-size: 0.85rem;
	color: var(--accent-color);
}

.results-section .room-price {
	display: flex;
	flex-direction: column;
}

.results-section .price-amount {
	font-size: 2rem;
	font-weight: 600;
	color: var(--secondary-color);
	font-family: 'Playfair Display', serif;
}

.results-section .price-period {
	font-size: 0.85rem;
	color: var(--primary-color);
}

.btn-view-room {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 0.8rem 2rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.btn-view-room:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

/* Room Cards - List View */
.room-list .room-card {
	flex-direction: row;
	max-width: 100%;
	margin-bottom: 20px;
}

.room-list .room-image-wrapper {
	width: 350px;
	height: auto;
}

.room-list .room-content {
	flex: 1;
}

/* Filter Tags */
.active-filters {
	margin-bottom: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.filter-tag {
	background: white;
	padding: 0.6rem 1.2rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-tag i {
	color: var(--accent-color);
	cursor: pointer;
	transition: color 0.3s;
}

.filter-tag i:hover {
	color: #e74c3c;
}

.clear-filters {
	background: transparent;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	padding: 0.6rem 1.2rem;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.clear-filters:hover {
	background: #e74c3c;
	border-color: #e74c3c;
	color: white;
}

/* Loading State */
.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.95);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.loading-spinner {
	width: 60px;
	height: 60px;
	border: 4px solid var(--light-bg);
	border-top-color: var(--secondary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Footer */
.footer-minimal {
	background: var(--dark-bg);
	color: rgba(255,255,255,0.8);
	padding: 4rem 0 2rem;
	font-size: .8rem;
}

.footer-brand {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: white;
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-links a:hover {
	color: var(--secondary-color);
	padding-left: 5px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.1);
	color: white;
	margin-right: 1rem;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--secondary-color);
	transform: translateY(-3px);
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	margin-top: 3rem;
	padding-top: 2rem;
	text-align: center;
}

/* WhatsApp Floating Button */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	cursor: pointer;
	z-index: 1000;
	transition: all 0.3s ease;
	text-decoration: none !important;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
	color: white;
	font-size: 32px;
}

.whatsapp-pulse {
	animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 992px) {
	.hero-content h1 {
		font-size: 3rem;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-item:nth-child(1) {
		grid-column: span 2;
		grid-row: span 1;
	}
}

@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1.1rem;
	}

	.section-minimal {
		padding: 4rem 0;
	}

	.section-title h2 {
		font-size: 2rem;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.gallery-item:nth-child(1) {
		grid-column: span 1;
	}

	.nav-link {
		margin: 0.5rem 0;
	}

	.results-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.results-controls {
		width: 100%;
		justify-content: space-between;
	}
}