/* ============================================================================
   BOOK.CSS - Book Page Specific Styles
   ========================================================================= */

/* ============================================================================
   SERVICES LIST SECTION (Book Page Only)
   ========================================================================= */

.services-section {
  padding: 80px 0;
  background: var(--color-bg-main);
}

.services-intro {
  text-align: center;
  margin-bottom: 60px;
}

.services-intro .section-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 15px;
}

.services-intro .section-subtitle {
  font-size: 18px;
  color: var(--color-grey);
  line-height: 1.6;
}

/* ============================================================================
   SERVICE CARDS - Horizontal Compact Layout
   ========================================================================= */

.services-section .mpa-grid-column {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 0!important;
}

.services-section .mpa-grid-column:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.services-section .mpa-loop-post-wrapper {
  display: grid;
  grid-template-columns: 200px 1fr;
  height: 140px;
}

/* Service Thumbnail */
.services-section .mpa-loop-post-thumbnail {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

.services-section .mpa-loop-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.services-section .mpa-grid-column:hover .mpa-loop-post-thumbnail img {
  transform: scale(1.05);
}

/* Service Content - Horizontal Layout */
.mpa-loop-post-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 0 25px;
  gap: 30px;
}

/* Service Info (Left Side) */
.mpa-service-info {
  flex: 1;
  min-width: 0;
}

.services-section .mpa-post-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
}

.services-section .mpa-post-title a {
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition-fast);
}

.services-section .mpa-post-title a:hover {
  color: var(--color-footer-bg);
}

/* Service Meta - Duration and Price on Same Line */
.mpa-service-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.services-section .mpa-service-attributes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-section .mpa-attribute-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-grey);
}

.services-section .mpa-duration-title {
  font-weight: 600;
  color: var(--color-text);
}

.services-section .mpa-service-price {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.services-section .mpa-price-title {
  font-weight: 600;
  color: var(--color-text);
}

.services-section .mpa-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-footer-bg);
}

/* Select Tour Button (Right Side) */
.service-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-footer-bg);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-family: 'LT Superior', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(7, 114, 149, 0.2);
  flex-shrink: 0;
}

.service-book-btn:hover {
  background: #055A75;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7, 114, 149, 0.35);
}

.service-book-btn svg {
  transition: transform 0.3s ease;
}

.service-book-btn:hover svg {
  transform: translateX(3px);
}

/* ============================================================================
   FAQ SECTION (Book Page Only)
   ========================================================================= */

.faq-section {
  padding: 80px 0;
  background: var(--color-white);
}

.faq-section .section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--color-bg-main);
  padding: 30px 35px;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 12px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-grey);
  margin: 0;
}

/* ============================================================================
   BOOK PAGE RESPONSIVE STYLES
   ========================================================================= */

@media (max-width: 1024px) {
  .services-section .mpa-loop-post-wrapper {
    grid-template-columns: 180px 1fr;
    height: 130px;
  }
  
  .mpa-loop-post-content {
    padding: 0 20px 0 20px;
    gap: 20px;
  }
  
  .services-section .mpa-post-title {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .services-section,
  .faq-section {
    padding: 60px 0;
  }
  
  .services-intro .section-title,
  .faq-section .section-title {
    font-size: 32px;
  }
  
  /* Stack service cards vertically on mobile */
  .services-section .mpa-loop-post-wrapper {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .services-section .mpa-loop-post-thumbnail {
    height: 200px;
  }
  
  .mpa-loop-post-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
  }
  
  .mpa-service-meta {
    width: 100%;
    justify-content: space-between;
  }
  
  .service-book-btn {
    width: 100%;
    justify-content: center;
  }
  
  .faq-item {
    padding: 25px 20px;
  }
  
  .faq-item h3 {
    font-size: 16px;
  }
}