/* --- Sky Clean NYC - Final Design Style --- */

/* --- Variables & Base --- */
:root {
    --primary-color: #2E8B57; /* SeaGreen from user code */
    --secondary-color: #1a1a1a; /* Dark text from user code */
    --accent-color: #66BB6A; /* Lighter Green for accents */
    --text-color: #333;
    --bg-color: #FFFFFF;
    --bg-alternate: #f8f9fa;
    --border-color: #e0e0e0;
    --font-family: 'Helvetica Neue', sans-serif; /* From user code */
    --container-width: 1140px;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --header-height: 80px; /* Adjusted header height */
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
table, td {
    border: 1px solid #999;
    padding: 10px;
}
tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
}
table, td {
    border: 1px solid #999;
    padding: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
    padding-top: var(--header-height); /* Add padding to prevent content overlap */
}

h1, h2, h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75em;
    line-height: 1.3;
}

h1 {
    font-size: 3rem; /* 48px */
    font-weight: 800; /* From user code */
}

h2 {
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    text-align: center;
}

h3 {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #246f47; /* Darker SeaGreen */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.section-padding {
    padding: 80px 0;
}

.alternate-bg {
    background-color: var(--bg-alternate);
}

.section-title {
    margin-bottom: 25px;
}

.cta-button, .btn-primary, .btn-secondary { /* Combined button styles */
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: #246f47; /* Darker green */
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: white;
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.nav-button{
    padding: 10px 20px !important;
    border-radius: 5px;
    color: #fff !important;
	border: 2px solid #2F6242;
	color: #2F6242 !important;
	background: #fff;
}
.nav-button:hover{
	background: #2F6242;
    color: #fff !important;
}

/* --- Header --- */
.header {
    background-color: var(--bg-color);
    height: var(--header-height);
    position: fixed; /* Changed from sticky */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 70px; /* Adjust as needed */
    max-height: 70px; /* From user code */
}

/* Desktop Navigation */
.main-nav {
    display: flex; /* Show nav on desktop */
}

.main-nav ul {
    display: flex;
    gap: 32px; /* From user code */
}

.main-nav a {
    color: var(--secondary-color);
    font-weight: 500; /* From user code */
    font-size: 16px;
    padding: 5px 0;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none; /* Hide hamburger on desktop */
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.menu-icon {
    width: 28px;
    height: 28px;
    color: var(--secondary-color);
    fill: currentColor;
}

/* Mobile Navigation Styles */
@media (max-width: 991px) { /* Breakpoint for hamburger menu */
    .main-nav {
        display: none; /* Hide horizontal nav */
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 300px; /* Adjust width as needed */
        max-width: 80%;
        height: 100vh;
        background-color: var(--bg-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: calc(var(--header-height) + 40px) 40px 40px 40px;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* Smooth slide */
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-active {
        display: block; /* Show when active */
        right: 0; /* Slide in */
    }

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
    }

    .main-nav a {
        font-size: 1.1rem;
        display: block;
    }

    .menu-toggle {
        display: block; /* Show hamburger */
        z-index: 1001; /* Above nav panel */
    }
}

/* --- Hero Section --- */

/* Desktop Hero (like screenshot) */
.hero {
    display: flex;
    align-items: center;
    justify-content: center; /* Center content */
    text-align: center;
    padding: 120px 40px; /* Adjusted padding */
    min-height: 60vh; /* Ensure minimum height */
   /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://elitedronewash.com/new-york/nyc-skyline.jpg') no-repeat center center; /* Background from screenshot/mobile */
    background-size: cover;
    color: #fff; /* White text on dark background */
}

.hero-content {
    max-width: 800px; /* Wider max-width for centered text */
	position: relative;
	z-index: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff; /* White text */
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px; /* Increased margin */
    color: #f0f0f0; /* Light gray text */
    max-width: 650px; /* Limit paragraph width */
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.hero-image { /* Hide the separate image div for this style */
    display: none;
}

/* Mobile Hero (as provided by user) */
@media (max-width: 767px) {
    .hero {
        padding: 60px 20px; /* Mobile padding */
        /*background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)); /* Mobile background image with light overlay */
        background-size: cover;
        color: #1a1a1a; /* Dark text on light overlay */
        min-height: auto;
    }
    .hero h1 {
        font-size: 28px;
        color: #fff; /* Dark text */
    }
    .hero p {
        font-size: 16px;
        color: #fff; /* Dark text */
        max-width: 400px;
        margin-bottom: 30px;
    }
    .hero-buttons {
        flex-direction: column; /* Stack buttons */
        align-items: center; /* Center buttons */
        gap: 15px;
    }
    .hero-buttons a {
        width: 80%; /* Make buttons wider */
        max-width: 300px;
        padding: 12px 24px; /* Adjust padding */
    }
    /* .hero-image remains display: none */
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-image{
	width: 100%;
    margin-bottom: 20px;
	overflow: hidden;
}
.service-image img{
	height: 150px;
	width: 100%;
}
.service-content{
	padding: 15px;
}
.service-card h3 {
    margin-bottom: 15px;
}

.service-buttons {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
	margin-bottom: 20px;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 20px; /* Add padding for easier clicking */
	border: 2px solid var(--primary-color);
	border-radius: 5px;
}

/* --- Testimonials Section --- */
.testimonials{
	background: #F8F9FA;
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    text-align: left;
}

.testimonial-card cite {
    font-style: normal;
    color: var(--secondary-color);
}

/* --- Contact Section --- */
.contact-subtitle {
    text-align: center;
    max-width: 600px;
	color: #fff;
    margin: 40px auto 40px auto;
}
.section-subtitle{
	text-align: center;
	margin-bottom: 25px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 991px) { /* Matches nav breakpoint */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-padding { padding: 60px 0; }
}

@media (max-width: 767px) { /* Matches mobile hero breakpoint */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .section-padding { padding: 50px 0; }
    .section-title { margin-bottom: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-buttons { flex-direction: column; gap: 15px; align-items: center; }
    .contact-buttons .cta-button { width: 80%; max-width: 300px; }
}

/* --- Icon Styling --- */
.service-icon,
.benefit-icon,
.check-icon,
.menu-icon {
    fill: currentColor;
}

/* === User Provided Styles - Why Choose Us === */
.features-section {
  max-width: 100%;
  margin: 0; /* Added margin */
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 16px; /* Added rounding */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04); /* Added subtle shadow */
}

.features-section h2 {
  font-size: 2.25rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.features-section p.subtext {
  color: #555;
  font-size: 16px;
  margin-bottom: 50px;
  max-width: 700px; /* Ensure subtitle doesn't stretch too wide */
  margin-left: auto; /* Center the subtitle block */
  margin-right: auto; /* Center the subtitle block */
}

.feature-grid {
  display: grid;
  /* Default to stacking or fewer columns on small screens */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Enforce 3 columns on medium screens and up */
@media (min-width: 769px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: #f1f3f4;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 10px;
  display:inline; /* Ensure icon is block */
}

.feature-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.feature-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .features-section {
    margin: 40px auto;
    padding: 40px 15px;
  }
  .features-section h2 {
    font-size: 26px;
  }
}

/* === User Provided Styles - KPI Stats === */
.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  background: #2d603d;
}

.stat-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 20px 24px;
  text-align: center;
  width: 240px;
  border: 2px solid #ddd;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
    margin-bottom: 15px !important;
    width: 45px;
    margin: 0 auto;
}

.stat-value {
  font-size: 32px;
  color: #2e8b57; /* SeaGreen */
  font-weight: bold;
  margin-bottom: 0;
}

.stat-title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.stat-description {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .stat-card {
    width: 100%;
    max-width: 300px;
  }
}

/* === User Provided Styles - Service Areas === */
.service-areas-section {
  max-width: 1200px;
  margin: 60px auto; /* Added top/bottom margin */
  overflow: hidden;
}

.service-areas-section h2 {
  font-size: 2.25rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-align: left;
}

.service-areas-section p.subtext {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}
.service-areas-content{
	width: 48%;
	margin-right: 2%;
	float: left;
}
.service-areas-map{
	width: 48%;
	margin-left: 2%;
	float: left;
}

.area-paragraphs {
  text-align: left;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.area-paragraphs p {
    margin-bottom: 1rem;
}

.area-paragraphs span {
  font-weight: bold;
  color: #2e8b57; /* SeaGreen */
}

.view-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 22px;
  background-color: #2e8b57; /* SeaGreen */
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.view-button:hover {
  background-color: #246f47; /* Darker SeaGreen */
}

@media (max-width: 600px) {
  .service-areas-section {
    padding: 40px 15px;
    margin: 40px auto;
  }
  .service-areas-section h2 {
    font-size: 26px;
  }
}

/* === User Provided Styles - Footer === */
.footer {
  background-color: #111;
  color: #f5f5f5;
  padding: 60px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer p, .footer a {
  font-size: 14px;
  color: #dcdcdc;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer a:hover {
  color: #2e8b57; /* SeaGreen */
}

.footer .brand {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer .slogan {
  font-size: 14px;
  color: #2e8b57; /* SeaGreen */
  margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #333; /* Added border */
  padding-top: 30px; /* Added padding */
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #f5f5f5;
}

.social-icons a:hover {
  color: #2e8b57; /* SeaGreen */
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}
.contact {
	background: #2d603d;
}
.contact .section-title{
	color: #fff;
}
/* === User Provided Styles - Cleaning Process === */
.process-section {
  max-width: 900px;
  margin: 60px auto;
  background: #fff;
  border-radius: 16px; /* Added rounding */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04); /* Added subtle shadow */
}

.process-section h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 10px;
}

.process-section .subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.step {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 60px; /* Space for number */
  margin-bottom: 40px;
}

.step::before {
  content: '';
  position: absolute;
  left: 19px; /* Center align with number */
  top: 45px; /* Start below number */
  bottom: -35px; /* Extend below content */
  width: 2px;
  background: #dcdcdc;
}

.step:last-child::before {
  display: none;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #2e8b57; /* SeaGreen */
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Ensure number is above line */
}

.step-content { /* Added wrapper for text */
    padding-top: 5px; /* Align text with top of number */
}

.step-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.step-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .process-section {
    padding: 40px 15px;
    margin: 40px auto;
  }
  .process-section h2 {
    font-size: 26px;
  }
  .step {
    padding-left: 50px; /* Adjust spacing */
  }
  .step::before {
    left: 14px; /* Adjust line position */
  }
}

@media (min-width: 300px) and (max-width: 900px){
	.service-areas-content{
		width: 100% !important;
		margin-right: 0 !important;
		float: none;
		margin-bottom: 20px;
	}
	.service-areas-map{
		width: 100% !important;
		margin-left: 0 !important;
		float: none !important;
	}
	.about-text {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}
	.about-image {
		width: 100% !important;
		float: none !important;
		padding-top: 20px;
	}
	.areas-grid{
		display: block !important;
	}
	.area-card{
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.form-group{
		width: 96% !important;
		float: none !important;
		margin: 5px 2% !important;
	}
}

@media (min-width: 900px) and (max-width: 1199px){
	.service-areas-content{
		width: 46%;
		margin-right: 2%;
		margin-left: 2%;
		float: left;
	}
	.service-areas-map{
		width: 46%;
		margin-left: 2%;
		margin-left: 2%;
		float: left;
	}
	.about-text {
		width: 48%;
		float: left;
		margin-right: 2%;
		margin-left: 2%;
	}
	.about-image {
		width: 46%;
		margin-left: 2%;
		margin-left: 2%;
		float: left;
	}
	
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #2d603d;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    margin-bottom: 0px;
}

.mobile-nav-list a {
    display: block;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mobile-cta {
    display: inline-block;
    margin-top: 15px;
}
@media (max-width: 768px) {
	.mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
}
@media (max-width: 576px) and (min-width: 300px) {
  #myVideo {
    height:600px !important;
    margin-left: -25%;
    width: 125%;
  }
  #myVideo2 {
    height:600px !important;
    width: 100%;
  }
  .hero-overlay{
    background-color: rgba(0,0,0,0.5) !important;
    height:600px !important;
  }
  .hero-overlay2{
    background-color: rgba(0,0,0,0.5) !important;
    height:599px !important;
  }
  .hero-content h1 {
    position: relative;
    z-index: 1;
    color:#fff !important;
  }
  hero{
    width:100%;
  }
}
#myVideo {
  min-width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  object-fit: fill !important;
  top: 0;
  height:700px;
  z-index:-1;
}
#myVideo2 {
  min-width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  object-fit: fill !important;
  top: 0;
  height:650px;
  z-index:-1;
}
.hero-overlay2{
  background-color: rgba(0,0,0,0.5);
  position: absolute;
  z-index:0;
  width: 100%;
  left:0;
  top:0;
  height: 650px;
}
.hero-overlay{
  background-color: rgba(0,0,0,0.1);
  position: absolute;
  z-index:0;
  width: 100%;
  left:0;
  top:0;
  height: 699px;
}
.hero-service{
	background: url("images/service-hero.jpg") !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: top center !important;
}
.hero-area{
	background: url("images/hero-area-bg.jpg") !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: top center !important;
}
.main-nav .active {
    color: var(--primary-color) !important;
}
.about-section{
    padding: 80px 0;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.about-text h2{
	text-align: left;
}
.about-text {
    width: 50%;
    float: left;
    margin-right: 4%;
}
.about-image {
    width: 46%;
    float: left;
}
.faq-section{
	padding: 80px 0;
	width: 100%;
	overflow: hidden;
	margin:  0 auto;
}
.faq-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.faq-question {
  padding: 20px;
  background-color: #f7f7f7;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.faq-question h3 {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 5px;
}
.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active .faq-question {
  background-color: var(--primary-color);
  color: #000;
}
.faq-contact{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding-top: 40px;
}
.quote-form {
    padding: 80px 0;
	width: 100%;
	overflow: hidden;
	margin:  0 auto;
}
.form-row {
    width: 100%;
    overflow: hidden;
}
.form-group {
    width: 46%;
    float: left;
    margin: 5px 2%;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
}
.contact-info{
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
    background: #2d603d;
	color: #fff;
}
.contact-info h2{
	color: #fff;
}
.centerText{
	text-align: center;
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.area-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
	color: #333;
}
.area-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}
.map-section{
	width: 100%;
    justify-content: center;
    padding: 60px 20px;
}
.thank-you-section{
	width: 100%;
    justify-content: center;
    padding: 60px 20px;
}
.blog-posts{
	width: 100%;
	margin: 0 auto;
	padding-top: 40px;
}
.post-card {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px;
}
.post-card {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px;
	text-align: left;
}
.post-image {
    width: 46%;
    float: left;
}
.post-content {
    width: 50%;
    float: left;
    margin-left: 4%;
	padding-top: 20px;
}
.centerLeft {
    text-align: left !important;
}
.post-meta{
	text-align: left;
}
.post-excerpt{
	text-align: left;
}
.post-title{
	text-align: left;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}
.btn-outline {
    background-color: transparent;
    border: 2px solid #000000;
    color: var(--text-light);
	 display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}
.posts-grid{
	padding-top: 60px;
	padding-bottom: 60px;
}
.listing-a{
	margin-left: 20px;
	margin-bottom: 25px;
}
.listing-a li{
	list-style: circle;
}
.centerLeft {
    text-align: left !important;
}
.divider{
	height: 40px;
}
/* Location dropdown styling */
.locations-dropdown {
  position: relative;
}

.locations-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  min-width: 200px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
	display: block;
}

.locations-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.locations-dropdown .dropdown-menu li {
  display: block;
  margin: 0;
  padding: 0;
}

.locations-dropdown .dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: #222;
  font-size: 14px;
  transition: all 0.2s ease;
	width: 100%;
}

.locations-dropdown .dropdown-menu a:hover,
.locations-dropdown .dropdown-menu a.active {
  background-color: #f8f8f8;
  color: #3d6b44;
}

.location-image img{
	height: 180px;
}