/* Seychelles Special Trip Form Styles */
.seychelles-form-container {
    max-width: 420px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 24px;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.seychelles-form-container h2 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: #0a5c3d;
    font-weight: 700;
}
.seychelles-form-group {
    margin-bottom: 18px;
}
.seychelles-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}
.seychelles-form-group input,
.seychelles-form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    background: #fafbfc;
}
.seychelles-form-group input[type="date"] {
    padding-right: 0;
}
.seychelles-cost-breakdown {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: #333;
}
.seychelles-payment-options {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}
.seychelles-payment-option {
    flex: 1;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 10px;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: border 0.2s, background 0.2s;
}
.seychelles-payment-option.selected,
.seychelles-payment-option:hover {
    border: 2px solid #0a5c3d;
    background: #e6f7f0;
}
.seychelles-payment-option .amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a5c3d;
    margin-bottom: 4px;
}
.seychelles-payment-option .desc {
    font-size: 0.95rem;
    color: #666;
}
.seychelles-submit-btn {
    width: 100%;
    padding: 12px 0;
    background: #0a5c3d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.seychelles-submit-btn:hover {
    background: #084c32;
}
.seychelles-error {
    color: #0a5c3d;
    background: #e6f7f0;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-align: center;
}
.seychelles-success {
    color: #1a7f37;
    background: #e6ffe6;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-align: center;
}
