/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}
/* Section Wrappers */
.section-wrapper {
  display: flex;
  justify-content: center;
  padding: 1.25rem 1rem;
}

.section-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  flex: 1;
  width: 100%;
}

/* Design Section */
.section-design {
  padding: 2rem 0;
  margin-top: 60px;
}

.section-heading {
  color: #2c5926;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  padding: 1.25rem 1rem 1.5rem;
  border-bottom: 1px solid #dfe3de;
  margin-bottom: 2rem;
}

.design-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1rem;
}

.design-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.design-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.design-title {
  color: #131613;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 720px;
}

.design-description {
  color: #6e7f6c;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75;
  max-width: 720px;
}

.design-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  background-color: #f1f3f1;
  color: #2c5926;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2c5926;
  font-weight: 700;
  margin-top: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: text-decoration 0.3s;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-link .material-symbols-outlined {
  font-size: 0.875rem;
}

.design-images {
  flex: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.design-image-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.image-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.image-title {
  color: #131613;
  font-size: 1rem;
  font-weight: 700;
}

.image-text {
  color: #6e7f6c;
  font-size: 0.875rem;
}
/* Hardscape Section */
.section-hardscape {
  background-color: white;
  padding: 3rem 0;
}
.hardscape-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.hardscape-title {
  color: #131613;
  font-size: 1.5rem;
  font-weight: 700;
}

.hardscape-subtitle {
  color: #6e7f6c;
  font-size: 1rem;
  max-width: 800px;
}

.hardscape-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0 1rem;
}

.hardscape-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #dfe3de;
  background-color: #fcfdfc;
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.hardscape-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(44, 89, 38, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c5926;
}

.card-icon .material-symbols-outlined {
  font-size: 1.75rem;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-title {
  color: #131613;
  font-size: 1.125rem;
  font-weight: 700;
}

.card-text {
  color: #6e7f6c;
  font-size: 0.875rem;
  line-height: 1.75;
}

/* Maintenance Section */
.section-maintenance {
  background-color: #f1f3f1;
  padding: 4rem 0;
}

.maintenance-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.maintenance-heading {
  color: #2c5926;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.maintenance-subtitle {
  color: #131613;
  opacity: 0.8;
  max-width: 600px;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0 1rem;
}

.maintenance-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.maintenance-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.maintenance-image {
  height: 10rem;
  background-size: cover;
  background-position: center;
}

.maintenance-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.maintenance-icon-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2c5926;
}

.maintenance-icon-title .material-symbols-outlined {
  font-size: 1.5rem;
}

.maintenance-icon-title h3 {
  font-weight: 700;
  font-size: 1rem;
  color: #131613;
}

.maintenance-body p {
  font-size: 0.875rem;
  color: #6e7f6c;
}

/* Premium Section */
.section-premium {
  padding: 4rem 0;
}
.premium-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid #dfe3de;
}

.premium-heading {
  color: #2c5926;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 1rem;
}

.premium-featured {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #fcfdfc;
  border: 1px solid #dfe3de;
  border-radius: 0.75rem;
}

.featured-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #131613;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.featured-icon .material-symbols-outlined {
  font-size: 1.875rem;
}

.featured-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #131613;
  margin-bottom: 0.5rem;
}

.featured-text {
  color: #6e7f6c;
  margin-bottom: 1rem;
}

.featured-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.875rem;
  color: #131613;
  font-weight: 500;
}

.featured-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bullet {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #2c5926;
}

.premium-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.premium-service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #f9faf9;
}

.service-icon {
  color: #2c5926;
  font-size: 1.875rem;
}

.service-title {
  font-weight: 700;
  color: #131613;
}

.service-text {
  font-size: 0.875rem;
  color: #6e7f6c;
}


/* Responsive Styles */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-mobile {
    display: none;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-wrapper {
    padding: 1.25rem 10rem;
  }

  .design-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .hardscape-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .maintenance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .cta-buttons {
    flex-direction: row;
  }

  .footer-container {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .design-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .maintenance-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-title {
    font-size: 2.5rem;
  }
}
