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

:root {
	--emerald-green: #048c49;
	--light-green: #69b36d;
	--white: #ffffff;
	--dark: #222222;
	--gold: #ffd700;
	--light-gray: #f8f9fa;
	--medium-gray: #6c757d;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: var(--dark);
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

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

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

nav.scrolled {
	padding: 10px 0;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo {
	width: 100px;
	height: auto;
}

.logo-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 800;
	color: var(--emerald-green);
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 30px;
	align-items: center;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 600;
	transition: color 0.3s ease;
	font-size: 15px;
}

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

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--emerald-green);
	cursor: pointer;
}

/* Hero Section */
.hero {
	background: linear-gradient(
		135deg,
		var(--emerald-green) 0%,
		var(--light-green) 100%
	);
	color: var(--white);
	padding: 150px 20px 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
	animation: float 20s linear infinite;
}

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

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.hero-logo {
	width: 200px;
	height: auto;
	margin-bottom: 30px;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
	animation: fadeInDown 1s ease;
}

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

.hero h1 {
	font-size: 48px;
	margin-bottom: 20px;
	animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero p {
	font-size: 20px;
	margin-bottom: 40px;
	opacity: 0.95;
	animation: fadeInUp 1s ease 0.4s both;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease 0.6s both;
}

.btn {
	padding: 15px 35px;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
}

.btn-primary {
	background: var(--white);
	color: var(--emerald-green);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
}

.btn-secondary:hover {
	background: var(--white);
	color: var(--emerald-green);
	transform: translateY(-3px);
}

/* Section Styles */
section {
	padding: 80px 20px;
}

.section-title {
	text-align: center;
	font-size: 40px;
	margin-bottom: 15px;
	color: var(--dark);
}

.section-subtitle {
	text-align: center;
	font-size: 18px;
	color: var(--medium-gray);
	margin-bottom: 60px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* About Section */
.about {
	background: var(--light-gray);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text h3 {
	color: var(--emerald-green);
	font-size: 28px;
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
}

.coverall-badge {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	background: var(--white);
	padding: 20px 30px;
	border-radius: 10px;
	margin-top: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coverall-badge i {
	font-size: 40px;
	color: var(--emerald-green);
}

.coverall-text {
	font-weight: 600;
	color: var(--dark);
}

.about-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.stat-card {
	background: var(--white);
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}

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

.stat-number {
	font-size: 48px;
	font-weight: 800;
	color: var(--emerald-green);
	margin-bottom: 10px;
}

.stat-label {
	font-size: 16px;
	color: var(--medium-gray);
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.service-card {
	background: var(--white);
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-top: 4px solid var(--emerald-green);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(4, 140, 73, 0.2);
}

.service-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--emerald-green), var(--light-green));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 35px;
	color: var(--white);
}

.service-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--dark);
}

.service-card p {
	color: var(--medium-gray);
	font-size: 15px;
	line-height: 1.7;
}

/* Benefits Section */
.benefits {
	background: var(--light-gray);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.benefit-item {
	text-align: center;
}

.benefit-icon {
	width: 100px;
	height: 100px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 40px;
	color: var(--emerald-green);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
	transform: scale(1.1);
	background: var(--emerald-green);
	color: var(--white);
}

.benefit-item h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: var(--dark);
}

.benefit-item p {
	color: var(--medium-gray);
	font-size: 15px;
}

/* Testimonials Section */
.testimonials {
	background: var(--white);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.testimonial-card {
	background: var(--light-gray);
	padding: 35px;
	border-radius: 15px;
	position: relative;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quote-icon {
	font-size: 40px;
	color: var(--emerald-green);
	opacity: 0.3;
	position: absolute;
	top: 20px;
	left: 20px;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 20px;
	color: var(--dark);
	line-height: 1.8;
	position: relative;
	z-index: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-avatar {
	width: 50px;
	height: 50px;
	background: var(--emerald-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-weight: 700;
	font-size: 20px;
}

.author-info h4 {
	font-size: 16px;
	margin-bottom: 3px;
}

.author-info p {
	font-size: 14px;
	color: var(--medium-gray);
}

.stars {
	color: var(--gold);
	margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(
		135deg,
		var(--emerald-green) 0%,
		var(--light-green) 100%
	);
	color: var(--white);
	text-align: center;
	padding: 80px 20px;
}

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

.cta-section p {
	font-size: 20px;
	margin-bottom: 40px;
	opacity: 0.95;
}

/* Contact Section */
.contact {
	background: var(--light-gray);
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-top: 60px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: var(--white);
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-item-icon {
	width: 50px;
	height: 50px;
	background: var(--emerald-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 20px;
	flex-shrink: 0;
}

.contact-item-content h3 {
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--dark);
}

.contact-item-content p {
	color: var(--medium-gray);
	font-size: 15px;
}

.contact-item-content a {
	color: var(--emerald-green);
	text-decoration: none;
	font-weight: 600;
}

.contact-item-content a:hover {
	text-decoration: underline;
}

.contact-form {
	background: var(--white);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--dark);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 15px;
	font-family: 'Open Sans', sans-serif;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--emerald-green);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-btn {
	width: 100%;
	background: var(--emerald-green);
	color: var(--white);
	padding: 15px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
	background: var(--light-green);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(4, 140, 73, 0.3);
}

/* Map */
.map-container {
	margin-top: 60px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	height: 400px;
}

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

/* Footer */
footer {
	background: var(--dark);
	color: var(--white);
	padding: 60px 20px 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto 40px;
}

.footer-section h3 {
	font-size: 20px;
	margin-bottom: 20px;
	color: var(--white);
}

.footer-section p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 15px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--light-green);
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--emerald-green);
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}

/* Scroll to Top Button */
.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--emerald-green);
	color: var(--white);
	border: none;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-top:hover {
	background: var(--light-green);
	transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: var(--white);
		flex-direction: column;
		padding: 40px 20px;
		transition: left 0.3s ease;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-links.active {
		left: 0;
	}

	.mobile-menu-btn {
		display: block;
	}

	.hero h1 {
		font-size: 32px;
	}

	.hero p {
		font-size: 16px;
	}

	.section-title {
		font-size: 32px;
	}

	.about-content,
	.contact-container {
		grid-template-columns: 1fr;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.btn {
		width: 100%;
		max-width: 300px;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}
}

/* Loading Animation */
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.loading {
	animation: pulse 2s ease-in-out infinite;
}
