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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation */
nav {
  background-color: #2c5f2d;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.nav-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.nav-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-contact a:hover {
  color: #a8d5a8;
}

.nav-call-button {
  display: inline-block;
  background-color: #ffd700;
  color: #2c5f2d !important;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
}

.nav-call-button:hover {
  background-color: #ffc700;
  color: #1f4b20 !important;
}

.nav-text-button {
  display: inline-block;
  background-color: #fff;
  color: #2c5f2d !important;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
}

.nav-text-button:hover {
  background-color: #f2f2f2;
  color: #1f4b20 !important;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
}

.logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #a8d5a8;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2c5f2d 0%, #45a049 100%);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.hero-subtitle {
  font-size: 1rem;
  margin-top: 0.5rem;
  opacity: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.cta-button {
  display: inline-block;
  background-color: #ffd700;
  color: #2c5f2d;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #ffc700;
}

/* Section Styling */
section {
  padding: 4rem 2rem;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c5f2d;
  text-align: center;
}

section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

/* About Section */
.about {
  background-color: #f9f9f9;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.about-pair-heading {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: -1rem;
}

.about-pair-heading h3 {
  color: #2c5f2d;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.about-pair-heading p {
  color: #4b4b4b;
  margin: 0;
}

.about-pair-labels {
  font-weight: 700;
  color: #2c5f2d !important;
  margin-top: 0.35rem !important;
}

.about-image-card h3 {
  color: #2c5f2d;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  text-align: center;
}

.about-image-card img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: zoom-in;
}

.about-card-hidden {
  display: none;
}

.about-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.about-load-more-btn {
  background-color: #2c5f2d;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}

.about-load-more-btn:hover {
  background-color: #234c24;
}

.about-view-less-btn {
  background-color: #fff;
  color: #2c5f2d;
  border: 1px solid #2c5f2d;
}

.about-view-less-btn:hover {
  background-color: #f2f7f2;
}

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

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #2c5f2d;
  margin-bottom: 1rem;
}

/* Why Choose Section */
.why-choose {
  background-color: #f9f9f9;
}

.why-choose-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.why-choose-list li {
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #2c5f2d;
  font-weight: 600;
}

/* Reviews Section */
.reviews {
  background-color: #fff;
}

.reviews-stars {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.reviews-coming-soon {
  text-align: center;
  color: #2c5f2d;
  font-size: 1.5rem;
}

/* FAQ Section */
.faq {
  background-color: #f9f9f9;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #dcdcdc;
}

.faq-item h3 {
  color: #2c5f2d;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #4b4b4b;
}

/* Projects/Gallery Section */
.projects {
  background-color: #f9f9f9;
}

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

.project-item {
  background-color: #e0e0e0;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.95rem;
  text-align: center;
  padding: 1rem;
}

.project-item:hover {
  transform: scale(1.05);
}

.project-label {
  font-weight: bold;
  color: #666;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #2c5f2d 0%, #45a049 100%);
  color: #fff;
}

.contact h2 {
  color: #fff;
}

.contact-lead {
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-phone-heading {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-phone-heading a {
  color: #ffd700;
  text-decoration: none;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.contact-item h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-item p {
  font-size: 1.1rem;
}

.contact-item a {
  color: #ffd700;
  text-decoration: none;
}

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

.contact-item p strong {
  color: #ffd700;
  font-weight: bold;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  font-family: inherit;
}

.services-options {
  display: grid;
  gap: 0.5rem;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.checkbox-option input[type="checkbox"] {
  width: auto;
}

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

.submit-btn {
  background-color: #ffd700;
  color: #2c5f2d;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #ffc700;
}

.response-note {
  margin-top: 1rem;
  text-align: left;
  color: #fff;
  font-weight: 700;
}

/* Image Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1000;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(95vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.72);
}

.lightbox-prev {
  left: 1.25rem;
}

.lightbox-next {
  right: 1.25rem;
}

/* Footer */
footer {
  background-color: #1a3a1b;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

footer p {
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    padding: 0.6rem 0;
  }

  nav .container {
    padding: 0 0.85rem;
    gap: 0.6rem;
    flex-wrap: wrap;
  }

  .logo-link {
    font-size: 1.1rem;
    gap: 0.45rem;
  }

  .logo-link span {
    white-space: nowrap;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
  }

  .nav-contact {
    flex-direction: row;
    gap: 0.4rem;
    font-size: 0.8rem;
  }

  .nav-call-button,
  .nav-text-button {
    padding: 0.3rem 0.55rem;
    font-size: 0.82rem;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 0.4rem 1.1rem;
    margin-top: 0.1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.45rem 0.8rem;
  }

  .nav-links a {
    font-size: 0.95rem;
    display: inline-block;
    padding: 0.08rem 0.28rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.14);
    border: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
  }

  .hero {
    padding: 2.5rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    margin-top: 0.25rem;
  }

  .cta-button {
    margin-top: 0.35rem;
  }

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

  section h2 {
    font-size: 2rem;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    transform: none;
    padding: 0.6rem 0.85rem;
    font-size: 0.95rem;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }
}
