/* Book Demo Page Styles */
.book-demo-section {
    padding: 80px 0 120px 0;
    background: white;
}

.demo-form-wrapper {
    padding: 20px;
    border-radius: 20px;
    border: solid #b1adad 1px;
}

/* Hero Section - Reuse existing pattern with gradient */
.hero-section.hero-gradient {
    background-image: url('https://quimbaya-tours.com/wp-content/uploads/2024/03/Mexico-City.jpg');
    background-size: cover;
    background-position: center;
    min-height: 546px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Form Styling */
.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #b1adad;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(110, 193, 228, 0.25);
}

.form-check-input {
    border-radius: 4px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-color: #b1adad;
}

.form-check-label {
    margin-left: 8px;
    font-size: 1rem;
    color: #555;
}

/* Submit Button */
.demo-form-wrapper .btn-primary {
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.demo-form-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(110, 193, 228, 0.3);
}

/* Validation Styles */
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Success/Error Messages */
.alert {
    border-radius: 12px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 991px) {
    .demo-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .book-demo-section {
        padding: 0 0 60px 0;
    }

    .demo-form-wrapper {
        padding: 30px 20px;
    }

    .hero-section.hero-gradient {
        min-height: 0;
        padding: 60px 0 115px 0;
    }

    .demo-form-wrapper .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}