/* TopResorts - Premium Casino Hotel Information */
:root {
	--primary-color: #1a1a2e;
	--secondary-color: #16213e;
	--accent-color: #e94560;
	--gold-color: #ffd700;
	--text-light: #ffffff;
	--text-dark: #1a1a2e;
	--text-muted: #a1a1aa;
	--border-color: #374151;
	--shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
	--shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
	--gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	--gradient-accent: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
	--gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: #ffffff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 20px;
}

.section-subtitle {
	font-size: 18px;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.btn-primary {
	background: var(--gradient-accent);
	color: var(--text-light);
	box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-heavy);
}

.btn-secondary {
	background: var(--gradient-gold);
	color: var(--text-dark);
	box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-heavy);
}

.btn-outline {
	background: transparent;
	color: var(--accent-color);
	border: 2px solid var(--accent-color);
}

.btn-outline:hover {
	background: var(--accent-color);
	color: var(--text-light);
}

.btn-large {
	padding: 16px 32px;
	font-size: 18px;
}

/* Hero Section */
.luxury-hero {
	min-height: 100vh;
	background: var(--gradient-primary);
	position: relative;
	overflow: hidden;
}

.hero-background {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.hero-text {
	color: var(--text-light);
}

.hero-subtitle {
	display: block;
	font-size: 18px;
	color: var(--gold-color);
	margin-bottom: 10px;
	font-weight: 500;
}

.hero-main {
	display: block;
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 20px;
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-tagline {
	display: block;
	font-size: 24px;
	color: var(--text-muted);
	margin-bottom: 30px;
	font-weight: 400;
}

.hero-description {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 40px;
	color: var(--text-light);
	opacity: 0.9;
}

.hero-actions {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	text-align: center;
}

.stat-item {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 30px 20px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--gold-color);
	margin-bottom: 10px;
}

.stat-label {
	font-size: 14px;
	color: var(--text-light);
	opacity: 0.8;
}

/* Navigation */
.topresorts-navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(26, 26, 46, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topresorts-navbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.topresorts-navbar-left {
	display: flex;
	align-items: center;
	gap: 15px;
}

.topresorts-navbar-home-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--text-light);
	transition: opacity 0.3s ease;
}

.topresorts-navbar-home-link:hover {
	opacity: 0.8;
	color: var(--text-light);
	text-decoration: none;
}

.topresorts-navbar-logo {
	height: 40px;
	width: auto;
	margin-right: 5px;
}

.topresorts-navbar-title {
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--text-light);
}

.topresorts-navbar-right {
	display: flex;
	gap: 20px;
	align-items: center;
}

.topresorts-nav-link-pill {
	color: var(--text-light);
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 25px;
	transition: all 0.3s ease;
	font-weight: 500;
}

.topresorts-nav-link-pill:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-light);
}

.topresorts-nav-link-cta {
	background: var(--gradient-accent);
	color: var(--text-light);
	font-weight: 600;
}

.topresorts-nav-link-cta:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-medium);
}

.topresorts-navbar-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text-light);
	font-size: 24px;
	cursor: pointer;
}

/* Mobile Navigation Toggle Bar Styles */
.topresorts-navbar-toggle-bar {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--text-light);
	margin: 5px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.topresorts-navbar-toggle.active .topresorts-navbar-toggle-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.topresorts-navbar-toggle.active .topresorts-navbar-toggle-bar:nth-child(2) {
	opacity: 0;
}

.topresorts-navbar-toggle.active .topresorts-navbar-toggle-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Active State */
.topresorts-navbar-right.active {
	display: flex !important;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--gradient-primary);
	padding: 20px;
	box-shadow: var(--shadow-heavy);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.topresorts-navbar-right.active .topresorts-nav-link-pill {
	margin: 10px 0;
	text-align: center;
}

/* Featured Hotels Section */
.featured-hotels {
	padding: 100px 0;
	background: #f8fafc;
}

.hotels-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
}

.hotel-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-light);
	transition: all 0.3s ease;
}

.hotel-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-heavy);
}

.hotel-image {
	position: relative;
	height: 250px;
	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.1);
}

.hotel-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--gradient-accent);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

.hotel-content {
	padding: 30px;
}

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

.hotel-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 10px;
}

.hotel-location {
	color: var(--text-muted);
	font-size: 14px;
}

.hotel-location i {
	margin-right: 8px;
	color: var(--accent-color);
}

.hotel-description {
	color: var(--text-muted);
	margin-bottom: 20px;
	line-height: 1.6;
}

.hotel-highlights {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 25px;
}

.highlight-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--text-muted);
}

.highlight-item i {
	color: var(--accent-color);
	width: 16px;
}

.hotel-amenities h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--text-dark);
}

.amenities-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 25px;
}

.amenity-tag {
	background: #f1f5f9;
	color: var(--text-dark);
	padding: 6px 12px;
	border-radius: 16px;
	font-size: 12px;
	font-weight: 500;
}

.hotel-actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

/* Why Choose Section */
.why-choose {
	padding: 100px 0;
	background: white;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.feature-card {
	text-align: center;
	padding: 40px 20px;
	border-radius: 16px;
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-medium);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
}

.feature-icon i {
	font-size: 32px;
	color: var(--text-dark);
}

.feature-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--text-dark);
}

.feature-card p {
	color: var(--text-muted);
	line-height: 1.6;
}

/* Experience Section */
.experience-section {
	padding: 100px 0;
	background: var(--gradient-primary);
	color: var(--text-light);
}

.experience-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: center;
}

.experience-text h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 25px;
}

.experience-text p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 40px;
	opacity: 0.9;
}

.experience-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.feature {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 16px;
}

.feature i {
	color: var(--gold-color);
	font-size: 20px;
}

.experience-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.visual-element {
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.visual-element i {
	font-size: 80px;
	color: var(--gold-color);
}

/* Cities Section */
.cities-section {
	padding: 100px 0;
	background: white;
}

.cities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.city-card {
	background: white;
	padding: 30px 20px;
	border-radius: 16px;
	text-align: center;
	box-shadow: var(--shadow-light);
	transition: all 0.3s ease;
	border: 1px solid #f1f5f9;
}

.city-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-medium);
	border-color: var(--accent-color);
}

.city-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.city-icon i {
	font-size: 24px;
	color: var(--text-dark);
}

.city-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.city-card p {
	color: var(--text-muted);
	margin-bottom: 15px;
	line-height: 1.5;
}

.hotel-count {
	background: var(--gradient-accent);
	color: white;
	padding: 6px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}

/* Guide Section */
.guide-section {
	padding: 100px 0;
	background: #f8fafc;
}

.guide-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: center;
}

.guide-text h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 25px;
	color: var(--text-dark);
}

.guide-text p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 40px;
	color: var(--text-muted);
}

.guide-tips {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.tip {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 16px;
	color: var(--text-dark);
}

.tip i {
	color: var(--accent-color);
	font-size: 18px;
}

.guide-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.guide-icon {
	width: 150px;
	height: 150px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.guide-icon i {
	font-size: 60px;
	color: var(--gold-color);
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	background: white;
	text-align: center;
}

.cta-content h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	color: var(--text-dark);
}

.cta-content p {
	font-size: 18px;
	color: var(--text-muted);
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Footer */
.topresorts-footer {
	background: var(--gradient-primary);
	color: var(--text-light);
	padding: 60px 0 30px;
}

.topresorts-footer h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--gold-color);
}

.topresorts-footer p {
	color: var(--text-light);
	opacity: 0.8;
	line-height: 1.6;
	margin-bottom: 15px;
}

.topresorts-footer-links {
	list-style: none;
}

.topresorts-footer-links li {
	margin-bottom: 10px;
}

.topresorts-footer-links a {
	color: var(--text-light);
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.topresorts-footer-links a:hover {
	opacity: 1;
	color: var(--gold-color);
}

.topresorts-footer-divider {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin: 40px 0;
}

.topresorts-footer-disclaimer {
	text-align: center;
	margin-bottom: 30px;
}

.topresorts-footer-disclaimer p {
	margin-bottom: 10px;
}

.topresorts-footer-disclaimer a {
	color: var(--gold-color);
	text-decoration: none;
}

/* Booking Inquiry Page Styles */
.booking-inquiry-section {
	padding: 80px 0;
	background: #ffffff;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-top: 40px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 25px;
	background: rgba(26, 26, 46, 0.02);
	border-radius: 12px;
	border: 1px solid rgba(26, 26, 46, 0.1);
	transition: all 0.3s ease;
}

.contact-item:hover {
	background: rgba(26, 26, 46, 0.05);
	border-color: var(--accent-color);
	transform: translateY(-2px);
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	font-size: 20px;
	flex-shrink: 0;
}

.contact-details h3 {
	color: var(--text-dark);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.contact-details p {
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0;
}

.contact-form {
	background: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: var(--shadow-medium);
	border: 1px solid rgba(26, 26, 46, 0.1);
}

.contact-form h3 {
	color: var(--text-dark);
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
	text-align: center;
}

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

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

.form-group label {
	color: var(--text-dark);
	font-weight: 600;
	font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px 16px;
	border: 2px solid rgba(26, 26, 46, 0.1);
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

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

.form-message {
	padding: 15px 20px;
	border-radius: 8px;
	margin-top: 20px;
	text-align: center;
	font-weight: 500;
}

.form-message-success {
	background: rgba(34, 197, 94, 0.1);
	color: #166534;
	border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message-error {
	background: rgba(239, 68, 68, 0.1);
	color: #991b1b;
	border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Legal Pages Styles */
.topresorts-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	min-height: 100vh;
}

.topresorts-legal-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px;
}

.topresorts-legal-section {
	margin-bottom: 40px;
	padding: 30px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: var(--shadow-light);
	border: 1px solid #f0f0f0;
	transition: all 0.3s ease;
}

.topresorts-legal-section:hover {
	box-shadow: var(--shadow-medium);
	transform: translateY(-2px);
}

.topresorts-legal-section h1 {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 15px;
	text-align: center;
}

.topresorts-legal-section h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 20px;
	margin-top: 30px;
	border-bottom: 2px solid var(--accent-color);
	padding-bottom: 10px;
	transition: border-color 0.3s ease;
}

.topresorts-legal-section:hover h2 {
	border-bottom-color: var(--secondary-color);
}

.topresorts-legal-section h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 15px;
	margin-top: 25px;
}

.topresorts-legal-section p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-dark);
	margin-bottom: 15px;
}

.topresorts-legal-section ul {
	margin: 20px 0;
	padding-left: 25px;
}

.topresorts-legal-section li {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	margin-bottom: 10px;
	transition: color 0.3s ease;
}

.topresorts-legal-section li:hover {
	color: var(--accent-color);
}

.topresorts-legal-section strong {
	font-weight: 600;
	color: var(--accent-color);
}

.topresorts-legal-section a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.topresorts-legal-section a:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}

/* Legal page specific section styling */
.topresorts-legal-section:first-child {
	background: var(--gradient-primary);
	color: var(--text-light);
	text-align: center;
}

.topresorts-legal-section:first-child h1,
.topresorts-legal-section:first-child p {
	color: var(--text-light);
}

.topresorts-legal-section:first-child h1 {
	font-size: 3rem;
	margin-bottom: 20px;
}

.topresorts-legal-section:first-child p {
	font-size: 18px;
	opacity: 0.9;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
	.topresorts-legal-content {
		padding: 20px 15px;
	}

	.topresorts-legal-section {
		padding: 20px;
		margin-bottom: 30px;
	}

	.topresorts-legal-section h1 {
		font-size: 2rem;
	}

	.topresorts-legal-section h2 {
		font-size: 1.5rem;
	}

	.topresorts-legal-section h3 {
		font-size: 1.2rem;
	}
}

@media (max-width: 480px) {
	.topresorts-legal-content {
		padding: 15px 10px;
	}

	.topresorts-legal-section {
		padding: 15px;
		margin-bottom: 25px;
	}

	.topresorts-legal-section h1 {
		font-size: 1.8rem;
	}

	.topresorts-legal-section h2 {
		font-size: 1.5rem;
	}

	.topresorts-legal-section h3 {
		font-size: 1.5rem;
	}

	.topresorts-legal-section p,
	.topresorts-legal-section li {
		font-size: 15px;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 24px;
		padding: 0 20px;
	}

	.hero-main {
		font-size: 3rem;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.topresorts-navbar-inner {
		padding: 15px 20px;
	}

	.topresorts-navbar-right {
		display: none;
	}

	.topresorts-navbar-toggle {
		display: block;
	}

	.hotels-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.features-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.experience-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.experience-features {
		grid-template-columns: 1fr;
	}

	.cities-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.guide-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.guide-tips {
		grid-template-columns: 1fr;
	}

	.cta-actions {
		flex-direction: column;
		align-items: center;
	}

	.contact-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-form {
		padding: 30px 20px;
	}

	.contact-item {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero-main {
		font-size: 2.5rem;
	}

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

	.hotel-actions {
		flex-direction: column;
	}

	.cities-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.guide-tips {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.booking-inquiry-section {
		padding: 71px 0;
	}

	.contact-form {
		padding: 25px 15px;
	}

	.contact-item {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.contact-icon,
	.contact-details {
		align-self: center;
	}
}

/* Cookie Consent Styles */
.topresorts-cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--gradient-primary);
	color: var(--text-light);
	padding: 20px;
	z-index: 1000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.topresorts-cookie-consent.topresorts-visible {
	transform: translateY(0);
}

.topresorts-cookie-consent.topresorts-hidden {
	transform: translateY(100%);
}

.topresorts-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.topresorts-cookie-text h5 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.topresorts-cookie-text p {
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}

.topresorts-cookie-text a {
	color: var(--gold-color);
	text-decoration: none;
}

.topresorts-cookie-text a:hover {
	text-decoration: underline;
}

.topresorts-cookie-actions {
	display: flex;
	gap: 15px;
}

/* Button Styles */
.topresorts-btn {
	display: inline-block;
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.topresorts-btn-primary {
	background: var(--gradient-accent);
	color: var(--text-light);
	box-shadow: var(--shadow-light);
}

.topresorts-btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-medium);
}

.topresorts-btn-secondary {
	background: var(--gradient-gold);
	color: var(--text-dark);
	box-shadow: var(--shadow-light);
}

.topresorts-btn-secondary:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-medium);
}

/* Responsive adjustments for cookie consent */
@media (max-width: 768px) {
	.topresorts-cookie-content {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.topresorts-cookie-actions {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.topresorts-cookie-consent {
		padding: 15px;
	}

	.topresorts-cookie-text h5 {
		font-size: 16px;
	}

	.topresorts-cookie-text p {
		font-size: 13px;
	}

	.topresorts-btn {
		padding: 8px 16px;
		font-size: 13px;
	}
}

/* Breadcrumb Navigation Styles */
.topresorts-breadcrumb {
	margin-bottom: 30px;
	padding: 15px 0;
	font-size: 14px;
	color: var(--text-muted);
}

.topresorts-breadcrumb a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.topresorts-breadcrumb a:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}
