.contacts-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; align-items: stretch; }.contact-cards { display: grid; gap: 13px; }.contact-card { padding: 22px 24px; display: grid; grid-template-columns: 45px 1fr; gap: 15px; align-items: center; border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: transform .2s, border-color .2s, box-shadow .2s; }.contact-card:is(a):hover { transform: translateX(5px); border-color: #a8c9e9; box-shadow: var(--shadow-sm); }.contact-card-icon { width: 45px; height: 45px; display: grid !important; place-items: center; margin: 0 !important; border-radius: 13px; color: var(--blue-600); background: var(--sky-100); font-weight: 900; }.contact-card-icon img { width: 23px; height: 23px; }.contact-card strong, .contact-card span { display: block; }.contact-card strong { font-size: 12px; }.contact-card span { margin-top: 4px; color: var(--muted); font-size: 10px; }.contact-card .contact-link { color: var(--blue-600); font-weight: 750; }
.contact-form { padding: 37px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }.contact-form h2 { margin-bottom: 9px; font-size: 28px; }.contact-form > p { margin-bottom: 27px; color: var(--muted); font-size: 11px; }.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.field { display: grid; gap: 7px; }.field-full { grid-column: 1/-1; }.field span { color: #43566d; font-size: 9px; font-weight: 800; }.field input, .field textarea, .field select { width: 100%; border: 1px solid #d8e2ed; border-radius: 11px; color: var(--ink); background: #f9fbfd; outline: 0; transition: border .2s, box-shadow .2s; }.field input, .field select { height: 49px; padding: 0 14px; }.field textarea { min-height: 125px; padding: 13px 14px; resize: vertical; }.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(37,128,222,.08); }.form-actions { margin-top: 18px; display: flex; align-items: center; gap: 15px; }.form-status { margin: 0; color: var(--success); font-size: 10px; }
.map-placeholder { min-height: 470px; position: relative; display: grid; place-items: center; overflow: hidden; color: #fff; background: linear-gradient(145deg, rgba(6,20,36,.46), rgba(10,79,158,.22)), url("../../images/contacts-support.webp") center/cover; }.map-placeholder::before, .map-placeholder::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }.map-placeholder::before { width: 250px; height: 250px; }.map-placeholder::after { width: 160px; height: 160px; }.map-pin { position: relative; z-index: 2; padding: 18px 24px; border: 1px solid rgba(255,255,255,.25); border-radius: 18px; background: rgba(5,20,39,.75); text-align: center; box-shadow: 0 18px 50px rgba(0,0,0,.25); backdrop-filter: blur(12px); }.map-pin span { width: 60px; height: 60px; display: grid; place-items: center; margin: auto; border-radius: 50% 50% 50% 0; color: var(--blue-600); background: #fff; font-size: 20px; font-weight: 900; transform: rotate(-45deg); }.map-pin span i { font-style: normal; transform: rotate(45deg); }.map-pin p { margin: 24px 0 0; color: #d1e1ef; font-size: 11px; }
@media (max-width: 820px) { .contacts-layout { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .contact-card { padding: 18px; }.contact-form { padding: 23px; border-radius: 22px; }.form-grid { grid-template-columns: 1fr; }.field-full { grid-column: auto; }.form-actions { align-items: stretch; flex-direction: column; }.map-placeholder { min-height: 350px; }.map-pin { margin: 0 14px; }.map-pin p { margin-top: 17px; } }
