/* WealthGrok contact page styling (aligned with calculator look) */

.wg-page {
    min-height: 100vh;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.wg-shell {
    max-width: 980px;
    margin: 0 auto;
}

.wg-hero {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 22px 24px;
    margin-bottom: 14px;
}

.wg-hero h1 {
    margin: 0;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.wg-hero p {
    margin: 10px 0 0;
    color: #374151;
    line-height: 1.55;
}

.wg-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
    padding: 18px;
}

.wg-card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.wg-card-header h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
}

.wg-card-header a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 700;
}

.wg-card-header a:hover {
    text-decoration: underline;
}

/* Bootstrap form overrides (scoped to this page) */
.wg-card .form-label {
    font-weight: 700;
    color: #111827;
}

.wg-card .form-text {
    color: #4b5563;
}

.wg-card .form-control,
.wg-card .form-select,
.wg-card textarea {
    border-radius: 12px;
    border: 1px solid #d1d5db;
    padding: 12px 12px;
}

.wg-card .form-control:focus,
.wg-card .form-select:focus,
.wg-card textarea:focus {
    border-color: rgba(102, 126, 234, 0.95);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.25);
}

.wg-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 12px;
}

.wg-actions .wg-note {
    color: #4b5563;
    font-size: 0.95rem;
    margin: 0;
}

.wg-card .btn-primary {
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.wg-card .btn-primary:hover {
    filter: brightness(1.02);
}

.wg-card .btn-primary:active {
    transform: translateY(1px);
}

.wg-card .invalid-feedback,
.wg-card .text-danger {
    font-weight: 600;
}

@media (max-width: 520px) {
    .wg-hero,
    .wg-card {
        border-radius: 14px;
        padding: 16px;
    }

    .wg-actions {
        justify-content: flex-start;
    }
}
