:root {
	--primary-gold: #D4AF37;
	--secondary-gold: #C5A028;
	--dark-bg: #0a0a0a;
	--darker-bg: #050505;
	--text-light: #ffffff;
	--text-gray: #b8b8b8;
	--accent-red: #8B0000;
	--whatsapp-green: #25D366;
	--call-blue: #4A90E2;
}

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

body {
	font-family: 'Montserrat', sans-serif;
	background: var(--dark-bg);
	color: var(--text-light);
	overflow-x: hidden;
	position: relative;
	scroll-behavior: smooth;
}

/* Animated Background */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
	radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.05) 0%, transparent 50%),
	linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
	z-index: -1;
}

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

/* Floating Buttons */
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 30px;
	right: 30px;
	background-color: var(--whatsapp-green);
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 35px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
	animation: pulse 2s infinite;
}

.whatsapp-float:hover {
	background-color: #20ba5a;
	transform: scale(1.1);
	box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.call-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 110px;
	right: 30px;
	background-color: var(--call-blue);
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
	animation: pulse-call 2s infinite 0.5s;
}

.call-float:hover {
	background-color: #3a7bc8;
	transform: scale(1.1);
	box-shadow: 0 5px 20px rgba(74, 144, 226, 0.5);
}

@keyframes pulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	50% {
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}
}

@keyframes pulse-call {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7);
	}
	50% {
		box-shadow: 0 0 0 15px rgba(74, 144, 226, 0);
	}
}

/* Navigation - Bootstrap Integration */
.navbar {
	background: rgba(10, 10, 10, 0.95);
	padding: 1rem 0;
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.navbar-brand img {
	max-width: 180px;
	height: auto;
}

.navbar-toggler {
	border: 1px solid var(--primary-gold);
	padding: 0.5rem 0.75rem;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
	align-items: center;
}

.nav-link {
	color: var(--text-gray) !important;
	padding: 0.5rem 1rem !important;
	transition: all 0.3s ease;
	font-weight: 500;
	font-size: 0.95rem;
	position: relative;
}

.nav-link:hover {
	color: var(--primary-gold) !important;
}

.nav-link.active {
	color: var(--primary-gold) !important;
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 2px;
	background: var(--primary-gold);
}

/* Hero Section */
.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

.hero-content {
	text-align: center;
	z-index: 2;
	padding: 2rem 1rem;
}

.logo-container {
	margin-bottom: 3rem;
	animation: fadeInDown 1s ease-out;
}

.logo-container img {
	max-width: 280px;
	width: 90%;
	height: auto;
	filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

.hero-title {
	font-size: clamp(2rem, 5vw, 5rem);
	font-weight: 900;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: clamp(1px, 0.5vw, 3px);
	line-height: 1.2;
	word-wrap: break-word;
	padding: 0 1rem;
}

.hero-subtitle {
	font-size: clamp(0.8rem, 1.5vw, 1.4rem);
	color: var(--text-gray);
	margin-bottom: 2rem;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 0 1rem;
}

.hero-tagline {
	font-size: clamp(1rem, 2vw, 1.6rem);
	color: var(--text-light);
	margin-bottom: 4rem;
	font-weight: 500;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
	padding: 0 1.5rem;
}

/* Page Header */
.page-header {
	padding: 8rem 0 4rem;
	text-align: center;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(15, 15, 15, 0.98) 100%);
	border-bottom: 2px solid rgba(212, 175, 55, 0.3);
	position: relative;
	margin-top: 0;
}

.page-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary-gold) 0%, #ffffff 50%, var(--primary-gold) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 2;
}

.page-subtitle {
	font-size: clamp(1rem, 2vw, 1.3rem);
	color: var(--text-light);
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	line-height: 1.6;
}

/* Quick Service Selector */
.quick-service-selector {
	background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
	padding: 3.5rem 0;
	border-top: 2px solid rgba(212, 175, 55, 0.3);
	border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.quick-service-title {
	text-align: center;
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: var(--primary-gold);
	margin-bottom: 0.5rem;
}

.quick-service-subtitle {
	text-align: center;
	font-size: clamp(0.95rem, 1.5vw, 1.1rem);
	color: var(--text-gray);
	margin-bottom: 2.5rem;
}

.service-selector-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto;
}

.service-selector-card {
	background: linear-gradient(135deg, rgba(25, 25, 25, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%);
	border: 2px solid rgba(212, 175, 55, 0.25);
	border-radius: 20px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	text-decoration: none;
	display: block;
	position: relative;
	overflow: hidden;
}

.service-selector-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.service-selector-card:hover {
	transform: translateY(-8px) scale(1.03);
	border-color: var(--primary-gold);
	box-shadow: 0 15px 45px rgba(212, 175, 55, 0.4);
}

.service-selector-card:hover::before {
	opacity: 1;
}

.service-selector-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.2rem;
	transition: all 0.4s ease;
	position: relative;
	z-index: 2;
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.service-selector-card:hover .service-selector-icon {
	transform: rotate(360deg) scale(1.1);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.service-selector-icon i {
	font-size: 2.2rem;
	color: var(--darker-bg);
}

.service-selector-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-light);
	margin-bottom: 0.8rem;
	position: relative;
	z-index: 2;
}

.service-selector-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary-gold);
	font-weight: 600;
	font-size: 1rem;
	position: relative;
	z-index: 2;
}

.service-selector-card:hover .service-selector-arrow {
	gap: 0.8rem;
}

/* Contact Section */
.contact-section {
	padding: 5rem 0;
}

.section-title {
	text-align: center;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary-gold);
}

.section-subtitle {
	text-align: center;
	font-size: clamp(1rem, 2vw, 1.3rem);
	color: var(--text-gray);
	margin-bottom: 5rem;
	font-weight: 300;
	padding: 0 1rem;
}

/* Contact Info Cards */
.contact-card {
	background: linear-gradient(135deg, rgba(25, 25, 25, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%);
	border: 2px solid rgba(212, 175, 55, 0.25);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	margin-bottom: 2rem;
	transition: all 0.4s ease;
	height: 100%;
}

.contact-card:hover {
	border-color: var(--primary-gold);
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-icon i {
	font-size: 2rem;
	color: var(--darker-bg);
}

.contact-card h3 {
	font-size: 1.5rem;
	color: var(--text-light);
	margin-bottom: 1rem;
	text-align: center;
}

.contact-detail {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
	color: var(--text-gray);
	font-size: 0.95rem;
}

.contact-detail i {
	color: var(--primary-gold);
	margin-right: 1rem;
	margin-top: 3px;
	font-size: 1rem;
	width: 20px;
	flex-shrink: 0;
}

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

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

/* Form Section */
.form-section {
	background: linear-gradient(135deg, rgba(25, 25, 25, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%);
	border: 2px solid rgba(212, 175, 55, 0.25);
	border-radius: 20px;
	padding: 3rem 2rem;
	margin-bottom: 2rem;
}

.form-section h3 {
	font-size: 2rem;
	color: var(--primary-gold);
	margin-bottom: 1rem;
	text-align: center;
}

.form-section p {
	color: var(--text-gray);
	text-align: center;
	margin-bottom: 2rem;
}

/* Map Section */
.map-section {
	margin-top: 4rem;
	padding: 3rem 0;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.map-container {
	border-radius: 20px;
	overflow: hidden;
	border: 2px solid rgba(212, 175, 55, 0.25);
	height: 450px;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Google Reviews Section */
.reviews-section {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.95) 100%);
	padding: 5rem 0;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.review-header {
	text-align: center;
	margin-bottom: 3rem;
}

.google-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.rating-number {
	font-size: clamp(2.5rem, 5vw, 3rem);
	font-weight: 900;
	color: var(--primary-gold);
	font-family: 'Playfair Display', serif;
}

.stars {
	color: #FBBC04;
	font-size: 1.5rem;
}

.total-reviews {
	color: var(--text-gray);
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	margin-top: 0.5rem;
}

.review-card {
	background: rgba(20, 20, 20, 0.8);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 15px;
	padding: 2rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
	height: 100%;
}

.review-card:hover {
	border-color: var(--primary-gold);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.reviewer-info {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.reviewer-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 1rem;
	object-fit: cover;
	border: 2px solid var(--primary-gold);
}

.reviewer-name {
	font-weight: 600;
	color: var(--text-light);
	margin-bottom: 0.25rem;
	font-size: 1.1rem;
}

.review-stars {
	color: #FBBC04;
	font-size: 0.9rem;
}

.review-text {
	color: var(--text-gray);
	line-height: 1.8;
	font-size: 0.95rem;
}

/* Services Grid */
.services-section {
	padding: 6rem 0;
	position: relative;
}

.service-card {
	background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
	border: 2px solid rgba(212, 175, 55, 0.2);
	border-radius: 20px;
	padding: 3rem 2rem;
	height: 100%;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
	display: block;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.service-card:hover {
	transform: translateY(-15px) scale(1.02);
	border-color: var(--primary-gold);
	box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
}

.service-card:hover::before {
	opacity: 1;
}

.service-icon {
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	transition: all 0.5s ease;
	position: relative;
	z-index: 2;
}

.service-card:hover .service-icon {
	transform: rotate(360deg) scale(1.1);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.service-icon i {
	font-size: 2.5rem;
	color: var(--darker-bg);
}

.service-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-light);
	text-align: center;
	position: relative;
	z-index: 2;
}

.service-description {
	font-size: 1.05rem;
	color: var(--text-gray);
	line-height: 1.8;
	margin-bottom: 2rem;
	text-align: center;
	position: relative;
	z-index: 2;
}

.service-features {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	position: relative;
	z-index: 2;
}

.service-features li {
	padding: 0.8rem 0;
	color: var(--text-gray);
	border-bottom: 1px solid rgba(212, 175, 55, 0.1);
	font-size: 0.95rem;
	display: flex;
	align-items: center;
}

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

.service-features i {
	color: var(--primary-gold);
	margin-right: 1rem;
	font-size: 0.8rem;
}

.cta-button {
	background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
	color: var(--darker-bg);
	padding: 1rem 2.5rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
	text-decoration: none;
	display: inline-block;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
	color: var(--darker-bg);
}

/* Stats Section */
.stats-section {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
	padding: 4rem 0;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
	text-align: center;
	padding: 2rem 1rem;
}

.stat-number {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 900;
	color: var(--primary-gold);
	font-family: 'Playfair Display', serif;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	color: var(--text-gray);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 300;
}

/* Footer */
footer {
	background: var(--darker-bg);
	padding: 4rem 0 2rem;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
	margin-bottom: 3rem;
}

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

.footer-text {
	color: var(--text-gray);
	font-size: 0.95rem;
	line-height: 1.8;
}

.footer-link {
	color: var(--text-gray);
	text-decoration: none;
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.footer-link:hover {
	color: var(--primary-gold);
	transform: translateX(5px);
}

.footer-link i {
	margin-right: 1rem;
	color: var(--primary-gold);
	width: 20px;
	margin-top: 3px;
	flex-shrink: 0;
}

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

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

.footer-links-list a {
	color: var(--text-gray);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

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

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.social-icon {
	width: 50px;
	height: 50px;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-gold);
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background: var(--primary-gold);
	color: var(--darker-bg);
	transform: translateY(-5px);
}

.copyright {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(212, 175, 55, 0.1);
	color: var(--text-gray);
	font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	animation: float 2s ease-in-out infinite;
}

.scroll-indicator i {
	font-size: 2rem;
	color: var(--primary-gold);
}

/* Responsive */
@media (max-width: 991px) {
	.navbar-nav {
		padding-top: 1rem;
		align-items: flex-start;
	}

	.nav-link {
		padding: 0.75rem 0 !important;
	}

	.nav-link.active::after {
		display: none;
	}
}

@media (max-width: 768px) {
	.hero-section {
		min-height: auto;
		padding: 4rem 0;
	}

	.logo-container img {
		max-width: 200px;
	}

	.page-header {
		padding: 5rem 0 3rem;
	}

	.service-card {
		padding: 2rem 1.5rem;
		margin-bottom: 2rem;
	}

	.contact-card {
		padding: 2rem 1.5rem;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	.whatsapp-float, .call-float {
		width: 50px;
		height: 50px;
		bottom: 20px;
		right: 20px;
		font-size: 28px;
	}

	.call-float {
		width: 50px;
		height: 50px;
		bottom: 85px;
		right: 20px;
		font-size: 26px;
	}

	/* 2x1 Grid for Mobile - First two in row, hampers below */
	.service-selector-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.2rem;
	}

	.service-selector-card:nth-child(3) {
		grid-column: 1 / -1;
		max-width: 50%;
		margin: 0 auto;
	}

	.map-container {
		height: 300px;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 1.8rem;
		letter-spacing: 1px;
	}

	.hero-subtitle {
		font-size: 0.75rem;
	}

	.hero-tagline {
		font-size: 0.95rem;
	}

	.service-selector-icon {
		width: 70px;
		height: 70px;
	}

	.service-selector-icon i {
		font-size: 2rem;
	}

	.service-selector-name {
		font-size: 1.3rem;
	}
}

/* Policy Pages - Compact Styling */
.policy-section .contact-card {
	padding: 2rem 1.5rem;
	margin-bottom: 2rem;
	height: auto !important;
	min-height: auto !important;
}

.policy-section .contact-icon {
	width: 60px;
	height: 60px;
	font-size: 1.5rem;
	margin: 0 0 1rem 0 !important;
}

.policy-section h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.policy-section h5 {
	font-size: 1.1rem;
	margin-top: 1rem;
}

.policy-section ul {
	margin-bottom: 1rem;
}

/* Fix CTA Button Visibility */
.cta-button {
	background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%) !important;
	color: var(--darker-bg) !important;
	border: 2px solid var(--primary-gold) !important;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
	background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 100%) !important;
	color: var(--darker-bg) !important;
}

/* Transparent variant for secondary CTAs */
.cta-button-outline {
	background: transparent !important;
	color: var(--primary-gold) !important;
	border: 2px solid var(--primary-gold) !important;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.cta-button-outline:hover {
	background: var(--primary-gold) !important;
	color: var(--darker-bg) !important;
	transform: translateY(-3px);
}

/* Read More Testimonials Button Fix */
a[href*="testimonials"] {
	background: rgba(212, 175, 55, 0.2) !important;
	border: 2px solid var(--primary-gold) !important;
	color: var(--primary-gold) !important;
}

a[href*="testimonials"]:hover {
	background: var(--primary-gold) !important;
	color: var(--darker-bg) !important;
}

/* FAQ Section Fix */
.policy-section .contact-card {
	padding: 2rem;
	margin-bottom: 1.5rem;
	height: auto !important;
	min-height: auto !important;
}

.policy-section .contact-card h4 {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.policy-section .contact-card h4 i {
	flex-shrink: 0;
}

/* ============================================
   BOOKING FORM FIXES
   ============================================ */

/* Fix What Happens Next box */
.contact-card h5 {
	color: var(--primary-gold);
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.contact-card p {
	color: var(--text-gray);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Fix all form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 8px;
	color: var(--text-light) !important;
	font-size: 1rem;
	font-family: inherit;
}

/* Fix select dropdowns specifically */
select {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 1rem center !important;
	background-size: 12px !important;
	padding-right: 2.5rem !important;
}

/* Fix dropdown options */
select option {
	background: #1a1a1a !important;
	background-color: #1a1a1a !important;
	color: #ffffff !important;
	padding: 0.75rem !important;
}

/* Firefox specific fix */
@-moz-document url-prefix() {
	select option {
		background: #1a1a1a;
		color: #ffffff;
	}
}

/* Focus states */
input:focus,
select:focus,
textarea:focus {
	border-color: var(--primary-gold);
	outline: none;
	box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

/* Placeholder styling */
input::placeholder,
textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

/* Date input fix for webkit browsers */
input[type="date"]::-webkit-calendar-picker-indicator {
	filter: invert(1);
	cursor: pointer;
}

