.hero-form-card {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.18),
        0 8px 18px rgba(15, 23, 42, 0.08);
}

/* “Shadow in the background” like on the screenshot */
.hero-form-card::before {
    content: "";
    position: absolute;
    inset: -22px -18px -18px -22px;
    border-radius: 26px;
    background: rgba(59, 130, 246, 0.12);
    filter: blur(28px);
    z-index: -1;
}

.hero-form-card label {
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.6rem;
    color: #111827;
    margin-bottom: 10px;
}

.hero-form-card .required:after {
    color: #ef4444;
}

.hero-form-card .mb-3 {
    margin-bottom: 22px !important;
}

.hero-form-card .select,
.hero-form-card .input {
    border: 2px solid rgba(17, 24, 39, 0.14) !important;
    box-shadow: none !important;
    border-radius: 16px !important;
    min-height: 56px;
    padding: 0.75rem 1rem;
    color: #111827 !important;
}

.hero-form-card .select {
    background-position: right 16px center !important;
    padding-right: 52px !important;
}

.hero-form-card .input::placeholder {
    color: rgba(17, 24, 39, 0.35);
}

.hero-form-card .select:focus,
.hero-form-card .input:focus {
    border-color: rgba(37, 99, 235, 0.55) !important;
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.14) !important;
}

.hero-form-card .hero-submit {
    height: 66px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.3rem;
    color: #111827 !important;
    border: 0 !important;
    /* Match the real .btn-success used in this project (via --bs-btn-bg / --color-green). */
    background-color: var(--bs-btn-bg, var(--color-green, #2AC0A4)) !important;
    background-image: none !important;
    box-shadow: 0 18px 40px rgba(42, 192, 164, 0.26);
}

.hero-form-card .hero-submit:hover,
.hero-form-card .hero-submit:focus {
    transform: translateY(-1px);
    background-color: var(--bs-btn-bg, var(--color-green, #2AC0A4)) !important;
    box-shadow: 0 22px 48px rgba(42, 192, 164, 0.32);
    filter: brightness(0.98);
}

.hero-form-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    color: rgba(17, 24, 39, 0.55);
    font-weight: 700;
    font-size: 1.05rem;
    justify-content: center;
}

.hero-form-note::before,
.hero-form-note::after {
    content: "";
    height: 1px;
    background: rgba(17, 24, 39, 0.12);
    flex: 1;
}

