/*
Theme Name: Chooza Clean
Theme URI: http://example.com/chooza-clean
Author: Eddgo
Author URI: http://example.com
Description: A clean starter theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: choozaclean
*/

:root {
	--color-deep-charcoal: #1C1E1F;
	--color-pale-yellow: #F6E1AD;
	--color-muted-peach: #F7C9B2;
	--color-sage-green: #C5D4CC;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	background-color: #ffffff;
	color: var(--color-deep-charcoal);
	font-family: 'Poppins', sans-serif;
	margin: 0;
	font-size: 1.25rem;
	overflow-x: hidden;
}

/* Global Typography */
h1, h2 {
	font-family: 'Ms Madi', cursive;
	color: var(--color-deep-charcoal);
}

h3, h4, h5, h6 {
	font-family: 'Arvo', serif;
	color: var(--color-deep-charcoal);
}

.content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Sticky Glassmorphic Header */
.site-header {
	position: fixed;
	top: 0;
	z-index: 1000;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 1rem 3rem; /* Spacing for desktop */
	box-sizing: border-box;

	/* Glassmorphism */
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Left: Branding */
.site-branding {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-logo-img {
	height: 60px;
	width: auto;
}

.site-title {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1;
}

.site-title a {
	font-family: 'Poppins', sans-serif;
	font-weight: 600; /* Semi-Bold */
	text-decoration: none;
	color: var(--color-deep-charcoal);
}

/* Right: Navigation */
.main-navigation {
	margin-left: auto;
	margin-right: 2rem;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2.5rem; /* Space between links */
}

.main-navigation a {
	text-decoration: none;
	color: var(--color-deep-charcoal);
	font-weight: 400;
	font-size: 1.1rem;
	transition: opacity 0.3s ease;
}

.main-navigation a:hover {
	opacity: 0.7;
}

/* Header Actions (Buttons) */
.header-actions {
	display: flex;
	gap: 1rem;
}

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 50px; /* Pill shape */
	text-decoration: none;
	color: var(--color-deep-charcoal);
	font-weight: 600;
	font-size: 1rem;
	transition: opacity 0.3s ease;
}

.btn:hover {
	opacity: 0.9;
}

.btn-pink {
	background-color: var(--color-muted-peach);
	color: var(--color-deep-charcoal);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-green {
	background-color: var(--color-sage-green);
	color: var(--color-deep-charcoal);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero-section {
	position: relative;
	height: 80vh;
	min-height: 400px;
	background-size: cover;
	background-position: center bottom;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	/* Pull hero up behind the sticky header for glass effect */
	padding-top: 85px;
}

/* Dark overlay for text readability */
.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.05);
}

.hero-content {
	position: relative; /* To sit above the overlay */
	z-index: 1;
}

.hero-text-exceptional {
	font-family: 'Ms Madi', cursive;
	font-size: 6rem;
	margin: 0;
	line-height: 1;
	color: #fff;
}

.hero-text-services {
	font-family: 'Arvo', serif;
	font-size: 4rem;
	font-weight: 700;
	margin: 1rem 0 0;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.btn-hero-quote {
	display: inline-block;
	margin-top: 2rem;
	padding: 1rem 2.5rem;
	border-radius: 15px; /* Rounded rectangle */
	text-decoration: none;
	color: var(--color-deep-charcoal);
	font-weight: 600;
	font-size: 1.2rem;
	
	/* Green Glassmorphism */
	background-color: var(--color-sage-green);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(206, 222, 215, 0.5);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	transition: background 0.3s ease, transform 0.3s ease;
}

.btn-hero-quote:hover {
	background: rgba(206, 222, 215, 0.55);
	transform: translateY(-3px);
}

/* Front Page Sections */
.who-we-are-section,
.why-choose-us-section,
.our-services-section,
.whats-included-section {
	padding: 5rem 0;
}

.our-services-section {
	background-color: var(--color-muted-peach);
}

.who-we-are-section {
	background-color: #fff;
}

.why-choose-us-section {
	background-color: var(--color-sage-green);
}

.who-we-are-section h2,
.why-choose-us-section h2,
.our-services-section h2,
.whats-included-section h2 {
	font-size: 5rem;
	margin-bottom: 0.5rem;
	line-height: 1.1;
}

.who-we-are-section h3,
.why-choose-us-section h3,
.our-services-section h3,
.whats-included-section h3 {
	font-size: 2.5rem;
	margin-top: 0;
	color: #C69C90;
	font-weight: 400;
}

.why-choose-us-content .btn {
	margin-top: 2rem;
	display: inline-block;
}

.our-services-section h3 {
	color: var(--color-deep-charcoal);
}

/* Who We Are Grid Layout */
.who-we-are-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.who-we-are-content {
	text-align: right;
}

.who-we-are-content .btn {
	margin-top: 2rem;
	display: inline-block;
}

/* Brick Grid */
.brick-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1.5rem;
	max-width: 500px;
}

.brick {
	aspect-ratio: 1;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.5rem;
	font-weight: 600;
	font-size: 1.1rem;
	color: #333;
	text-align: center;
}

.brick img {
	max-width: 80%;
	height: auto;
}

.brick-empty {
	background-color: var(--color-sage-green);
}

.brick-stat {
	background: linear-gradient(135deg, var(--color-sage-green), var(--color-pale-yellow));
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	color: var(--color-deep-charcoal);
}

.counter {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	color: var(--color-deep-charcoal);
	line-height: 1;
	display: inline-block;
}

.counter-wrapper {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	color: var(--color-deep-charcoal);
	line-height: 1;
}

.brick-label,
.brick-label-top {
	font-family: 'Ms Madi', cursive;
	font-size: 2rem;
}

/* Why Choose Us Section */
.why-choose-us-grid {
	display: grid;
	grid-template-columns: 4fr 6fr;
	gap: 4rem;
	align-items: center;
}

.why-choose-us-section h3,
.why-choose-us-section .reasons-list li::before {
	color: #fff;
}

.why-choose-us-content {
	text-align: left;
}

.why-choose-us-visual img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	display: block;
}

.reasons-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0 0;
}

.reasons-list li {
	margin-bottom: 1rem;
	position: relative;
	padding-left: 2rem;
	font-size: 1.2rem;
}

.reasons-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #C69C90;
	font-weight: bold;
}

/* Services Section */
.our-services-section .content-wrapper {
	max-width: 1600px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background-color: #fff;
	padding: 1.5rem 1rem;
	border-radius: 20px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	height: 120px;
	width: 120px;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-icon img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.service-card h4 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.service-card p {
	margin-bottom: 2rem;
	flex-grow: 1;
}

.btn-learn-more {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.75rem 1.5rem;
	border-radius: 15px;
	text-decoration: none;
	color: var(--color-deep-charcoal);
	font-weight: 600;
	font-size: 1rem;
	background-color: var(--color-sage-green);
	border: 1px solid rgba(206, 222, 215, 0.5);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	transition: background 0.3s ease, transform 0.3s ease;
}

.btn-learn-more:hover {
	background: rgba(206, 222, 215, 0.55);
	transform: translateY(-3px);
}

/* What's Included Section */
.whats-included-section {
	background-color: var(--color-pale-yellow);
}

.included-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.included-card {
	background-color: transparent;
	box-shadow: none;
	overflow: visible;
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.included-card:hover {
	transform: translateY(-5px);
}

.included-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 1;
}

.included-card-content {
	padding: 2rem;
	text-align: left;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	margin: -3rem 0 0;
	position: relative;
	z-index: 2;
	flex-grow: 1;
}

.included-card h4 {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: var(--color-deep-charcoal);
}

.included-card p {
	margin: 0;
	color: var(--color-deep-charcoal);
}

.section-note {
	text-align: center;
	margin-bottom: 2rem;
	font-style: italic;
}

.included-card ul {
	padding-left: 1.2rem;
	margin: 0;
}

.included-card li {
	margin-bottom: 0.5rem;
	font-size: 1rem;
	color: var(--color-deep-charcoal);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.who-we-are-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.who-we-are-content {
		text-align: center;
		order: -1; /* Put text on top on mobile */
	}
	
	.brick-grid {
		margin: 0 auto;
	}

	.why-choose-us-grid {
		grid-template-columns: 1fr;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.included-grid {
		grid-template-columns: 1fr;
	}
}

/* Get A Quote Section */
.get-a-quote-section {
	position: relative;
	padding: 6rem 0 20rem;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
	text-align: center;
}

.quote-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.quote-content {
	position: relative;
	z-index: 2;
}

.quote-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
	text-align: left;
}

.quote-info h2 {
	color: var(--color-deep-charcoal);
	font-size: 3.5rem;
	margin-bottom: 1rem;
	line-height: 1.1;
}

.quote-info p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.map-container {
	width: 100%;
	height: 400px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	border: 5px solid rgba(255, 255, 255, 0.5);
}

.quote-form-card {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
	border: 1px solid rgba(255, 255, 255, 0.5);
	text-align: left;
}

.quote-form-card h3 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	color: var(--color-deep-charcoal);
}

.form-intro {
	margin-bottom: 2rem;
	color: #666;
}

.form-progress {
	margin-bottom: 2rem;
}

.progress-bar {
	height: 6px;
	background: rgba(28, 30, 31, 0.1);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.progress-fill {
	height: 100%;
	background-color: var(--color-sage-green);
	transition: width 0.3s ease;
}

.progress-text {
	font-size: 0.85rem;
	text-align: right;
	color: var(--color-deep-charcoal);
	opacity: 0.7;
	margin: 0;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group.full-width {
	grid-column: span 2;
}

/* Material 3 Glassmorphic Inputs */
.material-textfield {
	position: relative;
}

.material-textfield input,
.material-textfield select,
.material-textfield textarea {
	width: 100%;
	padding: 1.5rem 1rem 0.5rem;
	font-size: 1rem;
	font-family: 'Poppins', sans-serif;
	color: var(--color-deep-charcoal);
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(28, 30, 31, 0.2);
	border-radius: 15px;
	outline: none;
	transition: all 0.3s ease;
	box-sizing: border-box;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.material-textfield input:focus,
.material-textfield select:focus,
.material-textfield textarea:focus {
	border-color: var(--color-sage-green);
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 0 0 2px rgba(197, 212, 204, 0.3);
}

.material-textfield label {
	position: absolute;
	left: 1rem;
	top: 1rem;
	color: var(--color-deep-charcoal);
	opacity: 0.7;
	font-size: 1rem;
	pointer-events: none;
	transition: 0.2s ease all;
	font-weight: 500;
}

/* Floating Label Logic */
.material-textfield input:focus ~ label,
.material-textfield input:not(:placeholder-shown) ~ label,
.material-textfield select:focus ~ label,
.material-textfield select:valid ~ label,
.material-textfield textarea:focus ~ label,
.material-textfield textarea:not(:placeholder-shown) ~ label {
	top: 0.25rem;
	font-size: 0.75rem;
	opacity: 1;
	color: var(--color-sage-green);
	font-weight: 600;
}

.checkbox-group {
	display: flex;
	align-items: center;
}

/* Material Checkbox */
.material-checkbox {
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	font-size: 1rem;
	user-select: none;
	color: var(--color-deep-charcoal);
}

.material-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	width: 24px;
	background-color: rgba(255, 255, 255, 0.5);
	border: 2px solid rgba(28, 30, 31, 0.4);
	border-radius: 6px;
	transition: all 0.2s ease;
}

.material-checkbox:hover input ~ .checkmark {
	background-color: rgba(255, 255, 255, 0.8);
}

.material-checkbox input:checked ~ .checkmark {
	background-color: var(--color-sage-green);
	border-color: var(--color-sage-green);
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.material-checkbox input:checked ~ .checkmark:after {
	display: block;
}

.material-checkbox .checkmark:after {
	left: 8px;
	top: 4px;
	width: 5px;
	height: 10px;
	border: solid var(--color-deep-charcoal);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Custom Dropdown */
.custom-dropdown {
	cursor: pointer;
}

.dropdown-arrow {
	position: absolute;
	right: 1rem;
	top: 1.2rem;
	font-size: 0.8rem;
	color: var(--color-deep-charcoal);
	pointer-events: none;
	transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-arrow {
	transform: rotate(180deg);
}

.custom-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(28, 30, 31, 0.1);
	border-radius: 15px;
	margin-top: 5px;
	z-index: 100;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	max-height: 250px;
	overflow-y: auto;
}

.custom-options.hidden {
	display: none;
}

.custom-option {
	padding: 1rem;
	cursor: pointer;
	transition: background 0.2s ease;
}

.custom-option:hover {
	background: var(--color-sage-green);
}

.form-step.hidden {
	display: none;
}

.quote-estimate {
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 1rem;
	border-radius: 10px;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	color: var(--color-deep-charcoal);
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.quote-disclaimer {
	font-size: 0.9rem;
	font-style: italic;
	margin-top: -1rem;
	margin-bottom: 1.5rem;
}

.form-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
}

#form-message {
	margin-top: 1rem;
	text-align: center;
	font-weight: 600;
}

/* Fat Footer */
.site-footer {
	margin-top: 0;
	position: relative;
	z-index: 10;
	padding: 4rem 0;
	
	/* Glassmorphism (White) */
	background: rgba(255, 255, 255, 0.7);
	color: var(--color-deep-charcoal);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.05);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr; /* 3 Columns */
	gap: 2rem;
	text-align: left;
}

.footer-brand-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.footer-brand-row .site-logo-img {
	height: 100px;
}

.footer-branding h2 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 2rem;
	margin-bottom: 0;
	line-height: 1;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	text-decoration: none;
	color: var(--color-deep-charcoal);
	transition: opacity 0.3s ease;
}

.footer-links a:hover {
	opacity: 0.7;
}

.footer-contact p a {
	text-decoration: none;
	color: var(--color-deep-charcoal);
}

.footer-social {
	margin-top: 1rem;
	display: flex;
	gap: 1rem;
}

.footer-social a {
	color: var(--color-deep-charcoal);
	font-size: 1.5rem;
	transition: color 0.3s ease;
}

.footer-social a:hover {
	color: var(--color-muted-peach);
}

.copyright {
	margin-top: 2rem;
	font-size: 1rem;
	opacity: 0.6;
}

/* Responsive Footer */
@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-brand-row {
		justify-content: center;
	}

	.quote-grid {
		grid-template-columns: 1fr;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}
	
	.form-group.full-width {
		grid-column: span 1;
	}

	.get-a-quote-section {
		padding-bottom: 45rem;
	}
	.site-footer {
		margin-top: -45rem;
	}

	.about-card-section {
		min-height: auto;
		padding: 0;
		display: block;
		background-position: top center;
	}

	.about-card-grid {
		display: block;
		padding: 0 1rem 1rem;
	}

	.about-glass-card {
		width: 100%;
		max-width: none;
		margin-top: 13rem;
	}
}

/* About Page Styles */
.about-page-wrapper {
	background-color: var(--color-pale-yellow);
	padding-top: 2rem;
	padding-bottom: 4rem;
	padding-top: 100px; /* Compensate for header */
}

.about-card-section {
	min-height: 70vh;
	margin: 2rem auto 4rem;
	width: 90%;
	max-width: 1400px;
	border-radius: 30px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	position: relative;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	overflow: hidden;
}

.about-card-grid {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
	padding: 2rem;
}

.about-card-grid.align-right {
	justify-content: flex-end;
}

.about-card-grid.align-left {
	justify-content: flex-start;
}

.about-glass-card {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: 3rem;
	border-radius: 20px;
	max-width: 550px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-glass-card h2 {
	font-size: 3.5rem;
	margin-top: 0;
	margin-bottom: 0.5rem;
	color: var(--color-deep-charcoal);
}

.about-glass-card p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.colored-line {
	width: 80px;
	height: 5px;
	border-radius: 5px;
	margin-bottom: 1.5rem;
}

.line-pink {
	background-color: var(--color-muted-peach);
}

.line-green {
	background-color: var(--color-sage-green);
}

/* Shimmer Animations */
@keyframes shimmer {
	0% { left: -100%; }
	100% { left: 200%; }
}

@keyframes textShimmer {
	0% { background-position: -200% center; }
	100% { background-position: 200% center; }
}

/* Button & Widget Shimmer Overlay */
.btn,
.btn-hero-quote,
.btn-learn-more,
.brick-stat {
	position: relative;
	overflow: hidden;
	transform: translateZ(0); /* Fix for shimmer bleeding on rounded corners */
	isolation: isolate;
}

.btn::before,
.btn-hero-quote::before,
.btn-learn-more::before,
.brick-stat::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		to right,
		transparent 0%,
		rgba(255, 255, 255, 0.4) 50%,
		transparent 100%
	);
	transform: skewX(-25deg);
	animation: shimmer 3s infinite;
	pointer-events: none;
}

/* Subheading Text Shimmer */
h3 {
	background: linear-gradient(
		to right,
		#C69C90 20%,
		#fff 50%,
		#C69C90 80%
	);
	background-size: 200% auto;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textShimmer 3s linear infinite;
}

/* Remove shimmer from specific sections */
.site-footer h3,
.quote-form-card h3,
.service-glass-content h3,
.faq-category h3 {
	background: none;
	-webkit-text-fill-color: currentColor;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	animation: none;
}

/* Specific Shimmer Colors for Different Sections */
.our-services-section h3 {
	background-image: linear-gradient(to right, var(--color-deep-charcoal) 20%, var(--color-muted-peach) 50%, var(--color-deep-charcoal) 80%);
}

.why-choose-us-section h3 {
	background-image: linear-gradient(to right, #fff 20%, var(--color-pale-yellow) 50%, #fff 80%);
}

.whats-included-section h3 {
	background-image: linear-gradient(to right, #C69C90 20%, var(--color-deep-charcoal) 50%, #C69C90 80%);
}

/* Services Page Styles */
.services-page-wrapper {
	background-color: var(--color-sage-green);
	padding-top: 2rem;
	padding-bottom: 4rem;
	padding-top: 100px; /* Compensate for header */
}

.services-page-wrapper .page-title {
	text-align: center;
	font-size: 4rem;
	margin-bottom: 3rem;
}

.services-page-grid {
	display: block;
}

.service-page-card {
	min-height: 70vh;
	margin: 2rem auto 4rem;
	width: 90%;
	max-width: 1400px;
	position: relative;
	border-radius: 30px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 2rem;
	transition: box-shadow 0.3s ease;
	isolation: isolate;
}

/* Background Image via Pseudo-element for Zoom Effect */
.service-page-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--bg-img);
	background-size: cover;
	background-position: center;
	transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: -1;
}

.service-page-card.expanded::before {
	transform: scale(1.1);
}

.service-page-card:nth-child(odd) {
	justify-content: flex-start;
}

.service-page-card:nth-child(even) {
	justify-content: flex-end;
}

.service-glass-content {
	position: relative;
	z-index: 1;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: 3rem;
	border-radius: 20px;
	max-width: 550px;
	width: auto;
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
	border: 1px solid rgba(255, 255, 255, 0.5);
	text-align: left;
	transition: all 0.5s ease;
}

.service-glass-content h3 {
	font-size: 2.5rem;
	margin-top: 0;
	margin-bottom: 0.5rem;
	color: var(--color-deep-charcoal);
}

.service-glass-content p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.service-glass-content .colored-line {
	margin: 0 0 1.5rem;
}

.service-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.service-actions .btn {
	flex: 1;
	text-align: center;
	box-sizing: border-box;
	min-width: 120px;
}

.expand-btn {
	cursor: pointer;
}

.service-details-wrapper {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.5s ease-out;
}

.service-details-inner {
	overflow: hidden;
}

.service-page-card.expanded .service-details-wrapper {
	grid-template-rows: 1fr;
}

/* FAQ Section */
.faq-section {
	padding: 5rem 0;
	background-color: var(--color-muted-peach);
}

.faq-section h2 {
	font-size: 5rem;
	text-align: center;
	margin-bottom: 4rem;
	line-height: 1.1;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	align-items: start;
}

.faq-category {
	margin-bottom: 2rem;
}

.faq-category h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--color-deep-charcoal);
	border-bottom: 3px solid var(--color-deep-charcoal);
	background: none;
	padding-bottom: 0.5rem;
	display: inline-block;
}

.faq-card {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 15px;
	margin-bottom: 1rem;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.faq-card summary {
	padding: 1.5rem;
	cursor: pointer;
	font-family: 'Arvo', serif;
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--color-deep-charcoal);
	list-style: none;
	position: relative;
	padding-right: 3rem;
}

.faq-card summary::-webkit-details-marker {
	display: none;
}

.faq-card summary::after {
	content: '+';
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	font-weight: 400;
	transition: transform 0.3s ease;
}

.faq-card[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-card p {
	padding: 0 1.5rem 1.5rem;
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-deep-charcoal);
}

@media (max-width: 768px) {
	.faq-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Scroll Animations */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Laptop Screens */
@media (max-width: 1200px) {
	html {
		font-size: 15px;
	}

	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero-text-exceptional {
		font-size: 5rem;
	}

	.hero-text-services {
		font-size: 3.5rem;
	}
}

/* Tablet Landscape / Small Laptop */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.included-grid {
		gap: 1.5rem;
	}
}

/* Mobile Menu & Responsive Styles */
.menu-toggle {
	display: none;
}

@media (max-width: 768px) {
	/* Typography Resizing */
	html {
		font-size: 14px; /* Base scale down */
	}

	h1, h2, 
	.who-we-are-section h2,
	.why-choose-us-section h2,
	.our-services-section h2,
	.whats-included-section h2,
	.faq-section h2 {
		font-size: 3rem;
	}

	h3,
	.who-we-are-section h3,
	.why-choose-us-section h3,
	.our-services-section h3,
	.whats-included-section h3 {
		font-size: 1.8rem;
	}

	.hero-text-exceptional {
		font-size: 4rem;
	}

	.hero-text-services {
		font-size: 2.5rem;
	}

	.quote-info h2 {
		font-size: 2.5rem;
	}

	/* Header & Navigation */
	.site-header {
		padding: 1rem;
		justify-content: space-between;
	}

	.site-branding {
		z-index: 1001;
	}

	.header-actions {
		display: none; /* Hide header buttons on mobile to save space */
	}

	.menu-toggle {
		display: block;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 0.5rem;
		z-index: 1001;
	}

	.menu-toggle .icon-bar {
		display: block;
		width: 25px;
		height: 3px;
		background-color: var(--color-deep-charcoal);
		margin: 5px 0;
		transition: all 0.3s ease;
	}

	/* Hamburger Animation */
	.menu-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
		transform: rotate(45deg) translate(5px, 6px);
	}
	.menu-toggle[aria-expanded="true"] .icon-bar:nth-child(3) {
		opacity: 0;
	}
	.menu-toggle[aria-expanded="true"] .icon-bar:nth-child(4) {
		transform: rotate(-45deg) translate(5px, -6px);
	}

	.main-navigation {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
		margin: 0;
	}

	.main-navigation.toggled {
		transform: translateX(0);
	}

	.main-navigation ul {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}

	.main-navigation a {
		font-size: 1.5rem;
	}

	/* Layout Stacking */
	.quote-grid {
		grid-template-columns: 1fr;
	}

	.map-container {
		height: 300px;
	}

	.service-page-card {
		padding: 0;
		min-height: auto;
		display: block;
		overflow: hidden;
		width: auto;
		border-radius: 20px;
		margin: 0 1rem 2rem 1rem;
	}

	.service-page-card::before {
		background-position: top center;
		background-size: 100% auto;
		background-repeat: no-repeat;
	}

	.service-glass-content {
		width: 100%;
		max-width: none;
		margin: 50vw 0 0 0;
		padding: 1.5rem;
		box-sizing: border-box;
		border-radius: 0;
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		overflow-wrap: break-word;
	}

	.service-glass-content h3 {
		font-size: 2rem;
	}

	.about-card-section {
		min-height: auto;
		padding: 0;
		display: block;
		background-position: top center;
		background-size: 100% auto;
		background-repeat: no-repeat;
		overflow: hidden;
		width: auto;
		border-radius: 20px;
		margin: 0 1rem 2rem 1rem;
	}

	.about-card-grid {
		display: block;
		padding: 0;
	}

	.about-glass-card {
		width: 100%;
		max-width: none;
		margin-top: 50vw;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 0;
		padding: 1.5rem;
		box-sizing: border-box;
		border-radius: 0;
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		overflow-wrap: break-word;
	}

	.about-glass-card h2 {
		font-size: 2.5rem;
	}

	body.menu-open {
		overflow: hidden;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	h1, h2, 
	.who-we-are-section h2,
	.why-choose-us-section h2,
	.our-services-section h2,
	.whats-included-section h2,
	.faq-section h2 {
		font-size: 2.5rem;
	}

	.hero-text-exceptional {
		font-size: 3rem;
	}

	.hero-text-services {
		font-size: 1.8rem;
	}
	
	.brick-grid {
		gap: 0.5rem;
	}
	
	.brick {
		padding: 0.5rem;
		border-radius: 15px;
	}
	
	.brick-label, .brick-label-top {
		font-size: 1.5rem;
	}
	
	.counter {
		font-size: 1.8rem;
	}
}

/* Mobile Menu Buttons */
.mobile-injected-btn { display: none; }
.main-navigation.toggled .mobile-injected-btn { display: block; margin: 10px 0; }
.mobile-injected-btn .btn { display: block; text-align: center; width: 100%; box-sizing: border-box; }

/* Material 3 Inspired Depth & Shadows */
:root {
	--elevation-1: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
	--elevation-2: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
	--elevation-3: 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 4px 8px 3px rgba(0, 0, 0, 0.15);
	--elevation-4: 0px 2px 3px rgba(0, 0, 0, 0.3), 0px 6px 10px 4px rgba(0, 0, 0, 0.15);
}

/* Header */
.site-header {
	box-shadow: var(--elevation-2);
}

/* Cards & Containers */
.service-card,
.included-card,
.quote-form-card,
.about-glass-card,
.service-page-card,
.faq-card,
.brick {
	box-shadow: var(--elevation-1);
		will-change: transform, box-shadow;
	transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.included-card {
	border-radius: 20px;
}

/* Interactive Hover States */
.service-card:hover,
.service-page-card:hover,
.included-card:hover {
	box-shadow: var(--elevation-3);
	transform: translateY(-4px);
}

/* Buttons */
.btn {
	box-shadow: var(--elevation-1);
	transition: all 0.2s ease-in-out;
}
.btn:hover {
	box-shadow: var(--elevation-2);
	transform: translateY(-1px);
}
.btn:active {
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
	transform: translateY(0);
}

/* Footer */
.site-footer {
	box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
	*, ::before, ::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}