/* Pro Forms - Premium Design */
.pro-form-container {
    background: #fdf9f0;
    /* Light almond background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pro-grid-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pro-fields-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pro-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pro-col-50 {
    flex: 1 1 calc(50% - 10px);
}

.pro-col-100 {
    flex: 1 1 100%;
}

.pro-field-wrapper label {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.pro-field-wrapper label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.pro-field-wrapper input,
.pro-field-wrapper select,
.pro-field-wrapper textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.pro-field-wrapper input:focus,
.pro-field-wrapper select:focus,
.pro-field-wrapper textarea:focus {
    border-color: #ff7920;
    box-shadow: 0 0 0 3px rgba(255, 121, 32, 0.1);
    outline: none;
}

.pro-field-wrapper textarea {
    min-height: 100px;
    resize: vertical;
}

/* International Tel Input Overrides */
.iti {
    width: 100%;
}
.iti__country-list {
    z-index: 1000;
}
.pro-field-wrapper .iti input {
    width: 100% !important;
}

/* Submit Button */
.pro-submit-btn {
    background: #ff7920 !important;
    color: #fff !important;
    border: none !important;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    margin-top: 10px;
}

.pro-submit-btn:hover {
    background: #000 !important;
    transform: translateY(-1px);
}

.pro-submit-btn:active {
    transform: translateY(0);
}

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

/* Messages */
.pro-form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.pro-form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pro-form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive & Compact Mobile View */
@media (max-width: 600px) {
    .pro-form-container {
        padding: 20px 15px;
        margin: 10px auto;
    }

    .pro-fields-grid {
        gap: 12px;
    }

    .pro-field-wrapper {
        gap: 4px;
    }

    .pro-field-wrapper label {
        font-size: 13px;
    }

    .pro-field-wrapper input,
    .pro-field-wrapper select,
    .pro-field-wrapper textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .pro-submit-btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    .pro-col-50 {
        flex: 1 1 calc(50% - 6px);
        /* Force 2 columns (1 row 2 col) even on mobile */
    }
}