/* ========================================
   Modal/Popup Styles
   ======================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 3% auto;
  padding: 0;
  border-radius: 20px;
  width: 85%;
  max-width: 700px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  position: relative;
  padding: 25px 30px;
  background: linear-gradient(135deg, #f8f6f3 0%, #e8ddd4 100%);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #8b6f47;
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(139, 111, 71, 0.1);
  transform: rotate(90deg);
}

.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #8b6f47;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.modal-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
}

.modal-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(139, 111, 71, 0.05);
  border-radius: 8px;
}

.feature-icon {
  width: 18px;
  height: 18px;
  background: #8b6f47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

.feature-text {
  font-size: 13px;
  color: #8b6f47;
  font-weight: 500;
}

.modal-body {
  padding: 25px 30px;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.service-option {
  border: 2px solid #e8ddd4;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-option:hover {
  border-color: #8b6f47;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 111, 71, 0.1);
}

.option-image {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.option-content {
  padding: 15px;
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.option-name {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #8b6f47;
  text-transform: capitalize;
}

.option-duration {
  background: #8b6f47;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.option-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #8b6f47;
  margin-bottom: 3px;
}

.option-membership {
  font-size: 11px;
  color: #999;
  margin-bottom: 10px;
}

.option-description {
  font-size: 12px;
  line-height: 1.3;
  color: #666;
  background: #f8f6f3;
  padding: 8px;
  border-radius: 6px;
}

.modal-book-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  background: #8b6f47;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  min-height: 44px;
}

.modal-book-btn:hover {
  background: #5d4a37;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 111, 71, 0.3);
}
