/* --- CSS STYLES --- */
:root {
	--bg-dark: #0a192f;
    --text-white: #ffffff; /* Changed from #e6f1ff to pure white for max contrast */
    --btn-red: #e53935; 
    --btn-red-hover: #c62828;
	--accent-gray: #2c3e50;
	--gold-color: #ffd700;
	--gold-dark: #b8860b;
	--green-solid: #28a745; /* New Green Color */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--bg-dark);
    color: var(--text-white);
	line-height: 1.6;
	overflow-x: hidden;
	padding-top: 110px; /* Changed from 80px to accommodate the trust bar */
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.95);
    padding: 0; /* Reset padding */
    z-index: 1000;
    border-bottom: 1px solid #333;
    display: flex;
    flex-direction: column; /* ✅ Forces vertical stacking */
    align-items: center;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0; /* ✅ Padding moved here */
    flex-shrink: 0; /* Prevents squishing */
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 20px;
	background-color: rgba(255,255,255,0.1);
	padding-right: 20px;
	border-radius: 0 10px 10px 0;
}

.logo-img {
	height: 60px;
	width: auto;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
	color: #ffffff;
	overflow: hidden;
}

.logo-text::before {
	content: attr(data-text);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		#004080 0%,
		#87CEEB 50%,
		#004080 100%
	);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: waterWave 3s linear infinite;
}
/* --- BEFORE/AFTER SLIDER STYLES --- */
.ba-slider {
	position: relative;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0,0,0,0.4);
	user-select: none;
	touch-action: none;
}

.ba-container {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9; /* Adjust if your images have a different ratio */
	background: #1e293b;
}

.ba-img {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.ba-img.before {
	clip-path: inset(0 50% 0 0);
	will-change: clip-path;
}

.ba-handle {
	position: absolute;
	top: 0; bottom: 0;
	left: 50%;
	width: 4px;
	background: #fff;
	transform: translateX(-50%);
	cursor: ew-resize;
	z-index: 10;
	box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

.ba-handle::before {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 44px; height: 44px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.ba-handle::after {
	content: '⟨ ⟩';
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	color: #334155;
	font-size: 18px;
	font-weight: 700;
	pointer-events: none;
}

.ba-label {
	position: absolute;
	top: 16px;
	padding: 6px 12px;
	background: rgba(0,0,0,0.65);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	border-radius: 6px;
	z-index: 5;
	pointer-events: none;
	backdrop-filter: blur(4px);
}
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; }

@media (max-width: 600px) {
	.ba-container { aspect-ratio: 4 / 3; }
	.ba-handle::before { width: 36px; height: 36px; }
	.ba-label { font-size: 11px; padding: 5px 10px; }
}
@keyframes waterWave {
	0% { background-position: 0% center; }
	100% { background-position: 200% center; }
}

.logo-text {
	text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* --- HAMBURGER MENU STYLES --- */

/* 1. Default State (Desktop): Hidden */
.hamburger {
    display: none; /* Hidden on desktop by default */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

/* 2. The Lines (Spans) */
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* 3. Active State (X Animation) */
.hamburger.active span:nth-child(1) {
    transform: translate(0, 9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translate(0, -9px) rotate(-45deg);
}

/* 4. Mobile View: Show Hamburger */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Show on mobile */
    }
    
    /* Ensure nav menu is hidden by default on mobile */
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
}

.nav-menu {
	display: flex; /* Shown on desktop */
	list-style: none;
	gap: 10px;
	background-color: rgba(0,0,0,0.2);
	padding: 10px 20px;
	border-radius: 50px;
}

.nav-menu li {
	display: inline-block;
}

nav a {
	color: var(--text-white);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	padding: 10px 20px;
	border-radius: 25px;
}

nav a.active {
	background-color: var(--btn-red);
	color: white;
	box-shadow: 0 4px 10px rgba(211, 47, 47, 0.4);
}

nav a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #88ccff;
}

.call-btn {
	background-color: var(--btn-red);
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
}
.call-btn:hover { background-color: var(--btn-red-hover); }

/* --- MOBILE RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
	.hamburger {
		display: flex; /* Show hamburger on mobile */
	}

	.nav-menu {
		position: absolute;
		top: 70px; /* Below the header */
		left: 0;
		width: 100%;
		background-color: var(--bg-dark);
		flex-direction: column;
		align-items: center;
		padding: 20px 0;
		border-bottom: 1px solid #333;
		gap: 0;
		display: none; /* Hidden by default on mobile */
	}

	.nav-menu.active {
		display: flex; /* Show when toggled */
	}

	.nav-menu li {
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}

	.nav-menu a {
		display: block;
		width: 100%;
		border-radius: 0;
	}

	.nav-menu a:hover {
		background-color: rgba(255, 255, 255, 0.1);
		color: #88ccff;
	}

	.logo-container {
		padding-right: 0;
		border-radius: 0;
		background-color: transparent;
	}

	body { padding-top: 100px; } /* Taller header on mobile */
	.video-hero, section { margin-top: 20px; }
}
/* --- FIX FOR EXCESSIVE SPACE AFTER HERO SECTION --- */
@media (min-width: 769px) {
	/* Remove the top margin for these specific sections on desktop */
	#services, #about, #testimonials {
		margin-top: 0 !important;
	}
	/* Increase hero section height for desktop */
	.video-hero {
		height: 80vh;
		min-height: 600px;
	}
	
	/* Optional: Adjust the hero text size for better proportion */
	.hero-text h1 {
		font-size: 3.5rem;
	}
}
/* --- MOBILE ADJUSTMENT FOR SPACE --- */
@media (max-width: 768px) {
	/* Adjust the margin for mobile to be tighter */
	#services, #about, #testimonials {
		margin-top: 20px !important;
	}
}
/* --- END MOBILE STYLES --- */

.video-hero {
	position: relative;
	height: 50vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
}

.video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Change this line */
	object-fit: cover;
	object-position: top; /* This forces the top of the video to be visible */
	z-index: 1;
}

.video-overlay {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background-color: rgba(10, 25, 47, 0.7);
	z-index: 2;
}

.hero-text {
	position: relative;
	z-index: 10;
	padding: 20px;
	text-align: center;
	color: white;
}

.hero-text h1 {
	font-size: 3rem;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 3px;
	background: linear-gradient(90deg, #004080 0%, #87CEEB 50%, #004080 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: waterWave 3s linear infinite;
}

.hero-text p {
	font-size: 1.5rem;
	color: #cccccc;
	font-family: 'Georgia', serif;
	font-style: italic;
	color: var(--gold-color);
	font-weight: 400;
	margin-top: 10px;
	border-top: 1px solid rgba(255, 215, 0, 0.3);
	padding-top: 10px;
	display: inline-block;
}

.treasure-section {
	padding: 20px 20px;
	text-align: center;
	background-color: var(--bg-dark);
}

.treasure-box {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px;
	border: 4px double var(--gold-color);
	border-radius: 10px;
	background-color: rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
	position: relative;
}

.treasure-box::before {
	content: "🔒 SECURED";
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--green-solid);
	color: white;
	padding: 8px 20px;
	font-size: 1rem;
	font-weight: bold;
	letter-spacing: 2px;
	border: 2px solid var(--gold-color);
	border-radius: 5px;
	z-index: 10;
	box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}

.treasure-text {
	font-size: 1.5rem;
	color: var(--gold-color);
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.treasure-subtext {
	font-size: 1.2rem;
	color: var(--text-white);
	margin-top: 10px;
}

section {
	padding: 10px 20px;
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 40px;
}

h2 { font-size: 2.5rem; margin-bottom: 40px; text-align: center; border-bottom: 2px solid var(--btn-red); display: inline-block; padding-bottom: 10px; }

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
    background-color: var(--accent-gray);
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	transition: transform 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.service-card:hover { transform: translateY(-5px); }

.service-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.service-title { font-size: 1.5rem; margin-bottom: 10px; color: #fff; }

.service-price {
    font-size: 1.25rem;
    color: var(--btn-red); /* Uses the new lighter red */
    font-weight: bold;
    margin: 15px 0;
    align-self: center;
}

.book-btn {
	background-color: var(--btn-red);
	color: white;
	padding: 12px 25px;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s;
	width: 100%;
	margin-top: auto;
}
.book-btn:hover { background-color: var(--btn-red-hover); }

.about-content {
	background-color: var(--accent-gray);
	padding: 40px;
	border-radius: 10px;
	text-align: center;
	font-size: 1.1rem;
}

#testimonial-bubble {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3000;
	background-color: rgba(10, 25, 47, 0.98);
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.exit-testimonial-btn {
	position: absolute;
	top: 30px;
	right: 30px;
	background-color: var(--btn-red);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 5px;
	font-size: 1.2rem;
	font-weight: bold;
	cursor: pointer;
	z-index: 3001;
	transition: background 0.3s;
}
.exit-testimonial-btn:hover { background-color: var(--btn-red-hover); }

.bubble-container {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	padding-top: 60px;
}

.bubble {
	position: absolute;
	background-color: var(--accent-gray);
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	max-width: 400px;
	width: 80%;
	border: 2px solid var(--gold-color);
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 1s ease-in-out, transform 1s ease-in-out;
	z-index: 1;
}

.bubble::before {
	content: "★★★★★";
	color: var(--gold-color);
	font-size: 1.2rem;
	margin-bottom: 15px;
	display: block;
	text-align: center;
}

.bubble-text {
	font-style: italic;
	font-size: 1.1rem;
	margin-bottom: 20px;
	line-height: 1.5;
}

.bubble-author {
	text-align: right;
	font-weight: bold;
	color: var(--gold-color);
	font-size: 1rem;
}

@keyframes fadeInScale {
	to { opacity: 1; transform: scale(1); }
}

.testimonial-container {
	background-color: var(--accent-gray);
	padding: 25px 10px;
	border-radius: 10px;
	text-align: center;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.testimonial-text {
	font-size: 1.3rem;
	font-style: italic;
	margin-bottom: 20px;
	color: var(--text-white); /* Ensure it's white, not gray */
	height: 150px;
	min-height: 150px;
	max-height: 150px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
}

.testimonial-author {
	font-weight: bold;
	color: var(--btn-red);
	margin-bottom: 30px;
	display: block;
	font-size: 1.1rem;
}

.controls { display: flex; gap: 15px; }
.control-btn {
	background-color: var(--btn-red);
	color: white;
	border: none;
	padding: 8px 16px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	transition: background 0.3s;
}
.control-btn:hover { background-color: var(--btn-red-hover); }

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	padding: 0px;
}

.gallery-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	transition: transform 0.3s;
	cursor: pointer;
}

.gallery-item img:hover { transform: scale(1.05); opacity: 0.8; }

.lightbox-container {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0px;
}

.lightbox-img {
	max-width: 100%;
	max-height: 70vh;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.close-lightbox-btn {
	background-color: var(--btn-red);
	color: white;
	padding: 10px 30px;
	border: none;
	border-radius: 5px;
	font-size: 1.2rem;
	cursor: pointer;
	margin-top: 20px;
}
.close-lightbox-btn:hover { background-color: var(--btn-red-hover); }

.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0; top: 0;
	width: 100%; height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.95);
	align-items: center;
	justify-content: center;
}

.modal-content-container {
	background-color: var(--accent-gray);
	padding: 20px;
	border-radius: 10px;
	width: 90%;
	max-width: 1000px;
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}

/* --- BOOKING MODAL ULTRA-COMPACT LAYOUT FIX --- */
#bookingModal .modal-content-container {
	max-width: 800px;
	padding: 30px;
}

#bookingModal form {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

/* Desktop: Line 1 is Full Name, Email, Phone */
#bookingModal .line-1 {
	grid-column: span 4;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
}

#bookingModal .line-1 label,
#bookingModal .line-1 input {
	width: 100%;
}

/* Desktop: Line 2 is Address, City, State, Zip */
#bookingModal .line-2 {
	grid-column: span 4;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 15px;
}

#bookingModal .line-2 label,
#bookingModal .line-2 input {
	width: 100%;
}

#bookingModal .checkbox-group {
	grid-column: span 4;
	margin-top: 10px;
	padding: 15px;
}

/* --- MOBILE RESPONSIVE (FIXED) --- */
@media (max-width: 768px) {
	#bookingModal .modal-content-container {
		width: 95% !important;
		padding: 20px;
		/* ADDED: Ensures modal scrolls properly on small screens */
		max-height: 90vh;
		overflow-y: auto;
	}

	#bookingModal form {
		grid-template-columns: 1fr;
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	#bookingModal .line-1,
	#bookingModal .line-2,
	#bookingModal .checkbox-group,
	#bookingModal .full-width {
		grid-column: auto;
		display: flex;
		flex-direction: column;
	}

	/* Mobile Order: Line 1 -> Line 2 -> Services -> Comments -> Button */
	#bookingModal .line-1 { order: 1; }
	#bookingModal .line-2 { order: 2; }
	#bookingModal .checkbox-group { order: 3; }
	#bookingModal .full-width { order: 4; }
	#bookingModal .submit-btn {
		order: 99;
	}

	/* --- ADDED: FIXES FOR ERROR BOX ON MOBILE --- */
	#formError {
		width: 100% !important;
		grid-column: auto !important; /* Resets grid span since parent is flex */
		margin-top: 20px !important;
		order: 999 !important; /* Forces it to render AFTER the submit button */
	}
}
/* --- END BOOKING MODAL ULTRA-COMPACT FIX --- */

.gold-glow-content {
	animation: goldenGlowContent 2s ease-out forwards;
}

@keyframes goldenGlowContent {
	0% { box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
	20% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5); }
	100% { box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
}

#callModal .modal-content-container {
	width: 33%;
	max-width: 400px;
}

.close-modal {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	top: 15px;
	right: 20px;
}

.close-modal:hover, .close-modal:focus { color: white; text-decoration: none; cursor: pointer; }

.phone-number-display { font-size: 2rem; font-weight: bold; color: var(--bg-dark); margin-top: 20px; display: block; }

form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.full-width { grid-column: span 2; }
label { display: block; margin-bottom: 5px; font-weight: bold; }
input, textarea, select {
	width: 100%; padding: 10px; border-radius: 5px; border: 1px solid #ccc; background-color: #1a2b45; color: white;
}

.checkbox-group { grid-column: span 2; background-color: rgba(0,0,0,0.2); padding: 20px; border-radius: 5px; }
.checkbox-item { display: flex; align-items: center; margin-bottom: 10px; gap: 10px; }
.checkbox-item input { width: auto; }

.submit-btn {
	grid-column: span 2;
	background-color: var(--btn-red);
	color: white; padding: 15px; font-size: 1.2rem; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s;
}
.submit-btn:hover { background-color: var(--btn-red-hover); }

.glow-effect {
	animation: goldenGlow 5s ease-out forwards;
}

@keyframes goldenGlow {
	0% { box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
	20% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5); }
	100% { box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
}

@media (max-width: 768px) {
	/* --- FIX FOR TESTIMONIAL TEXT CUT-OFF --- */
	.testimonial-text {
		height: auto !important;
		min-height: 250px;
		max-height: 250px;
		overflow-y: auto; /* Adds a scrollbar if text is too long */
		font-size: 1rem; /* Slightly smaller font for mobile */
	}
	/* ----------------------------------------- */
	.hero-text h1 { font-size: 2rem; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.logo-img { height: 40px; }
	.logo-text { font-size: 1.2rem; }
	.treasure-text { font-size: 1.2rem; }
	.treasure-subtext { font-size: 1rem; }
	.bubble { width: 90%; padding: 20px; }
	#callModal .modal-content-container {
		width: 90% !important;
		max-width: 95% !important;
		padding: 20px;
	}
}

/* --- TRUST BAR STYLES --- */
.trust-bar {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    flex-shrink: 0;
}

.trust-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.trust-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.trust-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.trust-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Brand Hover Colors */
.angi-link:hover { color: #0073cf; }
.ha-link:hover { color: #00A9E0; }
.fb-link:hover { color: #1877F2; }

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .trust-container { gap: 10px; }
    .trust-link { 
        font-size: 0.7rem; 
        padding: 3px 6px; 
    }
    .trust-icon { 
        width: 14px; 
        height: 14px; 
        margin-right: 4px; 
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-btn {
    white-space: nowrap; /* ✅ Prevents text from wrapping to multiple lines */
    flex-shrink: 0;      /* ✅ Prevents flexbox from squishing it */
}

@media (max-width: 768px) {
    .call-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

/* If you have any gray text, ensure it's light enough */
.text-muted {
    color: #b0bec5; /* This is a safe light gray for dark backgrounds */
}
/* --- WCAG AA CONTRAST FIXES --- */
/* Darken card/testimonial backgrounds slightly for better contrast */
.service-card,
.testimonial-container {
    background-color: #1a252f !important; /* Darkened base for guaranteed contrast */
}

.service-price,
.testimonial-author {
    color: #ff8a80 !important; /* Brighter red that passes 5.2:1 on dark bg */
    font-weight: 700 !important; /* Ensures bold rendering for accessibility */
}
/* Ensure testimonial body text has maximum contrast */
.testimonial-text {
    color: #ffffff;
}
/* --- BUTTON CONTRAST FIX --- */
.call-btn,
.book-btn,
.control-btn,
.exit-testimonial-btn,
.close-lightbox-btn,
.submit-btn {
    background-color: #c62828 !important; /* Darker red: 5.8:1 contrast with white */
    color: #ffffff !important;
    font-weight: 700 !important; /* Ensures bold rendering for accessibility */
}

.call-btn:hover,
.book-btn:hover,
.control-btn:hover,
.exit-testimonial-btn:hover,
.close-lightbox-btn:hover,
.submit-btn:hover {
    background-color: #b71c1c !important; /* Even darker on hover */
}