/* Styles for vision-trip-signup.html */
body {
  background-color: #f4f7f6;
}

/* Vision Trip Itinerary Section */
.vision-trip-itinerary-section {
  padding: 3rem 1rem;
  background: transparent;
}

.itinerary-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.itinerary-container h2 {
  background: linear-gradient(135deg, #456ba8 0%, #2c5282 100%);
  color: white;
  text-align: center;
  font-size: 2.2rem;
  margin: 0;
  padding: 2rem;
  font-weight: 700;
}

.trip-overview {
  padding: 2rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.trip-overview h3 {
  color: #456ba8;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.trip-dates {
  font-size: 1.3rem;
  color: #2c5282;
  margin-bottom: 1rem;
  text-align: center;
}

.trip-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
  text-align: center;
}

.trip-objectives {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #456ba8;
}

.trip-objectives h4 {
  color: #456ba8;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.trip-objectives ul {
  list-style-type: none;
  padding: 0;
}

.trip-objectives li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.trip-objectives li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.itinerary-schedule {
  padding: 2rem;
}

.itinerary-schedule h3 {
  color: #456ba8;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.day-item {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.day-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.day-header {
  background: linear-gradient(135deg, #456ba8 0%, #2c5282 100%);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.day-header h4 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.location {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

.day-content {
  padding: 1.5rem;
}

.day-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.day-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  line-height: 1.5;
}

.day-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #456ba8;
  font-weight: bold;
  font-size: 1.2rem;
}

.trip-highlights {
  padding: 2rem;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.trip-highlights h3 {
  color: #456ba8;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.highlight-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  text-align: center;
  transition: transform 0.2s ease;
}

.highlight-item:hover {
  transform: translateY(-2px);
}

.highlight-item h4 {
  color: #456ba8;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.highlight-item p {
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.important-notes {
  padding: 2rem;
  background: #fff3cd;
  border-top: 1px solid #ffeaa7;
}

.important-notes h3 {
  color: #856404;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.important-notes ul {
  list-style-type: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.important-notes li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #856404;
  line-height: 1.5;
}

.important-notes li::before {
  content: "⚠";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.vision-trip-signup-section {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 200px); /* Account for header & footer*/
}

.vision-trip-signup-container {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 720px;
}

.vision-trip-signup-container h2 {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;
}

fieldset {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 1.5rem;
}

legend {
  padding: 0 0.5rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 0.25rem;
}

.note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 1rem;
}

#pay-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Pricing Display Styles */
.pricing-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.pricing-display h3 {
  margin: 0 0 1.5rem 0;
  font-size: 1.25rem;
  color: #333;
  text-align: center;
  font-weight: 600;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

.cost-item:last-of-type {
  border-bottom: none;
}

.cost-item.total-cost {
  font-weight: 600;
  font-size: 1.1rem;
  color: #2c3e50;
  border-top: 2px solid #3498db;
  margin-top: 0.5rem;
  padding-top: 1rem;
}

.cost-item span:first-child {
  color: #555;
}

.cost-item span:last-child {
  font-weight: 500;
  color: #2c3e50;
}

.pricing-note {
  margin: 1rem 0 0 0;
  padding: 1rem;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #856404;
  text-align: center;
}

.pricing-note.info {
  background: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

.excluded {
  color: #dc3545;
  font-style: italic;
  font-size: 0.85rem;
}

.included {
  color: #28a745;
  font-style: italic;
  font-size: 0.85rem;
}

#plane-ticket-row {
  transition: opacity 0.3s ease;
}

#total-cost-display {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3498db;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .vision-trip-signup-container {
    padding: 1.5rem;
  }

  .radio-group,
  .checkbox-group {
    flex-direction: column;
  }

  /* Itinerary responsive styles */
  .vision-trip-itinerary-section {
    padding: 2rem 0.5rem;
  }

  .itinerary-container {
    border-radius: 8px;
    margin: 0 0.5rem;
  }

  .itinerary-container h2 {
    font-size: 1.8rem;
    padding: 1.5rem 1rem;
  }

  .trip-overview {
    padding: 1.5rem;
  }

  .trip-overview h3 {
    font-size: 1.5rem;
  }

  .trip-dates {
    font-size: 1.1rem;
  }

  .trip-description {
    font-size: 1rem;
  }

  .trip-objectives {
    padding: 1rem;
  }

  .itinerary-schedule {
    padding: 1.5rem;
  }

  .itinerary-schedule h3 {
    font-size: 1.5rem;
  }

  .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .day-header h4 {
    font-size: 1.1rem;
  }

  .location {
    font-size: 0.85rem;
  }

  .day-content {
    padding: 1rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .highlight-item {
    padding: 1rem;
  }

  .trip-highlights {
    padding: 1.5rem;
  }

  .trip-highlights h3 {
    font-size: 1.5rem;
  }

  .important-notes {
    padding: 1.5rem;
  }

  .important-notes h3 {
    font-size: 1.3rem;
  }

  .important-notes li {
    padding-left: 1.5rem;
  }
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .itinerary-container h2 {
    font-size: 2rem;
  }
}

/* Payment Method Selector Mobile Optimizations */
@media (max-width: 768px) {
  .payment-method-selector {
    margin-top: 1rem;
    padding: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
  
  .payment-method-selector h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .payment-method-selector {
    margin-top: 0.5rem;
    padding: 0.75rem;
    margin-left: 0;
    margin-right: 0;
  }
  
  .payment-method-selector h3 {
    font-size: 1.2rem;
  }
} 