* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

/* Color Variables - NO BLUE */
:root {
	--primary: #c2410c;
	--primary-dark: #a16207;
	--primary-light: #ea580c;
	--secondary: #8b4513;
	--accent-warm: #d4a574;
	--charcoal: #2d2d2d;
	--text-dark: #3a3a3a;
	--text-light: #666666;
	--light-bg: #faf8f3;
	--light-bg2: #f5f0e8;
	--cream: #fffaf0;
	--border-light: #e8dcc8;
}

/* Floating Action Buttons */
.floating-buttons {
	position: fixed;
	bottom: 24px;
	right: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 999;
}

.floating-btn {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: white;
	font-size: 24px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	cursor: pointer;
}

.floating-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	border: 2px solid #d4af37;
}

.floating-btn svg {
	width: 24px;
	height: 24px;
}

.floating-btn.call {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.floating-btn.whatsapp {
	background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
}

.floating-btn.email {
	background: linear-gradient(135deg, var(--secondary) 0%, #6b3410 100%);
}

/* Navigation */
.nav-link {
	color: #2c3e50;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: #d4af37;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #d4af37;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.logo-text h1 {
	font-size: 1.2rem;
	color: var(--charcoal);
	margin: 0;
	font-weight: 600;
}

.logo-text span {
	font-size: 0.7rem;
	color: var(--primary);
	font-weight: 700;
	letter-spacing: 2px;
	display: block;
	margin-top: 2px;
}

.mobile-menu {
	position: fixed;
	left: 0;
	top: 64px;
	width: 100%;
	background: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	z-index: 30;
	box-shadow: 0 4px 12px rgba(26, 58, 82, 0.1);
}

.mobile-menu.active {
	max-height: 400px;
}

.mobile-menu a {
	display: block;
	padding: 14px 20px;
	color: #2c3e50;
	text-decoration: none;
	border-bottom: 1px solid #e8eef5;
	transition: all 0.3s ease;
	font-weight: 500;
}

.mobile-menu a:hover {
	background-color: #f8f9fa;
	color: #d4af37;
	padding-left: 24px;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 6px;
}

.hamburger span {
	width: 24px;
	height: 3px;
	background-color: #1a3a52;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
	display: none;
	position: absolute;
	top: 70px;
	left: 0;
	right: 0;
	background-color: #fff;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
	display: flex;
}

.mobile-menu a {
	text-decoration: none;
	color: var(--charcoal);
	font-weight: 500;
	padding: 0.75rem;
	border-radius: 0.5rem;
	transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
	background-color: var(--light-bg);
}

/* CTA Buttons */
.cta-button {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 0.8rem 1.8rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(194, 65, 12, 0.3);
	font-size: 0.9rem;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(194, 65, 12, 0.4);
}

.cta-button-warm {
	background: linear-gradient(135deg, var(--accent-warm) 0%, #c49060 100%);
	color: white;
	padding: 0.8rem 1.8rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
	font-size: 0.9rem;
}

.cta-button-warm:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
}

/* Hero Section */
.hero-gradient {
	background: linear-gradient(135deg, var(--charcoal) 0%, #4a4a4a 50%, var(--primary) 100%);
	color: white;
}

.hero {
	padding: 5rem 2rem;
	min-height: 650px;
	display: flex;
	align-items: center;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	width: 100%;
}

.hero-content h1 {
	font-size: 3rem;
	line-height: 1.15;
	margin-bottom: 1.5rem;
	color: white;
	font-weight: 700;
}

.hero-content > p {
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
	opacity: 0.95;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 400;
}

.hero-description {
	font-size: 0.95rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	font-weight: 400;
}

.highlights {
	margin: 2.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.highlight-item {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.highlight-badge {
	background-color: var(--accent-warm);
	color: white;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.1rem;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.highlight-item span {
	font-size: 0.95rem;
	font-weight: 500;
	color: white;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	margin-top: 2.5rem;
}

/* Pricing Section */
.pricing-section {
	background: linear-gradient(to bottom, var(--light-bg) 0%, var(--cream) 100%);
	padding: 5rem 2rem;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.pricing-card {
	background: white;
	border-radius: 12px;
	padding: 2.5rem;
	text-align: center;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-top: 5px solid var(--primary);
	position: relative;
	overflow: hidden;
}

.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at top right, rgba(194, 65, 12, 0.05) 0%, transparent 60%);
	pointer-events: none;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.price-value {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.pricing-card p {
	color: var(--text-dark);
	margin-bottom: 0.5rem;
	font-weight: 400;
	font-size: 0.9rem;
}

/* Section Styles */
section {
	padding: 5rem 2rem;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--charcoal);
	text-align: center;
	margin-bottom: 1rem;
}

h2 {
	font-weight: 700;
}

.section-subtitle {
	text-align: center;
	color: var(--text-light);
	font-size: 0.95rem;
	margin-bottom: 3.5rem;
	font-weight: 400;
}

/* About Section */
#about {
	background: linear-gradient(to right, var(--light-bg) 0%, var(--cream) 100%);
}

.about-content {
	background: white;
	border-radius: 12px;
	padding: 3rem;
	border-left: 5px solid var(--primary);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 2rem;
}

.about-grid h4 {
	font-size: 1.1rem;
	color: var(--charcoal);
	margin-bottom: 1.8rem;
	font-weight: 600;
}

.about-grid ul {
	list-style: none;
	padding: 0;
}

.about-grid li {
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	color: var(--text-dark);
	font-size: 0.9rem;
	font-weight: 400;
}

.about-grid li::before {
	content: '✓';
	color: var(--primary);
	font-weight: bold;
	font-size: 1.4rem;
	flex-shrink: 0;
}

/* Amenities Section */
#amenities {
	background-color: white;
}

.amenities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.amenity-card {
	background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg2) 100%);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid var(--border-light);
}

.amenity-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
	background: linear-gradient(135deg, white 0%, var(--cream) 100%);
}

.amenity-icon {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	display: block;
}

.amenity-card h4 {
	font-size: 0.95rem;
	color: var(--charcoal);
	margin-bottom: 0.5rem;
	font-weight: 600;
}

/* Gallery Section */
.gallery-image {
	cursor: pointer;
	transition: transform 0.3s ease;
	border: 3px solid transparent;
}

.gallery-image:hover {
	transform: scale(1.03);
	border-color: #d4af37;
}

.lightbox {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(26, 58, 82, 0.95);
	animation: fadeIn 0.3s ease;
}

.lightbox.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Location Section */
#location {
	background-color: white;
}

.location-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
}

.location-box {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.location-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg2) 100%);
	border-radius: 10px;
	border-left: 4px solid var(--primary);
}

.location-icon {
	font-size: 2.5rem;
	flex-shrink: 0;
}

.location-item h4 {
	font-size: 0.95rem;
	color: var(--charcoal);
	margin-bottom: 0.3rem;
	font-weight: 600;
}

.location-item p {
	color: var(--text-light);
	margin: 0;
	font-size: 0.85rem;
	font-weight: 400;
}

/* Services Section */
#services {
	background: linear-gradient(to right, var(--light-bg) 0%, var(--cream) 100%);
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	background: white;
	border-radius: 12px;
	padding: 2.5rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-top: 4px solid var(--secondary);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
	color: var(--primary);
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
	font-weight: 600;
}

.service-card ul {
	list-style: none;
	padding: 0;
}

.service-card li {
	padding: 0.8rem 0;
	color: var(--text-dark);
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	font-size: 0.9rem;
	font-weight: 400;
}

.service-card li::before {
	content: '→';
	color: var(--primary);
	font-weight: bold;
	font-size: 1.2rem;
	flex-shrink: 0;
}

/* Contact Section */
#contact {
	background: linear-gradient(135deg, var(--charcoal) 0%, #4a4a4a 50%, var(--secondary) 100%);
	color: white;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
	margin-bottom: 3rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.contact-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.contact-card:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-8px);
	border-color: rgba(255, 255, 255, 0.3);
}

.contact-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(212, 165, 116, 0.2);
	border-radius: 50%;
}

.contact-icon svg {
	width: 40px;
	height: 40px;
	stroke: var(--accent-warm);
}

.contact-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 400;
}

.contact-card .highlight {
	color: var(--accent-warm);
	font-weight: 600;
	font-size: 1rem;
}

.contact-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.2rem;
	max-width: 1200px;
	margin: 0 auto;
}


/* Footer */
footer {
	background-color: #1a1a1a;
	color: #d1d1d1;
	padding: 2.5rem;
	text-align: center;
}

footer p {
	margin: 0;
	color: #d1d1d1;
	font-weight: 400;
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 1.8rem;
		font-weight: 700;
	}
	
	.section-title {
		font-size: 1.6rem;
		font-weight: 700;
	}
	
	.nav-links {
		display: none;
	}
	
	.hamburger {
		display: flex;
	}
	
	.navbar-container {
		padding: 0.75rem 1rem;
	}
	
	.hero-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.hero-image {
		height: 300px;
	}
	
	.about-grid,
	.location-grid,
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.floating-buttons {
		bottom: 16px;
		right: 16px;
	}

	.floating-btn {
		width: 48px;
		height: 48px;
		border: 2px solid #d4af37;
	}

	.floating-btn svg {
		width: 20px;
		height: 20px;
	}
	
	.hero-buttons {
		flex-direction: column;
	}
	
	.cta-button, .cta-button-warm {
		width: 100%;
		text-align: center;
	}
}