/* General Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo img {
  height: 90px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
}

.hero {
  background: url('https://images.unsplash.com/photo-1615497001873-5d3c2e1f2d6b') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  color: rgb(0, 0, 0);
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(134, 123, 123, 0.281);
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.4rem;
}

.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services { background: #f9f9f9; }
.gallery { background: #e8f5e9; }
.contact { background: #f0f7f0; }
.about { background: #ffffff; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.services-note {
  text-align: center;
  margin-top: 2rem;
}

/* Carousel Styles */
.carousel {
  position: relative;
  max-width: 1000px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.carousel-slide {
  display: none;
  width: 100%;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 1.2rem;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}

.prev { left: 15px; }
.next { right: 15px; }

.carousel-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background: #2e7d32;
}

/* Google Form Embed */
.google-form {
  max-width: 800px;
  margin: 2rem auto;
  border: 2px solid #2e7d32;
  border-radius: 12px;
  overflow: hidden;
}

.contact-info {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.about-text {
  max-width: 800px;
  margin: 2rem auto;
  font-size: 1.1rem;
}

.about-tagline {
  text-align: center;
  font-size: 1.3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #2e7d32;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1rem;
  font-weight: bold;
}

footer {
  background: #1b5e20;
  color: white;
  text-align: center;
  padding: 2rem;
}