* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
	line-height: 1.7;
	color: #1a1a1a;
	background: #ffffff;
}
.about-image {
	flex: 1;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	height: 400px;
}

.carousel {
	position: relative;
	width: 100%;
	height: 100%;
}

.carousel img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.2) translateX(-20px) rotate(1deg);
	transition: opacity 1s ease-in-out, transform 2s ease-in-out;
	border-radius: 10px;
	filter: brightness(95%) contrast(105%);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.carousel img.active {
	opacity: 1;
	transform: scale(1) translateX(0) rotate(0deg);
}

/* Top Header */
.top-header {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #ffffff;
  padding: 0.75rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
	font-size: 0.9rem;
	font-weight: 400;
}

.top-header-left {
	display: flex;
	gap: 2rem;
}

.top-header-right {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.schedule-pickup {
	background: linear-gradient(135deg, #228b22 0%, #1a6b1a 100%);
	color: white;
	padding: 0.6rem 1.2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

.schedule-pickup:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

/* Main Header */
.main-header {
	background: linear-gradient(135deg, #f7f3e6 65%, #f4ebb9 35%);
  padding-left: 50px;
  padding-right: 50px;
	display: flex;
	padding-top: 10px;
	padding-bottom: 10px;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(34, 139, 34, 0.1);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.8rem;
	font-weight: 800;
	font-family: "Playfair Display", serif;
	color: #228b22;
	letter-spacing: -0.5px;
}

.logo img {
	height: 75px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-links {
	display: flex;
	gap: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: #374151;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	position: relative;
}

.nav-links a:hover {
	color: #228b22;
}

.nav-links a.active {
	color: #228b22;
}

.nav-links a.active::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(135deg, #228b22 0%, #1a6b1a 100%);
	border-radius: 1px;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, rgba(44, 83, 45, 0.5), rgba(51, 63, 39, 0.6)), url("images/mainImage.jpeg") no-repeat center center/cover;
  min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: white;
	position: relative;
  padding-left: 5vw;
  padding-right: 5vw;
}

.hero-content {
	max-width: 600px;
  padding: 0 4rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 4rem;
}

.hero-text h1 {
	font-size: 3rem;
	font-weight: 900;
	font-family: "Playfair Display", serif;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	letter-spacing: -1px;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-text p {
	font-size: 1rem;
	margin-bottom: 2.5rem;
	opacity: 0.95;
	font-weight: 400;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
}

.btn-primary {
	background: linear-gradient(135deg, #0e5329 0%, #0c590c 100%);
	color: white;
	padding: 1.2rem 2.5rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
	border: none;
}

.btn-secondary {
	background: transparent;
	color: white;
	padding: 1.2rem 2.5rem;
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.btn-secondary:hover {
	background: white;
	color: #1f2937;
}

.btn-primary:hover {
	background: #0e5329;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

/* About Section */

.about-section {
  padding: 6rem 4rem;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	position: relative;
	/* for watermark positioning */
	overflow: hidden;
}

/* Watermark styling */
.about-section::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 25%;
	width: 500px;
	height: 500px;
	background: url("images/logo.png") no-repeat center;
	background-size: contain;
	opacity: 0.2;
	/* subtle */
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 0;
}

.about-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 4rem;
	position: relative;
	/* ensures text is above watermark */
	z-index: 1;
}

.about-text {
	flex: 1;
}

.about-text h2 {
	font-size: 3rem;
	font-weight: 800;
	font-family: "Playfair Display", serif;
	margin-bottom: 1.5rem;
	color: #0f172a;
	letter-spacing: -0.5px;
}

.about-text p {
	font-size: 1.2rem;
	color: #475569;
	margin-bottom: 2.5rem;
	line-height: 1.8;
	font-weight: 400;
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: #374151;
}

.feature-icon {
	width: 40px;
	height: 40px;
	background: transparent;
	border: 2px solid #228b22;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0e5329;
	font-size: 1.2rem;
	font-weight: bold;
}

.about-image {
	flex: 1;
}

.about-image img {
	width: 100%;
  height: 100%;
  max-height: 450px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
	padding: 3rem 4rem;
	background: linear-gradient(135deg, #d7dcaf 0%, #e2e8f0 100%);
}

.services-header {
	text-align: center;
	margin-bottom: 3rem;
}

.services-header h2 {
	font-size: 3rem;
	font-weight: 800;
	font-family: "Playfair Display", serif;
	margin-bottom: 1rem;
	color: #0f172a;
	letter-spacing: -0.5px;
}

.services-header p {
	font-size: 1.1rem;
	color: #6b7280;
}

.service-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
}

.tab-button {
	padding: 1rem 2.5rem;
	border: 2px solid rgba(16, 185, 129, 0.2);
	background: white;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: #374151;
}

.tab-button:hover {
	border-color: #0e5329;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(34, 139, 34, 0.15);
}

.tab-button.active {
	background: linear-gradient(135deg, #228b22 0%, #1a6b1a 100%);
	color: white;
	box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
}

.services-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(34, 197, 94, 0.1);
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-icon {
	width: 80px;
	height: 80px;
	background: transparent;
	border: 3px solid #228b22;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: #0e5329;
	font-size: 2.2rem;
	font-weight: bold;
}

.service-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #0f172a;
	font-family: "Playfair Display", serif;
}

.service-card p {
	color: #475569;
	line-height: 1.7;
	font-size: 1rem;
}

.scroll-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
  max-width: 1100px;
	margin: 0 auto;
}

.scroll-card {
	flex: 0 0 320px;
	background: white;
	color: #333;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	position: relative;
}

.scroll-card:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.scroll-card h3 {
	margin-bottom: 15px;
	font-size: 1.4rem;
	color: #0e5329;
}
.scroll-card ul,
.scroll-card ol {
	padding-left: 18px;
}
.scroll-card p {
	line-height: 1.5;
}

/* Gradient highlight animation */
.scroll-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
	opacity: 0;
	transition: opacity 0.4s ease;
}
.scroll-card:hover::before {
	opacity: 1;
}

/* Statistics Section */
.stats-section {
	background: linear-gradient(135deg, #084720 0%, #257125 100%);
	color: white;
	padding: 6rem 4rem;
}
.stats-grid {
	display: grid;
  grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
.stat-icon {
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	font-weight: bold;
}
.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
}
.stat-label {
	font-size: 1rem;
	opacity: 0.9;
}
/* Commitment Section */
.commitment-section {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 5rem 4rem;
	text-align: center;
}

.commitment-content {
	max-width: 1200px;
	margin: 0 auto;
}

.commitment-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: #1f2937;
}

.commitment-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.commitment-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.commitment-icon {
	width: 90px;
	height: 90px;
	background: transparent;
	border: 3px solid #228b22;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #228b22;
	font-size: 2.5rem;
	font-weight: bold;
}

.commitment-item p {
	font-size: 1.1rem;
	color: #6b7280;
	font-style: italic;
	line-height: 1.6;
}

.nav-button {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #228b22 0%, #1a6b1a 100%);
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
}

.nav-button:hover {
	background: linear-gradient(135deg, #059669 0%, #047857 100%);
	transform: translateY(-3px);
	box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
}

/* Trusted By Section */
.trusted-section {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	padding: 6rem 4rem;
	text-align: center;
}

.trusted-content {
	max-width: 1200px;
	margin: 0 auto;
}

.trusted-content h2 {
	font-size: 3rem;
	font-weight: 800;
	font-family: "Playfair Display", serif;
	margin-bottom: 1rem;
	color: #0f172a;
	letter-spacing: -0.5px;
}

.trusted-content p {
	font-size: 1.2rem;
	color: #475569;
	margin-bottom: 3rem;
	font-weight: 400;
}

.companies-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 2rem;
}

.company-card {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-weight: 600;
	color: #1f2937;
	border: 1px solid rgba(34, 197, 94, 0.1);
	transition: all 0.3s ease;
}

.company-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.company-icon {
	color: #0e5329;
	font-size: 1.4rem;
}

/* Contact Section */
.contact-section {
  padding: 3rem 1.5rem;
}

.contact-container {
	max-width: 1000px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 2rem;
}

/* Left Info Cards */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.info-card {
	display: flex;
	align-items: flex-start;
	background: white;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.info-icon {
	min-width: 50px;
	min-height: 50px;
	border-radius: 50%;
	border: 2px solid #166534;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #166534;
	margin-right: 1rem;
	transition: background 0.3s, color 0.3s;
}

.info-card:hover .info-icon {
	background: #166534;
	color: white;
}

.info-card h4 {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 0.3rem;
}

.info-card p {
	margin: 0;
	color: #475569;
}

/* Right Form */
.contact-form {
	background: white;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
	display: flex;
	gap: 1rem;
	padding-left: 7.5px;
}
.form-row1 {
	gap: 1rem;
	margin-top: 15px;
	padding-left: 7.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 0.9rem;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	font-size: 1rem;
	transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: #166534;
	box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.15);
	outline: none;
	padding: 12px 14px;
}

/* Button */
.contact-form button {
	background: #0e5329;
	color: white;
	padding: 0.9rem 1.5rem;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: background 0.3s, transform 0.2s;
	margin-top: 25px;
}

.contact-form button:hover {
	background: #0e5329;
	transform: translateY(-2px);
}

/* Footer */
.footer {
	background: linear-gradient(135deg, #232c3e 0%, #111d30 100%);
	color: white;
	padding: 5rem 4rem 2rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-company h3 {
	color: #0e5329;
	font-size: 1.8rem;
	font-family: "Playfair Display", serif;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
}

.footer-company p {
	color: #9ca3af;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 45px;
	height: 45px;
	background: transparent;
	border: 2px solid #b3bbb3;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f7f7f7;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: bold;
}

.social-link:hover {
	background: #0e5329;
	color: white;
	transform: translateY(-2px);
}

.footer-column h4 {
	color: #0e5329;
	margin-bottom: 1rem;
	font-size: 1.2rem;
	font-weight: 700;
  width: auto;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 0.5rem;
}

.footer-column ul li a {
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-column ul li a:hover {
	color: #10b981;
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #9ca3af;
}

.footer-bottom a {
	color: #9ca3af;
	text-decoration: none;
	margin-left: 2rem;
}

.footer-bottom a:hover {
	color: #228b22;
}

.social-icons a {
	color: white;
	/* icon color */
	font-size: 24px;
	margin-right: 15px;
	text-decoration: none;
	transition: color 0.3s;
}

.social-icons a:hover {
	color: #90ee90;
	/* light green on hover */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.faq-section {
	margin: auto;
	padding: 80px 40px;
	background: linear-gradient(135deg, #f8faf8 0%, #e8f5e8 50%, #f0f4f0 100%);
	font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
	min-height: 100vh;
}

.faq-header {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}

.faq-header::before {
	content: "";
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, #4a7c59 0%, #5d8b6a 100%);
	border-radius: 2px;
}

.faq-section h2 {
	font-size: 3.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #2d3748 0%, #4a7c59 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}
.faq-title {
  font-size: 1.9rem;
    color: #4a5568;
    font-weight: 600;
}

.faq-subtitle {
	font-size: 1.1rem;
	color: #4a5568;
	font-weight: 400;
	margin-bottom: 10px;
}

.stats-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 25px;
	margin-bottom: 50px;
}

.stat-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 35px 25px;
	text-align: center;
	border: 1px solid rgba(74, 124, 89, 0.1);
	box-shadow: 0 15px 35px rgba(74, 124, 89, 0.08);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 50px rgba(74, 124, 89, 0.12);
	border-color: rgba(74, 124, 89, 0.2);
}

.stat-number {
	font-size: 2.8rem;
	font-weight: 800;
	color: #c4dccb;
	margin-bottom: 12px;
	text-shadow: 0 2px 10px rgba(74, 124, 89, 0.2);
}

.stat-label {
	color: #889b7b;
	font-size: 1.1rem;
	font-weight: 600;
}

.faq-container {
	display: grid;
	gap: 16px;
}

.faq-item {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	border: 1px solid rgba(74, 124, 89, 0.1);
	box-shadow: 0 12px 24px rgba(74, 124, 89, 0.06);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	max-width: 800px;
	margin: 0 auto 16px auto;
}

.faq-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #4a7c59 0%, #5d8b6a 100%);
	transform: scaleX(0);
	transition: transform 0.4s ease;
	transform-origin: left;
}

.faq-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 30px 60px rgba(74, 124, 89, 0.1);
	border-color: rgba(74, 124, 89, 0.2);
}

.faq-item:hover::before {
	transform: scaleX(1);
}

.faq-question {
	width: 100%;
	padding: 10px 15px;
	background: transparent;
	border: none;
	outline: none;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 600;
	color: #2d3748;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	transition: all 0.3s ease;
	position: relative;
}

.faq-question:hover {
	color: #4a7c59;
}

.question-icon {
	font-size: 1.5rem;
	margin-right: 16px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, rgba(74, 124, 89, 0.1) 0%, rgba(93, 139, 106, 0.1) 100%);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.faq-item:hover .question-icon {
	background: linear-gradient(135deg, #4a7c59 0%, #5d8b6a 100%);
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(74, 124, 89, 0.25);
}

.question-text {
	flex-grow: 1;
	margin-right: 16px;
	line-height: 1.4;
}

.arrow {
	font-size: 1rem;
	color: #718096;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #f7fafc;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fdf9 0%, #f0f9f1 100%);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-top: 1px solid rgba(74, 124, 89, 0.1);
	color: #2d3748;
	font-size: 1rem;
	line-height: 1.6;
	padding: 0 25px;
}

.faq-answer.open {
	max-height: 400px;
	padding: 20px 25px;
}

.faq-item.active .arrow {
	transform: rotate(180deg);
	background: linear-gradient(135deg, #4a7c59 0%, #5d8b6a 100%);
	color: white;
	box-shadow: 0 8px 25px rgba(74, 124, 89, 0.25);
}

.location-info {
	background: linear-gradient(135deg, #f0f9f1 0%, #e6f7e7 100%);
	border-radius: 12px;
	padding: 20px;
	margin-top: 12px;
	border-left: 4px solid #4a7c59;
	box-shadow: 0 6px 18px rgba(74, 124, 89, 0.08);
}

.location-item {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	font-size: 1.05rem;
	color: #2d3748;
	font-weight: 500;
}

.location-item:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.faq-section {
		padding: 60px 20px;
	}

	.faq-section h2 {
		font-size: 2.5rem;
	}

	.faq-question {
		padding: 25px 20px;
		font-size: 1rem;
	}

	.faq-answer {
		padding: 0 20px;
	}

	.faq-answer.open {
		padding: 25px 20px;
	}

	.question-icon {
		width: 45px;
		height: 45px;
		margin-right: 15px;
		font-size: 1.5rem;
	}

	.stats-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.stat-card {
		padding: 25px 20px;
	}

	.stat-number {
		font-size: 2.2rem;
	}

	.stat-label {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.stats-container {
		grid-template-columns: 1fr;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-header {
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .main-header {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .logo img {
    height: 48px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    justify-content: center;
  }

  .hero-section {
    min-height: 60vh;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-content {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .about-section {
    padding: 3rem 1rem;
  }

  .about-section::before {
    width: 260px;
    height: 260px;
    left: 50%;
  }

  .about-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding: 2rem 1rem;
  }

  .services-header h2 {
    font-size: 2rem;
  }

  .tab-button {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .stats-section {
    padding: 3rem 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-links a {
    font-size: 0.9rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .contact-form {
    padding: 1rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 260px;
  }

  .about-image img {
    max-height: 260px;
  }
}
/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  color: white;
  position: relative;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #333;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

/* Mobile responsive adjustments for floating WhatsApp */
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-whatsapp a {
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .floating-whatsapp {
    bottom: 15px;
    right: 15px;
  }
  
  .floating-whatsapp a {
    width: 50px;
    height: 50px;
  }
}
