input::placeholder {
font-size: 16px; }

@media (max-width: 767.98px) {
  .postcode-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .postcode-row::-webkit-scrollbar { 
    display: none;
  }

  .postcode-row .form-group.col-md-4 {
    width: 33.33%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .postcode-row .form-group.col-md-4 label {
    font-size: 0.8rem;
    
  }

  .postcode-row .form-group.col-md-4 input {
    font-size: 1.3rem;
    padding: 0.5rem;
  }
}

/* Modern Excursion Card Styles */
.excursion-container {
  margin: 30px 0;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.excursion-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #f0f0f0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



.excursion-title {
  font-size: 28px;
  font-weight: 700;
  color: #2277bc;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: -0.5px;
}

.excursion-pricing {
  display: flex;
  justify-content: space-around;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 20px;
  pointer-events: none;
}

.price-item {
  text-align: center;
  padding: 20px 30px;
  background: #f8f9fa !important;
  border-radius: 15px;
  flex: 1;
  min-width: 200px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.price-item:hover,
.price-item:active,
.price-item:focus,
.price-item * {
  background: #f8f9fa !important;
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

.price-item *:hover,
.price-item *:active,
.price-item *:focus {
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  color: inherit !important;
}

/* Nuclear option - completely disable all interactions on pricing */
.excursion-pricing,
.excursion-pricing *,
.price-item,
.price-item *,
.price-label,
.price-amount,
.price-age-info {
  pointer-events: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -khtml-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;

}

.excursion-pricing:hover,
.excursion-pricing *:hover,
.price-item:hover,
.price-item *:hover,
.price-label:hover,
.price-amount:hover,
.price-age-info:hover {
  background: #f8f9fa !important;
  background-color: #f8f9fa !important;
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  color: inherit !important;
  opacity: 1 !important;
  filter: none !important;
}



.price-label {
  display: block;
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 1px;
  font-weight: 500;
}

.price-amount {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #2277bc;
  letter-spacing: -1px;
}

.price-age-info {
  display: inline-block;
  font-size: 14px;
  color: #6c757d;
  background: #e9ecef;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.excursion-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: auto;
}

.excursion-option {
  flex: 1;
  min-width: 200px;
  cursor: pointer;
}

.excursion-option input[type="radio"] {
  display: none;
}

.option-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  gap: 10px;
  text-align: center;
  min-height: 70px;
}

.yes-button {
  background:rgb(240, 240, 240);
  color: #2e7d32;
  border-color:rgb(233, 233, 233);
}

.no-button {
  background:rgb(240, 240, 240);
  color:rgb(103, 103, 103);
  border-color:rgb(233, 233, 233);
}









.yes-button:hover {
  background: #4caf50;
  color: white;
  border-color: #4caf50;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.no-button:hover {
  background: #f44336;
  color: white;
  border-color: #f44336;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(244, 67, 54, 0.3);
}

.excursion-option input[type="radio"]:checked + .yes-button {
  background: #4caf50;
  color: white;
  border-color: #4caf50;
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.excursion-option input[type="radio"]:checked + .no-button {
  background: #f44336;
  color: white;
  border-color: #f44336;
  box-shadow: 0 5px 20px rgba(244, 67, 54, 0.3);
}

.check-icon, .cross-icon {
  font-style: normal;
  font-size: 24px;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .excursion-card {
    padding: 25px 20px;
  }
  
  .excursion-title {
    font-size: 24px;
  }
  
  .price-item {
    padding: 15px 20px;
    min-width: 140px;
  }
  
  .price-amount {
    font-size: 26px;
  }
  
  .price-age-info {
    font-size: 12px;
    padding: 3px 10px;
    margin-top: 6px;
  }
  
  .option-button {
    padding: 15px 20px;
    font-size: 16px;
    min-height: 60px;
  }
  
  .excursion-buttons {
    gap: 15px;
  }
  
  .excursion-option {
    min-width: 150px;
  }
}
