﻿.contact-page {
  min-height: 100vh;
  position: relative;
}

.contact-page .site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgb(255 255 255 / 78%);
  backdrop-filter: blur(8px);
}

.contact-page .site-header,
.contact-page .contact-main,
.contact-page .site-footer {
  position: relative;
  z-index: 2;
}

.main-nav .active-link {
  color: var(--brand);
  font-weight: 800;
}

.contact-main {
  padding: 20px 0 42px;
}

.contact-wrap {
  padding: 0 0 16px;
}

.contact-grid {
  display: flex;
  justify-content: center;
}

.contact-card {
  width: min(100%, 860px);
  background: linear-gradient(180deg, rgb(255 255 255 / 26%), rgb(249 253 255 / 14%));
  border: 1px solid rgb(205 219 228 / 96%);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgb(7 24 33 / 20%);
  backdrop-filter: blur(10px);
  padding: clamp(20px, 3.8vw, 36px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: #b8d3df;
  box-shadow: 0 22px 46px rgb(7 24 33 / 24%);
}

.contact-card h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4.2vw, 42px);
  color: #050709;
}

.contact-card p {
  margin: 0 0 14px;
  line-height: 1.72;
  color: #050709;
}

.mail-box {
  margin-top: 16px;
  border: 1px solid #c9dde5;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fcff, #eff7fb);
  padding: 14px 16px;
}

.mail-box span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #050709;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  margin-bottom: 6px;
}

.mail-box a {
  font-size: clamp(20px, 2.5vw, 28px);
  text-decoration: none;
  color: #050709;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.mail-box a:hover {
  text-decoration: underline;
}

@media (max-width: 1060px) {
  .contact-main {
    padding-top: 12px;
  }

  .contact-card {
    border-radius: 14px;
    padding: 18px;
  }

  .mail-box a {
    font-size: clamp(22px, 6vw, 30px);
  }
}

