@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.wa-form-container {
    max-width: 500px;
    margin: 10px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

.wa-form-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.wa-form-breadcrumb .home {
    color: #ff3b30;
    /* Bright red like in the image */
}

.wa-form-breadcrumb .current {
    color: #333;
}

.wa-form-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #000;
}

.wa-form-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.wa-form-group {
    margin-bottom: 20px;
}

.wa-form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

.wa-form-group input,
.wa-form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.wa-form-group textarea {
    height: 120px;
    resize: vertical;
    border-radius: 16px;
}

.wa-form-group input:focus,
.wa-form-group textarea:focus {
    outline: none;
    border-color: #6e4232;
    box-shadow: 0 0 0 3px rgba(110, 66, 50, 0.1);
}

.wa-form-group input::placeholder,
.wa-form-group textarea::placeholder {
    color: #9ca3af;
}

.wa-form-submit {
    width: 100%;
    padding: 14px;
    background-color: #ec6932;
    /* Maroon/Brown color from previous context */
    color: #ffffff;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 8px;
}

.wa-form-submit:hover {
    background-color: #5a3629;
}

.wa-form-submit:active {
    transform: scale(0.98);
}

#wa-form-response {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}