/* Copied from service-pages.css of the static site */
/* Service Pages Styles */

/* Service Hero Section */
.service-hero {
  background: linear-gradient(135deg, #f09a10 0%, #e0890f 100%);
  padding: 80px 0;
  color: #000;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(0,0,0,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(0,0,0,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.service-hero-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-icon-large {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-icon-large .service-icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.service-hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}

/* Service Content Section */
.service-content {
  padding: 80px 0;
  background: #fff;
}

.service-description {
  max-width: 800px;
  margin: 0 auto;
}

.service-description h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 0 0 24px 0;
  text-align: center;
}

.service-description h3 {
  font-size: 28px;
  font-weight: 600;
  color: #f09a10;
  margin: 40px 0 16px 0;
  border-bottom: 2px solid #f09a10;
  padding-bottom: 8px;
}

.service-description p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 20px 0;
}

.service-description ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.service-description li {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin: 12px 0;
  padding-left: 24px;
  position: relative;
}

.service-description li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f09a10;
  font-weight: bold;
  font-size: 20px;
}

/* Gallery Section */
.service-gallery {
  padding: 80px 0;
  background: linear-gradient(135deg, #333 0%, #444 100%);
}

.service-gallery h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay { display: none !important; }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox-overlay.is-open { display: flex; }

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f09a10;
  color: #000;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(240,154,16,0.4);
}

.lightbox-close:before { content: '×'; font-size: 24px; line-height: 1; }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #f09a10;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(240,154,16,0.4);
}

.lightbox-arrow.left { left: -18px; }
.lightbox-arrow.right { right: -18px; }
.lightbox-arrow:before { font-size: 24px; line-height: 1; }
.lightbox-arrow.left:before { content: '‹'; }
.lightbox-arrow.right:before { content: '›'; }

/* Call to Action Section */
.service-cta {
  padding: 80px 0;
  background: #f8f9fa;
  color: #333;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.cta-content p {
  font-size: 20px;
  margin: 0 0 40px 0;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .service-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
  
  .service-icon-large .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-hero-text h1 {
    font-size: 36px;
  }
  
  .service-subtitle {
    font-size: 20px;
  }
  
  .service-description h2 {
    font-size: 28px;
  }
  
  .service-description h3 {
    font-size: 24px;
  }
  
  .service-description p {
    font-size: 16px;
  }
  
  .service-description li {
    font-size: 16px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .service-gallery h2 {
    font-size: 28px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-content p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 60px 0;
  }
  
  .service-content {
    padding: 60px 0;
  }
  
  .service-gallery {
    padding: 60px 0;
  }
  
  .service-cta {
    padding: 60px 0;
  }
  
  .service-hero-text h1 {
    font-size: 28px;
  }
  
  .service-subtitle {
    font-size: 18px;
  }
}


