/* Water Features Page Styles */
.water-features-page {
  padding-top: 0;
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.water-features-page.visible {
  opacity: 1;
}

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

/* Main Content Gradient */
.main-content-gradient {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  margin: 0;
  padding: 0;
}

/* Main Content Section */
.pond-gallery-main-content {
  padding: 4rem 0;
}

/* Page Introduction */
.page-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.page-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-intro p {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Intro Images */
.intro-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.intro-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.intro-image:hover {
  transform: scale(1.02);
}

/* Portfolio Overview */
.portfolio-overview {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
}

.portfolio-overview h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.portfolio-overview p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Featured Projects Section */
.featured-projects {
  margin-bottom: 4rem;
}

.featured-projects h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-projects > p {
  font-size: 1.2rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 3rem;
}

/* Project Filters */
.project-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 1rem 2rem;
  border: 3px solid #e5e7eb;
  background: white;
  color: #64748b;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  border-color: #1e40af;
  color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.filter-btn.active {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-color: #1e40af;
  color: white;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(30, 64, 175, 0.25);
  border-color: #1e40af;
}

.project-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.project-content {
  padding: 2rem;
}

.project-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.project-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 2px solid #f1f5f9;
  margin-bottom: 1.5rem;
}

.project-year {
  background: #f0f9ff;
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid #bfdbfe;
}

.project-features h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.project-features li:last-child {
  border-bottom: none;
}

.project-features li::before {
  content: '✓';
  color: #10b981;
  font-weight: bold;
  font-size: 1rem;
}

/* Why Choose Section */
.why-choose-section {
  padding: 5rem 0;
  background: white;
}

.why-choose-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 20px;
  border: 2px solid #e5e7eb;
  transition: all 0.4s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
  border-color: #1e40af;
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  font-size: 2rem;
  color: white;
  font-weight: bold;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-item h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
}

.benefit-item p {
  color: #64748b;
  line-height: 1.6;
  font-size: 1rem;
}

/* Design Process Section */
.design-process-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.design-process-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.process-step h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
}

.process-step p {
  color: #64748b;
  line-height: 1.6;
  font-size: 1rem;
}

/* Materials Section */
.materials-section {
  padding: 5rem 0;
  background: white;
}

.materials-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.materials-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.materials-text p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.materials-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.materials-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.materials-image:hover {
  transform: scale(1.02);
}

/* Store Info Section */
.store-info-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.store-info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.store-info-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.store-info-text p {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.store-details {
  margin-bottom: 2rem;
}

.store-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #64748b;
}

.store-detail i {
  color: #1e40af;
  font-size: 1.3rem;
  width: 20px;
}

.store-detail a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
}

.store-detail a:hover {
  text-decoration: underline;
}

.store-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-info-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Contact CTA Section */
.contact-cta {
  padding: 5rem 0;
  text-align: center;
  color: white;
  position: relative;
}

.contact-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Standard Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
  background: white;
  color: #1e40af;
  border: 2px solid #1e40af;
}

.btn-secondary:hover {
  background: #1e40af;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .materials-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .store-info-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .intro-images {
    grid-template-columns: 1fr;
  }

  .materials-images {
    grid-template-columns: 1fr;
  }

  .project-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
    justify-content: center;
  }

  .page-intro h2 {
    font-size: 2rem;
  }

  .featured-projects h2 {
    font-size: 2rem;
  }

  .why-choose-section h2 {
    font-size: 2rem;
  }

  .design-process-section h2 {
    font-size: 2rem;
  }

  .materials-section h2 {
    font-size: 2rem;
  }

  .store-info-text h2 {
    font-size: 2rem;
  }

  .contact-cta h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-intro h2 {
    font-size: 1.75rem;
  }

  .featured-projects h2 {
    font-size: 1.75rem;
  }

  .why-choose-section h2 {
    font-size: 1.75rem;
  }

  .design-process-section h2 {
    font-size: 1.75rem;
  }

  .materials-section h2 {
    font-size: 1.75rem;
  }

  .store-info-text h2 {
    font-size: 1.75rem;
  }

  .contact-cta h2 {
    font-size: 1.75rem;
  }

  .project-content h3 {
    font-size: 1.25rem;
  }

  .portfolio-overview {
    padding: 2rem;
  }
}
