/* Modern & Bold Pond Gallery Page Styles */
.pond-gallery-page {
  padding-top: 0;
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.pond-gallery-page.visible {
  opacity: 1;
}

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

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

/* Page Intro Section */
.page-intro {
  padding: 4rem 0;
  display: grid;
  gap: 3rem;
}

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

.intro-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid #e5e7eb;
}

.portfolio-overview {
  padding: 3rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 20px;
  border: 3px solid #1e40af;
  margin: 2rem 0;
}

.portfolio-overview h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1e40af;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-overview ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.portfolio-overview ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 600;
}

.portfolio-overview ul li i {
  color: #1e40af;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Featured Projects Section */
.featured-projects {
  padding: 3rem 0;
}

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

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

.project-content {
  padding: 1.5rem;
  background: #fff;
}

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

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

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

.project-filters button {
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  background: white;
  color: #64748b;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-filters button:hover {
  border-color: #1e40af;
  color: #1e40af;
  transform: translateY(-2px);
}

.project-filters button.active {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-color: #1e40af;
  color: white;
}

.project-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* Trust Badges Section - BOLD */
.trust-badges {
  padding: 3rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

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

.badge-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.badge-item i {
  font-size: 2.5rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.badge-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Gallery Filters - BOLD */
.gallery-filters {
  padding: 3rem 0 2rem;
  text-align: center;
}

.gallery-filters h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  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;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.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);
}

.filter-btn i {
  font-size: 1.1rem;
}

.filter-count {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 600;
}

.filter-count strong {
  color: #1e40af;
  font-weight: 800;
  font-size: 1.3rem;
}

/* Project Gallery Grid - MODERN */
.project-gallery {
  padding: 3rem 0;
}

.gallery-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;
  cursor: pointer;
}

.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-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 64, 175, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.overlay-content p {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge-type {
  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);
}

.badge-new {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  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(239, 68, 68, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.project-info {
  padding: 2rem;
}

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

.project-location {
  color: #64748b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.project-location i {
  color: #1e40af;
  margin-right: 0.5rem;
}

.project-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.feature-tag {
  background: #f0f9ff;
  color: #1e40af;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.feature-tag i {
  font-size: 0.7rem;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 2px solid #f1f5f9;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-weight: 700;
  font-size: 0.9rem;
}

.meta-item i {
  color: #1e40af;
  font-size: 1rem;
}

/* Lightbox Modal - PREMIUM */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-content {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  max-height: 90vh;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-image {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 90vh;
}

.lightbox-details {
  padding: 3rem;
  overflow-y: auto;
  background: white;
}

.lightbox-header h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.lightbox-location {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.lightbox-location i {
  color: #1e40af;
  margin-right: 0.5rem;
}

.lightbox-description {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.lightbox-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.lightbox-features li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.lightbox-features li i {
  color: #10b981;
  font-size: 1.2rem;
}

.lightbox-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 15px;
}

.meta-box {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
}

.meta-box i {
  font-size: 1.5rem;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.meta-label {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.meta-value {
  display: block;
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 800;
}

.lightbox-cta {
  background: linear-gradient(135deg, #1e293b, #334155);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 2rem;
}

.lightbox-cta h4 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

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

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

.why-choose-us h2 {
  font-size: 2.5rem;
  font-weight: 900;
  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;
}

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

.feature-box {
  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;
}

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

.feature-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;
}

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

.feature-icon i {
  font-size: 2rem;
  color: white;
}

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

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

/* Final CTA - BOLD */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
}

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

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

.cta-text > p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-benefits {
  list-style: none;
  padding: 0;
}

.cta-benefits li {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.cta-benefits li i {
  color: #10b981;
  font-size: 1.3rem;
}

.cta-buttons-wrapper {
  text-align: center;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-bottom: 1rem;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1e293b;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(251, 191, 36, 0.5);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.cta-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-top: 1rem;
}

/* 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) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

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

  .filter-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .gallery-filters h2 {
    font-size: 2rem;
  }

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

  .project-card {
    margin-bottom: 1rem;
  }

  .lightbox-modal {
    padding: 1rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .lightbox-details {
    padding: 2rem 1.5rem;
  }

  .lightbox-meta {
    grid-template-columns: 1fr;
  }

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

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

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 1rem 2rem;
  }
}

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

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

  .lightbox-header h2 {
    font-size: 1.5rem;
  }

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