/* booking.css */
/* Styles for the Safari Hero Section */
.booking-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
}

.booking-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.booking-content {
  flex: 1;
  max-width: 500px;
  margin-bottom: 150px;
}

.booking-heading {
  font-family: 'poppins', sans-serif;
  font-size: 3.5rem;
  color: #7a4a2b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.booking-description {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 30px;
  line-height: 1.6;
}

.booking-button {
  background-color: #e67e22;
  color: white;
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 156, 46, 0.3);
}

.booking-button:hover {
  background-color: #d18a25;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(233, 156, 46, 0.4);
}

.booking-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 150px;
}

.image-frame {
  border: 10px solid #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 550px;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 968px) {
  .booking-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  
  .booking-content {
    max-width: 100%;
  }
  
  .booking-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .booking-heading {
    font-size: 2.2rem;
  }
  
  .booking-description {
    font-size: 1rem;
  }
  
  .image-frame {
    border-width: 10px;
  }
}

.travel-proposal-section {
    background: #ffffff;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
}

.proposal-container {
    width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.proposal-header {
    text-align: left;
    margin-bottom: 40px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 30px;
}

.brand-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
}

.proposal-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.proposal-header p {
    font-size: 18px;
    color: #7f8c8d;
    margin: 0;
}

.proposal-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.features-list {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #eaeaea;
}

.features-list h2 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #34495e;
}

.features-list li i {
    color: #e67e22;
    margin-right: 12px;
    font-size: 18px;
}

.travel-form {
    width: 100%;
}

fieldset {
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 25px;
    background: #fff;
}

legend {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    padding: 0 15px;
}

.checkbox-group, .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.checkbox-label, .radio-label {
    display: flex;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #eaeaea;
    transition: all 0.2s ease;
}

.checkbox-label:hover, .radio-label:hover {
    background: #edf2f7;
}

.checkbox-label input, .radio-label input {
    margin-right: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2c3e50;
}

.slider-container {
    padding: 0 10px;
}

.slider {
    width: 100%;
    height: 5px;
    margin: 20px 0;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
    border-radius: 5px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #e67e22;
    border-radius: 50%;
    cursor: pointer;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 5px;
}

#days-value, #budget-value {
    font-weight: 600;
    color: #2c3e50;
}

.date-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}

.travellers-counter {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.counter-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.counter-group label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2c3e50;
}

.counter {
    display: flex;
    align-items: center;
}

.counter-btn {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-left: none;
    border-right: none;
    font-size: 16px;
}

.ages-container {
    margin-top: 20px;
}

.age-input {
    margin-bottom: 10px;
}

.age-input label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.age-input input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.half {
    flex: 1;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group.final {
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-btn:hover {
    background: #ff8c06;
}

.success-message {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-top: 30px;
}

.success-message i {
    font-size: 50px;
    color: #27ae60;
    margin-bottom: 20px;
}

.success-message h2 {
    font-size: 24px;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.success-message p {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0 0 10px 0;
}

.hidden {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .proposal-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 600px) {
    .travellers-counter {
        flex-direction: column;
        gap: 15px;
    }
    
    .checkbox-group, .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

.hidden { display: none !important; }
.error { outline: 2px solid #e55; }
.error-message { color: #b00; font-size: 0.9rem; margin-top: 6px; }
.submit-btn { display: inline-flex; align-items:center; gap:8px; padding:10px 16px; border-radius:8px; cursor:pointer; }
.submit-btn[disabled] { opacity: 0.7; cursor: not-allowed; }
.btn-spinner { animation: spin 1s linear infinite; display:inline-block; }
@keyframes spin { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }