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

body {
	font-family:
		-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
		Cantarell, sans-serif;
	background: #f5f5f5;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Phone Frame */
.phone-frame {
	width: 100%;
	min-height: 100vh;
	background: #ffffff;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
}

/* Status Bar */
.status-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 20px;
	background: #ffffff;
	font-size: 14px;
	font-weight: 600;
	position: relative;
	z-index: 1;
}

.status-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 134px;
	height: 30px;
	background: #000000;
	border-radius: 0 0 20px 20px;
	z-index: 0;
}

.status-icons {
	display: flex;
	gap: 4px;
	color: #000;
	font-size: 12px;
	z-index: 2;
	position: relative;
}

.time {
	color: #000;
	font-weight: 600;
	z-index: 2;
	position: relative;
}

/* Main Header (Homepage) */
.main-header {
	padding: 20px;
	background: #ffffff;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
}

.header-left {
	flex: 1;
}

.greeting {
	font-size: 24px;
	font-weight: 700;
	color: #000;
	margin-bottom: 4px;
}

.subtitle {
	font-size: 14px;
	color: #666;
	margin-top: 4px;
}

.header-right {
	display: flex;
	align-items: center;
}

.notification-bell {
	position: relative;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.notification-bell i {
	font-size: 20px;
	color: #000;
}

.notification-badge {
	position: absolute;
	top: 0;
	right: 0;
	background: #ff3b30;
	color: #fff;
	border-radius: 10px;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 600;
}

.search-section {
	display: flex;
	gap: 12px;
	align-items: center;
}

.search-bar {
	flex: 1;
	display: flex;
	align-items: center;
	background: #f5f5f5;
	border-radius: 12px;
	padding: 12px 16px;
	gap: 10px;
}

.search-bar i {
	color: #666;
	font-size: 16px;
}

.search-bar input {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 14px;
	color: #000;
	outline: none;
}

.filter-btn {
	width: 48px;
	height: 48px;
	background: #000;
	border: none;
	border-radius: 12px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover {
	background: #333;
	transform: scale(1.05);
}

/* Filter Buttons */
.filter-buttons {
	display: flex;
	gap: 8px;
	padding: 0 20px 16px;
	overflow-x: auto;
	scrollbar-width: none;
}

.filter-buttons::-webkit-scrollbar {
	display: none;
}

.filter-pill {
	padding: 8px 16px;
	background: #f5f5f5;
	border: none;
	border-radius: 20px;
	font-size: 14px;
	color: #000;
	cursor: pointer;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.3s ease;
}

.filter-pill i {
	font-size: 10px;
	color: #666;
}

.filter-pill:hover {
	background: #e5e5e5;
}

/* Main Content */
.main-content {
	flex: 1;
	overflow-y: auto;
	padding: 0 20px 0px 20px;
	scrollbar-width: thin;
}

.main-content::-webkit-scrollbar {
	width: 4px;
}

.main-content::-webkit-scrollbar-track {
	background: transparent;
}

.main-content::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 2px;
}

.section-title {
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin-bottom: 16px;
}

/* Recently Explored */
.recently-explored {
	margin-bottom: 32px;
}

.explore-cards {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 8px;
}

.explore-cards::-webkit-scrollbar {
	display: none;
}

.explore-card {
	position: relative;
	min-width: 200px;
	height: 140px;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.explore-card:hover {
	transform: scale(1.02);
}

.explore-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.explore-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	padding: 12px;
	color: #fff;
}

.explore-badge {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 4px;
}

.explore-dates {
	font-size: 11px;
	opacity: 0.9;
}

/* Popular Hotels */
.popular-hotels {
	margin-bottom: 100px;
}

.hotel-cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Bootstrap grid override for hotel cards */
.popular-hotels .row {
	margin: 0;
}

.popular-hotels .col-lg-4,
.popular-hotels .col-md-6 {
	padding: 0;
}

@media (min-width: 768px) {
	.popular-hotels .col-md-6 {
		padding-right: 10px;
		padding-left: 10px;
	}

	.popular-hotels .col-md-6:first-child {
		padding-left: 0;
	}

	.popular-hotels .col-md-6:last-child {
		padding-right: 0;
	}
}

@media (min-width: 992px) {
	.popular-hotels .col-lg-4 {
		padding-right: 10px;
		padding-left: 10px;
	}

	.popular-hotels .col-lg-4:first-child {
		padding-left: 0;
	}

	.popular-hotels .col-lg-4:last-child {
		padding-right: 0;
	}
}

.hotel-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	transition: all 0.3s ease;
}

.hotel-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hotel-image {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

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

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

.heart-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	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;
	z-index: 1;
}

.heart-btn:hover {
	background: #fff;
	transform: scale(1.1);
}

.heart-btn i {
	color: #ff3b30;
	font-size: 16px;
}

.hotel-info {
	padding: 16px;
}

.hotel-name {
	font-size: 16px;
	font-weight: 700;
	color: #000;
	margin-bottom: 8px;
}

.hotel-rating {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 8px;
}

.hotel-rating i {
	color: #ffa500;
	font-size: 14px;
}

.hotel-rating span {
	font-size: 14px;
	font-weight: 600;
	color: #000;
}

.reviews {
	color: #666;
	font-weight: 400;
}

.hotel-location {
	font-size: 13px;
	color: #666;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.hotel-location i {
	font-size: 12px;
}

.hotel-amenities {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.amenity {
	font-size: 12px;
	color: #666;
	background: #f5f5f5;
	padding: 4px 10px;
	border-radius: 8px;
}

/* Bottom Navigation */
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid #e5e5e5;
	display: flex;
	justify-content: space-around;
	padding: 12px 0 24px;
	z-index: 1000;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-decoration: none;
	color: #999;
	font-size: 11px;
	transition: all 0.3s ease;
	padding: 4px 12px;
}

.nav-item i {
	font-size: 20px;
}

.nav-item.active {
	color: #000;
}

.nav-item:hover {
	color: #000;
}

/* Detail Page */
.detail-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	background: transparent;
	position: fixed;
	width: 100%;
	z-index: 5;
}

.back-btn,
.share-btn {
	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;
	backdrop-filter: blur(10px);
}

.back-btn:hover,
.share-btn:hover {
	background: #fff;
	transform: scale(1.1);
}

.back-btn i,
.share-btn i {
	color: #000;
	font-size: 18px;
}

.detail-content {
	flex: 1;
	overflow-y: auto;
	padding-bottom: 120px;
	margin-bottom: 80px;
}

.detail-main-image {
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.detail-main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.detail-info {
	padding: 20px;
}

.detail-header-info {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
}

.detail-hotel-name {
	font-size: 22px;
	font-weight: 700;
	color: #000;
	margin-bottom: 8px;
}

.detail-location {
	font-size: 14px;
	color: #666;
	display: flex;
	align-items: center;
	gap: 6px;
}

.detail-location i {
	font-size: 12px;
}

.detail-price {
	text-align: right;
}

.price-amount {
	font-size: 24px;
	font-weight: 700;
	color: #000;
}

.price-period {
	font-size: 14px;
	color: #666;
}

.image-thumbnails {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
}

.thumbnail {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.thumbnail:hover {
	transform: scale(1.05);
}

.thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.more-thumbnail {
	position: relative;
}

.more-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.property-details {
	display: flex;
	gap: 24px;
	margin-bottom: 20px;
	padding: 16px 0;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
}

.property-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.property-item i {
	font-size: 20px;
	color: #666;
}

.property-item span {
	font-size: 12px;
	color: #666;
}

.description {
	margin-bottom: 24px;
}

.description p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 8px;
}

.read-more-btn {
	background: none;
	border: none;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
	transition: color 0.3s ease;
}

.read-more-btn:hover {
	color: #666;
}

.rating-section {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 16px;
	margin-bottom: 20px;
}

.rating-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.rating-main {
	display: flex;
	align-items: center;
	gap: 8px;
}

.rating-stars {
	display: flex;
	gap: 2px;
}

.rating-stars i {
	color: #ffa500;
	font-size: 16px;
}

.rating-score {
	font-size: 20px;
	font-weight: 700;
	color: #000;
}

.rating-reviews {
	font-size: 14px;
	color: #666;
}

.rating-breakdown {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.rating-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.rating-label {
	font-size: 13px;
	color: #666;
	min-width: 100px;
}

.rating-bar {
	flex: 1;
	height: 6px;
	background: #e5e5e5;
	border-radius: 3px;
	overflow: hidden;
}

.rating-bar-fill {
	height: 100%;
	background: #ffa500;
	border-radius: 3px;
	transition: width 0.3s ease;
}

.rating-value {
	font-size: 13px;
	font-weight: 600;
	color: #000;
	min-width: 30px;
	text-align: right;
}

.booking-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid #e5e5e5;
	padding: 16px 20px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.booking-summary {
	flex: 1;
}

.booking-total {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.total-amount {
	font-size: 18px;
	font-weight: 700;
	color: #000;
}

.total-details {
	font-size: 12px;
	color: #666;
}

.book-now-btn {
	background: #000;
	color: #fff;
	border: none;
	padding: 14px 32px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.book-now-btn:hover {
	background: #333;
	transform: scale(1.05);
}

/* Filter Page */
.filter-header {
	padding: 20px;
	background: #fff;
}

.filter-header-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.filter-header-left {
	flex: 1;
}

.search-places-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}

.search-places-header span {
	font-size: 18px;
	font-weight: 600;
	color: #000;
}

.close-btn {
	width: 32px;
	height: 32px;
	background: #f5f5f5;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.close-btn:hover {
	background: #e5e5e5;
	transform: scale(1.1);
}

.close-btn i {
	color: #000;
	font-size: 14px;
}

.filter-content {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
	padding-bottom: 120px;
	margin-bottom: 80px;
}

.filter-intro {
	text-align: center;
	margin-bottom: 32px;
}

.filter-title {
	font-size: 24px;
	font-weight: 700;
	color: #000;
	margin-bottom: 8px;
}

.filter-subtitle {
	font-size: 14px;
	color: #666;
}

.filter-section {
	margin-bottom: 24px;
}

.filter-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #000;
	margin-bottom: 12px;
}

.input-field {
	position: relative;
	display: flex;
	align-items: center;
	background: #f5f5f5;
	border-radius: 12px;
	padding: 14px 16px;
}

.input-field input {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 14px;
	color: #000;
	outline: none;
}

.input-field i {
	color: #666;
	font-size: 16px;
	margin-left: 8px;
}

.date-inputs {
	display: flex;
	gap: 12px;
}

.date-field {
	flex: 1;
}

.guest-selectors {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.guest-selector {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	background: #f5f5f5;
	border-radius: 12px;
}

.guest-selector label {
	font-size: 14px;
	font-weight: 600;
	color: #000;
}

.counter {
	display: flex;
	align-items: center;
	gap: 16px;
}

.counter-value {
	font-size: 16px;
	font-weight: 600;
	color: #000;
	min-width: 30px;
	text-align: center;
}

.counter-btn {
	width: 32px;
	height: 32px;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	color: #000;
	transition: all 0.3s ease;
}

.counter-btn:hover {
	background: #000;
	color: #fff;
	border-color: #000;
}

.counter-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.price-range {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 16px;
}

.price-display {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.price-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.price-label {
	font-size: 12px;
	color: #666;
}

.price-value {
	font-size: 18px;
	font-weight: 700;
	color: #000;
}

.range-slider {
	position: relative;
	height: 40px;
}

.slider-track {
	position: relative;
	height: 6px;
	background: #e5e5e5;
	border-radius: 3px;
	margin-top: 17px;
}

.slider-fill {
	position: absolute;
	height: 6px;
	background: #000;
	border-radius: 3px;
	top: 0;
	left: 23%;
	right: 45%;
}

.slider-input {
	position: absolute;
	width: 100%;
	height: 6px;
	top: 17px;
	left: 0;
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	outline: none;
	z-index: 2;
}

.slider-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	background: #000;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider-input::-webkit-slider-thumb:hover {
	transform: scale(1.2);
}

.slider-input::-moz-range-thumb {
	width: 20px;
	height: 20px;
	background: #000;
	border-radius: 50%;
	cursor: pointer;
	border: none;
	transition: all 0.3s ease;
}

.slider-input::-moz-range-thumb:hover {
	transform: scale(1.2);
}

.property-types {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.property-type-btn {
	padding: 10px 20px;
	background: #f5f5f5;
	border: none;
	border-radius: 20px;
	font-size: 14px;
	color: #000;
	cursor: pointer;
	transition: all 0.3s ease;
}

.property-type-btn:hover {
	background: #e5e5e5;
}

.property-type-btn.active {
	background: #000;
	color: #fff;
}

.filter-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid #e5e5e5;
	padding: 16px 20px 24px;
	display: flex;
	gap: 12px;
	z-index: 1000;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.reset-btn {
	flex: 1;
	background: #fff;
	border: 1px solid #e5e5e5;
	color: #000;
	padding: 14px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.reset-btn:hover {
	background: #f5f5f5;
	border-color: #ccc;
}

.search-btn {
	flex: 1;
	background: #000;
	border: none;
	color: #fff;
	padding: 14px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-btn:hover {
	background: #333;
	transform: scale(1.02);
}

/* Language Modal */
.language-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease;
}

.language-modal.active {
	display: flex;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.language-modal-content {
	background: #fff;
	border-radius: 20px;
	width: 90%;
	max-width: 400px;
	padding: 0;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	animation: slideUp 0.3s ease;
}

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

.language-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #e5e5e5;
}

.language-modal-header h3 {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	margin: 0;
}

.language-close-btn {
	width: 36px;
	height: 36px;
	background: #f5f5f5;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.language-close-btn:hover {
	background: #e5e5e5;
	transform: scale(1.1);
}

.language-close-btn i {
	color: #000;
	font-size: 16px;
}

.language-options {
	padding: 10px;
}

.language-option {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: #fff;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
	margin-bottom: 8px;
}

.language-option:hover {
	background: #f5f5f5;
}

.language-option.active {
	background: #f0f0f0;
	border: 2px solid #000;
}

.language-flag {
	font-size: 24px;
	width: 32px;
	text-align: center;
}

.language-name {
	flex: 1;
	font-size: 16px;
	font-weight: 600;
	color: #000;
}

.language-option i {
	color: #000;
	font-size: 16px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.language-option.active i {
	opacity: 1;
}

/* Smooth Transitions */
* {
	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease;
}

/* Scroll Behavior */
html {
	scroll-behavior: smooth;
}

@media (max-width: 576px) {
	.date-inputs {
		flex-direction: column;
	}
}

.category-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 60px 20px 30px;
	color: white;
	text-align: center;
}

.category-header h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
}

.category-header p {
	font-size: 16px;
	opacity: 0.9;
}

.back-btn {
	position: absolute;
	top: 20px;
	left: 20px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
}

.back-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

#map {
	width: 100%;
	height: 400px;
}

.locations-list {
	background: white;
	max-height: 300px;
	overflow-y: auto;
}

.location-item {
	padding: 16px 20px;
	border-bottom: 1px solid #e0e0e0;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 12px;
}

.location-item:hover {
	background: #f5f5f5;
}

.location-item.active {
	background: #fff3cd;
	border-left: 4px solid #ffc107;
}

.location-icon {
	font-size: 20px;
	color: #dc3545;
	min-width: 24px;
}

.location-content {
	flex: 1;
}

.location-name {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 4px;
}

.location-address {
	font-size: 14px;
	color: #666;
	margin-bottom: 2px;
}

.location-details {
	font-size: 13px;
	color: #999;
}

.hotels-section {
	padding: 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
	background: #f8f9fa;
}

.hotels-section.show {
	max-height: 2000px;
}

.selected-hotel {
	margin-bottom: 20px;
}

.hotel-card {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	cursor: pointer;
	background: white;
	margin-bottom: 10px;
}

.hotel-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hotel-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

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

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

.hotel-info {
	padding: 16px;
}

.hotel-name {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
}

.hotel-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
	color: #ffc107;
}

.hotel-rating span {
	color: #333;
	font-weight: 600;
}

.hotel-rating .reviews {
	color: #999;
	font-weight: 400;
	font-size: 14px;
}

.hotel-location {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #666;
	font-size: 14px;
	margin-bottom: 12px;
}

.hotel-location i {
	color: #667eea;
}

.hotel-amenities {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.amenity {
	background: #f0f0f0;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	color: #666;
}

.map-container {
	position: relative;
}

.phone-frame {
	padding-bottom: 80px;
}

/* ======================================
   SUPPORT PAGE STYLES
   ====================================== */

.support-content {
	padding: 0 20px 100px 20px;
}

/* Contact Section */
.support-section {
	margin-bottom: 32px;
}

.contact-cards {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.contact-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #fff;
}

.phone-icon {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.email-icon {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.telegram-icon {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.contact-info {
	flex: 1;
}

.contact-info h3 {
	font-size: 16px;
	font-weight: 700;
	color: #000;
	margin: 0 0 4px 0;
}

.contact-info p {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.contact-arrow {
	font-size: 16px;
	color: #999;
}

/* Social Media Section */
.social-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.social-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 24px 16px;
	border-radius: 16px;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.social-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.social-card i {
	font-size: 32px;
}

.social-card.instagram {
	background: linear-gradient(
		45deg,
		#f09433 0%,
		#e6683c 25%,
		#dc2743 50%,
		#cc2366 75%,
		#bc1888 100%
	);
}

.social-card.facebook {
	background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
}

.social-card.telegram {
	background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
}

.social-card.youtube {
	background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

/* FAQ Section */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 15px;
	font-weight: 600;
	color: #000;
	transition: all 0.3s ease;
}

/* .faq-question:hover {
	background: #f9f9f9;
} */

.faq-question i {
	font-size: 14px;
	color: #666;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 0 16px 16px;
	margin: 0;
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

/* Working Hours Section */
.hours-card {
	background: #fff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
	border-bottom: none;
}

.hours-day {
	font-size: 14px;
	color: #666;
}

.hours-time {
	font-size: 14px;
	font-weight: 600;
	color: #000;
}

/* Responsive */
@media (max-width: 576px) {
	.social-cards {
		grid-template-columns: 1fr;
	}
}
