/**
 * Moonstride Booking Form Styles
 */

.moonstride-booking-wrapper {
    max-width: 900px;
    margin: 0px auto;
}

.moonstride-booking-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.booking-tour-summary {
    border-bottom: 2px solid #f26b01;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.booking-tour-summary h2 {
    margin: 0 0 10px;
    color: #17012c;
    font-size: 28px;
}

.tour-code {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.tour-desc {
    color: #17012c;
    line-height: 1.6;
    margin: 15px 0;
}

.tour-price {
    margin-top: 15px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.tour-price strong {
    font-size: 24px;
    color: #f26b01;
}

.moonstride-booking-form {
    /* Form styling */
}

.form-section {
    margin-bottom: 30px;
}

.form-section h2 {
    margin: 0 0 20px;
    color: #17012c;
    font-size: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-field {
    flex: 1;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #17012c;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field input[type="tel"]:focus,
.form-field input[type="date"]:focus,
.form-field input[type="number"]:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #f26b01;
}

.required {
    color: #e74c3c;
}

.checkbox-field label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-field input[type="checkbox"] {
    margin-top: 3px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background: #F26B0126;
    color: #f26b01;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.18s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.btn-submit:hover {
    background: #f26b01;
    color: #fff;
    border: none;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-message {
    margin-top: 15px;
}

.form-message p {
    margin: 10px 0;
    padding: 15px;
    border-radius: 4px;
}

.form-message.success p {
    color: #27ae60;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.form-message.error p {
    color: #c0392b;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.moonstride-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
}

.moonstride-error p {
    color: #c0392b;
    margin: 0;
}

.moonstride-error a {
    color: #7fd858;
    text-decoration: underline;
}


/* Responsive Design */

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .moonstride-booking-container {
        padding: 20px;
    }
    .booking-tour-summary h2 {
        font-size: 24px;
    }
}