.dashboard-panel textarea,
.dashboard-panel input,
.dashboard-panel select {
    border-radius: 1rem !important;
}

.dashboard-panel {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.dashboard-shell {
    min-height: 100vh;
    background: #f5f2ec;
}

.room-item-img img {
    width: 100%;
    object-fit: cover;
}

.krishna-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.form-submit-state {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.is-submitting .form-submit-default {
    display: none;
}

.is-submitting .form-submit-state {
    display: inline-flex;
}

.submit-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: krishna-spin 0.8s linear infinite;
}

.form-success-pop {
    animation: krishna-pop 0.35s ease-out;
}

.contact-visual-fill {
    width: 100%;
    height: 100%;
    min-height: 620px;
    overflow: hidden;
    border-radius: 1.75rem;
}

.contact-visual-fill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-section-spacer {
    margin-bottom: 4rem;
}

.map-wrap {
    margin-top: 1rem;
}

@media (max-width: 991.98px) {
    .contact-visual-fill {
        min-height: 420px;
    }
}

@keyframes krishna-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes krishna-pop {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
