
.contact {
    padding: var(--section-pad-y) var(--section-pad-x);
}

/* Inner card — info left, form right */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.5fr);
    gap: var(--space-12);
    padding: 50px 44px;
    align-items: start;
}

/* ── LEFT COLUMN ── */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

/* ── RIGHT COLUMN ── */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    position: relative;
    z-index: 1;
    border-radius: 15px;
     background-image: url("../Assets//Images/buildings.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height:100%;
}


/* Full-width submit button */
.contact-right .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 26px;
    font-size: 16px;
    margin-top: var(--space-2);
}

/* Loading state */
.btn--loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

#bigphone {
    text-decoration-color: blue;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        padding: var(--space-8) var(--space-6);
    }
}
