/* booking-style.css */
.nd-booking-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.nd-booking-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.nd-booking-form {
    background: #fff;
    padding: 0;
}

.nd-booking-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 30px 0;
    color: #1a1a1a;
}

.nd-form-group {
    margin-bottom: 24px;
}

.nd-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.nd-form-group input[type="text"],
.nd-form-group input[type="email"],
.nd-form-group input[type="tel"],
.nd-form-group input[type="number"],
.nd-form-group input[type="date"],
.nd-form-group select,
.nd-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.nd-form-group input:focus,
.nd-form-group select:focus,
.nd-form-group textarea:focus {
    outline: none;
    border-color: #5a6c7d;
    background-color: #fff;
}

.nd-form-group small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #666;
}

.nd-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.nd-checkbox-group {
    display: flex;
    align-items: center;
}

.nd-checkbox-group label {
    display: flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.nd-checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

.nd-submit-btn {
    background-color: #5a6c7d;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.nd-submit-btn:hover {
    background-color: #4a5c6d;
}

.nd-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.nd-pricing-details {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.nd-pricing-details h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.nd-price-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    color: #333;
}

.nd-price-line span:first-child {
    font-weight: 400;
}

.nd-price-line span:last-child {
    font-weight: 500;
}

.nd-price-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 0 0;
    margin-top: 20px;
    border-top: 2px solid #e0e0e0;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.nd-error-message {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.nd-success-message {
    background-color: #efe;
    border: 1px solid #cfc;
    color: #3c3;
    padding: 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nd-booking-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .nd-pricing-details {
        position: relative;
        top: 0;
        order: -1;
    }
}

@media (max-width: 600px) {
    .nd-booking-container {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .nd-pricing-details {
        padding: 20px;
    }
    
    .nd-booking-title {
        font-size: 20px;
    }
    
    .nd-pricing-details h3 {
        font-size: 24px;
    }
    
    .nd-submit-btn {
        width: 100%;
    }
}

/* Loading Spinner */
.nd-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.nd-booking-payment-page {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.nd-booking-summary p, .nd-payment-section p {
    margin: 4px 0;
}
.nd-submit-btn {
    background-color: #3182ce;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}
.nd-submit-btn:hover {
    background-color: #2b6cb0;
}


#customer-details{
   display: flex;
    flex-wrap: wrap;
    column-gap: 9px;
}
/* ND Auto Booking Form Styles */
.nd-auto-booking-container {
    width: 100%;
  display: flex;
  justify-content: center;
  background: #f7f9fc;
  font-family: 'Inter', sans-serif;
}

.nd-auto-booking-wrapper {
  max-width: 700px;
  width: 100%;
  background: #f9fdff;
  padding: 15px;
}

.nd-auto-booking-title {
  text-align: center;
  font-size: 1.8rem;
  color: #2b2b2b;
  margin-bottom: 25px;
}

.nd-auto-form-group {
  margin-bottom: 18px;
}

.nd-auto-form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.nd-auto-form-group input,
.nd-auto-form-group textarea,
.nd-auto-form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.nd-auto-form-group input:focus,
.nd-auto-form-group textarea:focus,
.nd-auto-form-group select:focus {
  border-color: #0073aa;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
}

.nd-auto-form-group small {
  display: block;
  margin-top: 5px;
  color: #6b7280;
}

.nd-auto-pricing-details {
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 8px;
  padding: 5px 15px;
	width: 100%
}

.nd-auto-pricing-details h3 {
  margin-bottom: 15px;
  color: #222;
  font-size: 1.2rem;
}

.nd-auto-price-line,
.nd-auto-price-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 15px;
}

.nd-auto-price-total {
  font-weight: 700;
  font-size: 16px;
  color: #111827;
}

.nd-auto-submit-btn {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #0073aa, #00aaff);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 25px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nd-auto-submit-btn:hover {
  background: linear-gradient(90deg, #005f8c, #0095d8);
  transform: translateY(-2px);
}

.nd-auto-error-message {
  background: #ffe4e4;
  color: #b91c1c;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-weight: 500;
}


.nd-name-feild, .nd-address-feild, .nd-remarks-feild{
	width: 100%;
}
.nd-email-feild, .nd-phone-feild, .nd-adults-feild, .nd-children-feild{
	width: 49%;
}