.ai-trip-planner-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.ai-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.ai-form-row input, .ai-form-row select {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.ai-btn-primary {
    width: 100%;
    padding: 15px;
    background: #ff5a5f; /* Travel Red */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.ai-btn-primary:hover { background: #e04b4f; }

#trip-result {
    margin-top: 30px;
    line-height: 1.6;
    color: #333;
}

#trip-result h3 { color: #0073aa; border-bottom: 2px solid #f0f0f0; padding-bottom: 5px; }

/* Affiliate Buttons */
.ai-cta {
    display: block;
    text-align: center;
    background: #28a745;
    color: white !important;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Lead Capture Section */
#download-section {
    margin-top: 40px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px dashed #0073aa;
    border-radius: 10px;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
}

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }