/* Global Styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #333;
  background: #fff;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #228B22;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #228B22;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  font-weight: bold;
  color: #fff;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.navbar ul li a.active {
  border-bottom: 2px solid #1E90FF;
}

/* Hero */
.hero {
  background: url('https://via.placeholder.com/1600x600') no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 8rem 2rem;
  margin-top: 70px;
}

.hero h1 {
  font-size: 2.5rem;
}

.cta-btn {
  background: #1E90FF;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  display: inline-block;
}

/* Sections */
section {
  padding: 3rem 2rem;
  text-align: center;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.card {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 5px;
  flex: 1 1 250px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 5px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input, .contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
  background: #228B22;
  color: white;
  padding: 6rem 2rem 2rem;
  margin-top: 70px;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin: 0;
}

/* Content Sections */
.content {
  max-width: 800px;
  margin: auto;
  text-align: left;
  line-height: 1.6;
}

.content h2 {
  margin-top: 2rem;
}

.services-list h2 {
  color: #228B22;
  border-bottom: 2px solid #1E90FF;
  padding-bottom: 0.5rem;
}

/* Intro Section */
.intro {
  background: #f8f8f8;
}

/* Testimonials */
.testimonials {
  background: #e8f5e8;
}

/* Map */
.map {
  padding: 0;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem;
}

footer p {
  margin: 0.5rem 0;
}

.social a {
  color: #1E90FF;
  text-decoration: none;
}

.social a:hover {
  text-decoration: underline;
}

/* Hover Effects */
.cta-btn:hover {
  background: #0066CC;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar ul li a:hover {
  color: #1E90FF;
  transition: color 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 1rem;
  }
  
  .navbar ul {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    padding: 6rem 1rem;
    margin-top: 120px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .service-cards {
    flex-direction: column;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  section {
    padding: 2rem 1rem;
  }
  
  .page-header {
    padding: 8rem 1rem 2rem;
  }
}

