/* Contact page */
body.contact-view {
  background: radial-gradient(circle at top left, rgba(5, 110, 255, 0.18), transparent 55%),
    #070a14;
  color: #fff;
  font-family: "Livvic", sans-serif;
  overflow-y: auto;
}

.contact-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px 120px;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 11, 28, 0.85), rgba(8, 31, 73, 0.85));
  z-index: 0;
}

.contact-hero__inner {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.contact-hero__eyebrow {
  display: inline-block;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.contact-hero__title {
  font-size: clamp(42px, 6vw, 68px);
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
}

.contact-hero__excerpt {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.contact-hero__actions {
  margin-top: 36px;
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-hero__btn--primary {
  background: linear-gradient(135deg, #1c5bff, #2d3cff);
  color: #fff;
  box-shadow: 0 15px 35px rgba(28, 91, 255, 0.3);
}

.contact-hero__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(28, 91, 255, 0.4);
}

.contact-hero__btn--outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(18, 32, 64, 0.35);
}

.contact-hero__btn--outline:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(18, 32, 64, 0.55);
}

.contact-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
}

.contact-hero__back:hover {
  color: #fff;
}

.contact-content {
  padding: 120px 32px 140px;
  background: radial-gradient(circle at right, rgba(0, 102, 255, 0.12), transparent 55%),
    #060a16;
}

.contact-content__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
}

.contact-content__main {
  background: rgba(9, 15, 30, 0.82);
  border: 1px solid rgba(74, 118, 255, 0.18);
  border-radius: 28px;
  padding: 56px 56px 52px;
  box-shadow: 0 35px 80px rgba(4, 11, 30, 0.45);
  backdrop-filter: blur(12px);
}

.contact-content__main h2,
.contact-content__main h3 {
  margin-top: 40px;
  color: #fff;
  font-weight: 700;
}

.contact-content__main h2:first-child,
.contact-content__main h3:first-child {
  margin-top: 0;
}

.contact-content__main p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.contact-content__main ul {
  margin: 24px 0;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.contact-content__sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-card {
  background: rgba(12, 20, 40, 0.9);
  border-radius: 26px;
  padding: 32px 34px;
  border: 1px solid rgba(65, 105, 255, 0.15);
  box-shadow: 0 25px 60px rgba(5, 12, 32, 0.4);
}

.contact-card h3 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 700;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.6;
}

.contact-card ul li i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 76, 255, 0.25);
  color: #5b8cff;
  font-size: 16px;
  margin-top: 2px;
}

.contact-card--gradient {
  background: linear-gradient(135deg, rgba(41, 103, 255, 0.75), rgba(74, 28, 163, 0.78));
  border: none;
  box-shadow: 0 30px 70px rgba(22, 38, 94, 0.55);
}

.contact-card--gradient p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 18px;
}

.contact-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(5, 10, 30, 0.25);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-card__cta:hover {
  transform: translateY(-2px);
  background: rgba(5, 10, 30, 0.4);
}
