.form-msg { padding: 14px 18px; border-radius: 8px; margin-bottom: 18px; font-weight: 600; font-size: 14px; }
.form-msg.success { background: rgba(76,175,80,0.15); border: 1px solid #4caf50; color: #4caf50; }
.form-msg.error { background: rgba(244,67,54,0.15); border: 1px solid #f44336; color: #f44336; }
.contact-grid { width: 90%; max-width: 1300px; margin: 80px auto; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 50px; }
.contact-box { background: #1e2530; padding: 45px; border-radius: 14px; border: 1px solid #2e3a47; }
.contact-box h2 { font-size: 36px; margin-bottom: 25px; color: #fff; }
.item { margin-bottom: 25px; }
.item h3 { color: #f5b400; margin-bottom: 6px; }
.item p { color: #d0d8e0; }
.item a { color: white; text-decoration: none; }
.item a:hover { color: #f5b400; }
form { display: flex; flex-direction: column; gap: 18px; }
label { font-size: 13px; color: #9aa5af; margin-bottom: -10px; }
label span { color: #f5b400; }
input, textarea { background: #1e2530; border: 1px solid #444; padding: 16px; color: white; font-size: 15px; border-radius: 8px; outline: none; }
input::placeholder, textarea::placeholder { color: #8a9ab0; }
input:focus, textarea:focus { border-color: #f5b400; }
textarea { height: 180px; resize: none; }
.copy-btn { background: none; border: none; color: white; cursor: pointer; padding: 0; font-size: inherit; font-family: inherit; transition: .2s; }
.copy-btn:hover { color: #f5b400; }
.copied { color: #4caf50; font-size: 12px; margin-left: 8px; opacity: 0; transition: opacity .3s; }
.copied.show { opacity: 1; }
button[type=submit], form button { padding: 18px; background: #f5b400; border: none; font-size: 16px; font-weight: 700; cursor: pointer; transition: .3s; width: 100%; }
button[type=submit]:hover, form button:hover { background: white; }
.map { margin: 80px auto; width: 90%; max-width: 1300px; }
iframe { width: 100%; height: 450px; border: none; border-radius: 14px; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 700px) {
    .contact-box { padding: 28px; }
}
