/* --- CSS Variables for Easy Customization --- */
:root {
	--primary-color: #2c3e50; /* Dark Blue - Trust */
	--accent-color: #f39c12;  /* Orange/Yellow - Energy/Action */
	--text-dark: #333333;
	--text-light: #ffffff;
	--bg-light: #f4f6f7;
	--font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
	font-family: var(--font-main);
	color: var(--text-dark);
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

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

.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 5px;
	font-weight: bold;
	transition: all 0.3s ease;
	cursor: pointer;
}

.btn-primary {
	background-color: var(--accent-color);
	color: var(--text-light);
	border: 2px solid var(--accent-color);
}

.btn-primary:hover {
	background-color: #e67e22;
	border-color: #e67e22;
}

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

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

/* --- Header & Navigation --- */
header {
	background-color: var(--primary-color);
	color: var(--text-light);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
}

.nav-links {
	display: flex;
	gap: 20px;
}

.nav-links a:hover {
	color: var(--accent-color);
}

.cta-phone {
	font-weight: bold;
	color: var(--accent-color);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), 
                url('house.jpeg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}   

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 20px;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 30px;
}

.hero-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
}

/* --- Services Section --- */
.services {
	padding: 80px 0;
	background-color: var(--bg-light);
	text-align: center;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 10px;
	color: var(--primary-color);
}

.section-subtitle {
	margin-bottom: 50px;
	color: #666;
}

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

.service-card {
	background: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: var(--accent-color);
}

.service-card h3 {
	margin-bottom: 15px;
	color: var(--primary-color);
}

/* --- Trust/About Section --- */
.trust-section {
	padding: 70px 0;
	display: flex;
	align-items: center;
	gap: 50px;
}

.trust-content {
	flex: 1;
}

.trust-image {
	flex: 1;
	height: 400px;
	background-color: #ddd; /* Placeholder for image */
	border-radius: 8px;
	background-image: url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=800&q=80');
	background-size: cover;
	background-position: center;
}

.trust-features {
	margin-top: 20px;
}

.trust-features li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* --- Contact/CTA Section --- */
.cta-section {
	background-color: var(--primary-color);
	color: var(--text-light);
	padding: 60px 0;
	text-align: center;
}

.cta-section h2 {
	margin-bottom: 20px;
}

/* --- Footer --- */
footer {
	background-color: #1a252f;
	color: #bdc3c7;
	padding: 40px 0 20px;
	text-align: center;
}

.footer-links {
	margin-bottom: 20px;
}

.footer-links a {
	margin: 0 10px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2rem;
	}
	
	.nav-links {
		display: none; /* In a real site, add a hamburger menu */
	}

	.trust-section {
		flex-direction: column;
	}

	.trust-image {
		width: 100%;
		height: 250px;
	}
	
	.hero-buttons {
		flex-direction: column;
	}
}
