/* Pond Construction Page Styles */

/* Stats Section */
.hero-stats-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fbbf24;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-description {
  font-size: 0.8rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .guide-cta-banner {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
  
  .guide-banner-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .guide-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
  }
  
  .guide-text-content h3 {
    font-size: 1.35rem;
  }
  
  .guide-text-content p {
    font-size: 0.95rem;
  }
  
  .guide-cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-icon {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}
.pond-construction-page {
  padding-top: 0;
  margin-top: 0;
}

/* Main Content */
.pond-construction-main-content {
  padding: 5rem 0;
  background: white;
}

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

/* Hero Section */
.construction-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* IMPORTANT: Top padding accounts for fixed header (DO NOT REMOVE) */
  padding-top: 100px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(29, 78, 216, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 2rem;
}

.hero-text-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title-highlight {
  color: #fbbf24;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Badge */
.hero-badge {
  margin-bottom: 1rem;
}

.badge-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1e293b;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

.stat-description {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .trust-item {
    padding: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cta-benefits {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* Trust Signals Section */
.trust-signals {
  background: #f8fafc;
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
}

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

.trust-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.trust-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* First Section Gradient */
.first-section-gradient {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 0 0 5rem 0; /* Remove top padding to eliminate gap after hero */
  padding-top: 0 !important;
  margin-top: 0 !important;
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #1e40af;
}

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

.step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

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

/* Pond Types */
.pond-types {
  padding: 5rem 0;
  background: white;
}

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

.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.type-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #1e40af;
}

.type-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.type-card:hover img {
  transform: scale(1.05);
}

.type-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 1.5rem 0 1rem;
  padding: 0 1.5rem;
}

.type-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
}

.type-card ul {
  list-style: none;
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

.type-card li {
  padding: 0.5rem 0;
  color: #64748b;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.type-card li::before {
  content: '✓';
  color: #1e40af;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Construction Features */
.construction-features {
  padding: 5rem 0;
  background: #f8fafc;
}

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

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

.feature-item {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #1e40af;
}

.feature-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

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

/* Materials & Construction */
.materials-construction {
  padding: 5rem 0;
  background: white;
}

.materials-construction h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
  -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;
  margin-top: 3rem;
}

.materials-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.materials-text h3:first-child {
  margin-top: 0;
}

.materials-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.materials-text li {
  padding: 0.5rem 0;
  color: #64748b;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.materials-text li::before {
  content: '✓';
  color: #1e40af;
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

/* Project Gallery */
.project-gallery {
  padding: 5rem 0;
  background: #f8fafc;
}

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

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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

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

.gradient-wipe-up {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

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

.reason-item {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.reason-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #1e40af;
}

.reason-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.reason-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

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

/* Service Areas */
.service-areas-section {
  padding: 5rem 0;
  background: white;
}

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

.service-areas-intro {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

.service-area-group {
  background: #f8fafc;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-area-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #1e40af;
}

.service-area-group h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cities-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.city-link {
  color: #1e40af;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.city-link:hover {
  color: #1d4ed8;
  border-bottom-color: #1d4ed8;
}

/* Testimonials Section */
.testimonials-section {
  background: #f8fafc;
  padding: 5rem 0;
}

.testimonials-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-rating {
  margin-bottom: 1rem;
}

.star {
  font-size: 1.2rem;
  margin-right: 0.25rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.testimonial-location {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.testimonial-project {
  color: #1e40af;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Portfolio Gallery */
.portfolio-gallery {
  padding: 5rem 0;
  background: white;
}

.portfolio-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

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

.enhanced-cta {
  padding: 6rem 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.benefit-icon {
  font-size: 1.2rem;
}

.cta-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.primary-button, .secondary-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.primary-button {
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
  color: white;
  border-color: #1e40af;
}

.primary-button:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.secondary-button {
  background: transparent;
  color: white;
  border-color: white;
}

.secondary-button:hover {
  background: white;
  color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* MOBILE-FIRST RESPONSIVE DESIGN */
/* Base mobile styles (default) */
.container {
  padding: 0 1rem;
}

.construction-process h2,
.pond-types h2,
.construction-features h2,
.materials-construction h2,
.project-gallery h2,
.why-choose-us h2,
.service-areas-section h2 {
  font-size: 1.5rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.types-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.features-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.gallery-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.reasons-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-areas-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cta-section h2 {
  font-size: 1.5rem;
  line-height: 1.3;
}

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

.primary-button, .secondary-button {
  width: 100%;
  max-width: 280px;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
}

/* Fix text truncation issues */
.step h3,
.type-card h3,
.feature-item h3,
.reason-item h3 {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
  line-height: 1.3 !important;
}

/* Mobile-optimized card padding */
.step,
.type-card,
.feature-item,
.reason-item,
.service-area-group {
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* Mobile-optimized typography */
.step h3 {
  font-size: 1.125rem;
}

.type-card h3 {
  font-size: 1.125rem;
}

.feature-item h3 {
  font-size: 1.125rem;
}

.reason-item h3 {
  font-size: 1.125rem;
}

/* Tablet breakpoint */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  
  .construction-process h2,
  .pond-types h2,
  .construction-features h2,
  .materials-construction h2,
  .project-gallery h2,
  .why-choose-us h2,
  .service-areas-section h2 {
    font-size: 2rem;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .materials-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .service-areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .primary-button, .secondary-button {
    width: auto;
    min-width: 150px;
  }
  
  .step,
  .type-card,
  .feature-item,
  .reason-item,
  .service-area-group {
    padding: 2rem;
  }
  
  .step h3,
  .type-card h3,
  .feature-item h3,
  .reason-item h3 {
    font-size: 1.25rem;
  }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .service-areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .step,
  .type-card,
  .feature-item,
  .reason-item,
  .service-area-group {
    padding: 2.5rem;
  }
}

/* Desktop breakpoint - ensure 2x2 layout */
@media (min-width: 768px) {
  .types-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Large desktop breakpoint */
@media (min-width: 1200px) {
  .types-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 1200px;
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .reasons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .service-areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .guide-cta-banner {
    padding: 1.5rem 1rem;
  }
  
  .guide-icon {
    width: 48px;
    height: 48px;
  }
  
  .guide-text-content h3 {
    font-size: 1.15rem;
  }
  
  .guide-text-content p {
    font-size: 0.9rem;
  }
  
  .step {
    padding: 1.5rem;
  }
  
  .type-card {
    margin: 0 0.5rem;
  }
  
  .feature-item, .reason-item {
    padding: 1.5rem;
  }
  
  .service-area-group {
    padding: 1.5rem;
  }
}

/* ========== MODERN REVAMP STYLES ========== */

/* Modern Stats Section */
.construction-stats-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.construction-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-card-modern {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.stat-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--stat-color), transparent);
}

.stat-card-modern:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 30px 80px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.stat-icon-modern {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.stat-number-modern {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--stat-color);
  margin-bottom: 0.5rem;
}

.stat-label-modern {
  font-size: 1.1rem;
  color: #374151;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-description-modern {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Guide CTA Banner */
.guide-cta-banner {
  margin-top: 3rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #93c5fd;
}

.guide-banner-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  text-align: left;
}

.guide-icon-wrapper {
  flex-shrink: 0;
}

.guide-icon {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 10px rgba(59, 130, 246, 0.2));
}

.guide-text-content {
  flex: 1;
}

.guide-text-content h3 {
  color: #1e40af;
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.guide-text-content p {
  color: #1e3a8a;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.guide-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Compact Trust Signals */
.trust-signals-compact {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 2rem 0;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.trust-badge-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.trust-badge-content {
  flex: 1;
}

.trust-badge-content h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.trust-badge-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

/* Interactive Pond Types */
.pond-types-interactive {
  background: #f8fafc;
  padding: 4rem 0;
}

.pond-types-interactive h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.pond-types-intro {
  text-align: center;
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.pond-type-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.pond-type-tab {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.pond-type-tab:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.pond-type-tab.active {
  background: #1e40af;
  color: white;
  border-color: #1e40af;
}

.pond-type-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pond-showcase-image {
  border-radius: 12px;
  overflow: hidden;
}

.showcase-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.pond-showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pond-tagline {
  color: #3b82f6;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.pond-showcase-content h3 {
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 1rem;
  font-weight: 700;
}

.pond-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.pond-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

.pond-meta-item {
  font-size: 1rem;
  color: #374151;
}

.pond-meta-item strong {
  color: #1e40af;
  margin-right: 0.5rem;
}

.pond-features-list {
  margin-bottom: 2rem;
}

.pond-features-list h4 {
  font-size: 1.25rem;
  color: #1e40af;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.pond-features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

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

.feature-icon {
  font-size: 1.5rem;
}

.feature-text {
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
}

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

/* Timeline Process */
.construction-process-modern {
  background: white;
  padding: 4rem 0;
}

.construction-process-modern h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.process-intro-modern {
  text-align: center;
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.process-infographic {
  max-width: 1000px;
  margin: 0 auto 4rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.process-infographic-img {
  width: 100%;
  height: auto;
  display: block;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(30, 64, 175, 0.3);
}

.timeline-line {
  width: 3px;
  flex: 1;
  background: linear-gradient(180deg, #3b82f6, #cbd5e1);
  margin-top: 1rem;
}

.timeline-content {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: #1e40af;
  margin-bottom: 1rem;
  font-weight: 700;
}

.timeline-content p {
  color: #4b5563;
  line-height: 1.7;
}

/* Materials Modern */
.materials-modern {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #cbd5e1 50%, #94a3b8 75%, #64748b 100%);
  padding: 4rem 0;
}

.materials-modern h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.materials-intro-modern {
  text-align: center;
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.materials-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.material-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.material-card h3 {
  font-size: 1.5rem;
  color: #1e40af;
  margin-bottom: 1rem;
  font-weight: 700;
}

.material-card p {
  color: #4b5563;
  line-height: 1.6;
}

.materials-showcase {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.materials-showcase-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Testimonials Modern */
.testimonials-modern {
  background: white;
  padding: 4rem 0;
}

.testimonials-modern h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.testimonials-intro-modern {
  text-align: center;
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 3rem;
}

.testimonials-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card-modern {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.testimonial-card-modern:hover {
  background: white;
  border-color: #3b82f6;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-quote {
  color: #374151;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.testimonial-author-info h4 {
  color: #1e40af;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testimonial-author-info .location {
  color: #6b7280;
  font-size: 0.875rem;
}

.testimonial-project-tag {
  background: #dbeafe;
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

/* FAQ Modern */
.faq-modern {
  background: #f8fafc;
  padding: 4rem 0;
}

.faq-modern h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.faq-intro-modern {
  text-align: center;
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 3rem;
}

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

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-card h3 {
  font-size: 1.25rem;
  color: #1e40af;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-card p {
  color: #4b5563;
  line-height: 1.7;
}

/* Portfolio Modern */
.portfolio-modern {
  background: white;
  padding: 4rem 0;
}

.portfolio-modern h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.portfolio-intro-modern {
  text-align: center;
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 3rem;
}

.portfolio-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.portfolio-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.portfolio-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 1.5rem;
  text-align: center;
}

.portfolio-info h3 {
  font-size: 1.25rem;
  color: #1e40af;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.portfolio-info p {
  color: #6b7280;
  font-size: 0.875rem;
}

.portfolio-cta-modern {
  text-align: center;
}

/* Mobile Responsive for Modern Styles */
@media (max-width: 1024px) {
  .stats-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
  }
  
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pond-type-showcase {
    grid-template-columns: 1fr;
  }
  
  .materials-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .construction-stats-section {
    padding: 3rem 0;
  }
  
  .stats-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }
  
  .stat-card-modern {
    padding: 2.5rem 2rem;
  }
  
  .stat-icon-modern {
    font-size: 3.5rem;
  }
  
  .stat-number-modern {
    font-size: 3.5rem;
  }
  
  .stat-label-modern {
    font-size: 1.15rem;
  }
  
  .stat-description-modern {
    font-size: 0.9rem;
  }
  
  .trust-badges,
  .faq-grid-modern,
  .testimonials-grid-modern,
  .portfolio-grid-modern {
    grid-template-columns: 1fr;
  }

/* FAQ Icon Enhancements */
.faq-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.faq-icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-card:hover .faq-icon-wrapper {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  transform: scale(1.1) rotate(5deg);
}

.faq-icon-svg {
  width: 26px;
  height: 26px;
  transition: all 0.3s ease;
}

.faq-card:hover .faq-icon-svg {
  transform: scale(1.05);
}

.faq-header h3 {
  margin: 0;
  flex: 1;
}

  
  .trust-badge {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .trust-badge-icon {
    font-size: 2.5rem;
  }
  
  .pond-type-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  
  .pond-type-tab {
    width: 100%;
  }
  
  .showcase-img {
    height: 300px;
  }
  
  .timeline-step {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }
  
  .step-number-circle {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}