/* Service Page Specific Styles */

/* Hero Section */
.service-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content-service {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.service-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
}

/* Service Details */
.service-details {
  padding: 4rem 0;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}

.details-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.details-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.details-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #34495e;
}

.details-content p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-list svg {
  width: 20px;
  height: 20px;
  stroke: #27ae60;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tour-options {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.option-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #3498db;
}

.option-card h4 {
  margin-top: 0;
  color: #2c3e50;
}

.info-box {
  background: #e8f5e9;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #27ae60;
  margin: 1.5rem 0;
}

.info-box p {
  margin: 0.5rem 0;
  color: #2c5f2d;
}

.info-box strong {
  color: #1b5e20;
}

/* Sidebar */
.details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-self: flex-start;
}

.booking-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.booking-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-item svg {
  width: 24px;
  height: 24px;
  stroke: #3498db;
  flex-shrink: 0;
}

.info-item > div {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
}

.features-box {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
}

.features-box h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.features-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-box li {
  padding: 0.5rem 0;
  color: #555;
  font-size: 0.95rem;
}

/* Gallery Section */
.gallery-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.gallery-grid video,
.gallery-grid .gallery-video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-grid video:hover,
.gallery-grid .gallery-video:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 968px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: static;
  }

  .service-title {
    font-size: 2rem;
  }

  .service-subtitle {
    font-size: 1.125rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 640px) {
  .service-hero {
    height: 50vh;
    min-height: 350px;
  }

  .service-title {
    font-size: 1.75rem;
  }

  .service-subtitle {
    font-size: 1rem;
  }

  .details-content h2 {
    font-size: 1.5rem;
  }

  .details-content h3 {
    font-size: 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 250px;
  }
}