    .contact {
      padding: 90px 60px;
      background: radial-gradient(circle at top, #111, #000);
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .contact h2 {
      font-size: 36px;
      font-weight: 700;
      background: linear-gradient(90deg,#f5e7b2,#d4af37,#b8962e);
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .contact p {
      margin-top: 8px;
      margin-bottom: 60px;
      color: #aaa;
    }
    .contact-full {
      max-width: 820px;
      margin-bottom: 80px;
    }
    .contact-full h3 {
      color: var(--gold);
      margin-bottom: 18px;
      font-size: 22px;
    }
    .field {
      margin-bottom: 18px;
    }
    .field input,
    .field textarea {
      width: 100%;
      padding: 14px 16px;
      background: #141414;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.15);
      color: #fff;
      transition: all 0.3s ease;
    }
    .field input:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 2px rgba(212,175,55,0.15);
    }
    .btn {
      padding: 14px 42px;
      border-radius: 30px;
      background: var(--gold);
      border: none;
      cursor: pointer;
      font-weight: 600;
      text-decoration: none;
      color: #000;
    }
    .contact-bottom {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
      align-items: stretch;
    }
    .map-wrapper {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .map-title {
      font-size: 30px;
      letter-spacing: 3px;
      font-weight: 700;
      background: linear-gradient(90deg,#f5e7b2,#d4af37,#b8962e);
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .map {
      flex: 1;
      min-height: 300px;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(212,175,55,0.25);
      box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    }
    .map iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(100%) brightness(0.75);
      transition: filter 0.4s ease;
    }
    .contact-bottom:hover .map iframe {
      filter: grayscale(0%) brightness(0.95);
    }
    .premium-card {
      padding: 36px;
      border-radius: 24px;
      background: linear-gradient(180deg,rgba(255,255,255,0.03),rgba(0,0,0,0.9));
      border: 1px solid rgba(212,175,55,0.25);
      box-shadow: 0 25px 50px rgba(0,0,0,0.6);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .contact-block {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .block-title {
      font-size: 26px;
      font-weight: 700;
      background: linear-gradient(90deg,#f5e7b2,#d4af37,#b8962e);
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .gold-divider {
      margin: 30px 0;
      height: 1px;
      background: linear-gradient(90deg,transparent,rgba(212,175,55,0.6),transparent);
    }
    .link-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }
    .link-chips a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 30px;
      font-size: 14px;
      color: #eee;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(212,175,55,0.25);
      transition: all 0.3s ease;
    }
    .link-chips a i {
      color: var(--gold);
    }
    .link-chips a:hover {
      transform: translateY(-2px);
      background: rgba(212,175,55,0.15);
      color: var(--gold);
    }
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }
    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
    }
    @media (max-width: 768px) {
      .contact {
        padding: 70px 28px;
      }
      .contact-bottom {
        grid-template-columns: 1fr;
      }
      .map {
        min-height: 240px;
      }
    }