/* Contact page — tone aligned with Services / About (#0a0a0f, blue + teal accents) */

body.subpage-contact {
  background: #0a0a0f;
  color: #fff;
}

body.subpage-contact #navbar {
  background: rgba(10, 10, 15, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.subpage-contact .nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

body.subpage-contact .nav-links a.nav-link-active {
  color: var(--accent-light);
}

body.subpage-contact .logo {
  color: #fff;
}

body.subpage-contact .lang-switcher {
  background: rgba(255, 255, 255, 0.08);
}

body.subpage-contact .lang-btn {
  color: rgba(255, 255, 255, 0.55);
}

body.subpage-contact .lang-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

body.subpage-contact .hamburger span {
  background: #fff;
}

body.subpage-contact a.nav-cta {
  background: #fff;
  color: #0a0a0f;
}

body.subpage-contact a.nav-cta:hover {
  background: #f0f0f2;
  color: #000;
}

body.subpage-contact #navbar.scrolled {
  background: rgba(10, 10, 15, 0.96);
}

@media (max-width: 768px) {
  body.subpage-contact .mobile-menu {
    background: rgba(18, 18, 26, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  body.subpage-contact .mobile-nav-links li a {
    color: rgba(255, 255, 255, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  body.subpage-contact .mobile-nav-links li a.nav-link-active {
    color: var(--accent-light);
  }
}

.contact-page-main {
  position: relative;
  max-width: none !important;
  width: 100%;
  padding: 0 !important;
  margin: 0;
  min-height: calc(100vh - 56px);
  overflow: hidden;
}

.cnt-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 55% 42%, rgba(0, 113, 227, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse 55% 45% at 18% 72%, rgba(0, 180, 216, 0.12) 0%, transparent 48%),
    linear-gradient(180deg, #12121a 0%, #0a0a0f 55%, #08080c 100%);
  pointer-events: none;
}

.cnt-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 28%, rgba(0, 113, 227, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 82% 22%, rgba(41, 151, 255, 0.1) 0%, transparent 38%);
}

.cnt-watermark {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-size: clamp(3.5rem, 16vw, 12rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  user-select: none;
  font-family: var(--font);
}

.cnt-line {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}

.cnt-line--tl {
  top: 88px;
  left: 0;
  width: min(42vw, 480px);
  height: 1px;
  background: linear-gradient(90deg, rgba(41, 151, 255, 0.55) 0%, rgba(0, 113, 227, 0.18) 55%, transparent 100%);
  box-shadow: 0 0 18px rgba(0, 113, 227, 0.28);
  transform: rotate(-9deg);
  transform-origin: left center;
}

.cnt-line--tl::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40px;
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, rgba(41, 151, 255, 0.45) 0%, transparent 100%);
  box-shadow: 0 0 14px rgba(0, 113, 227, 0.22);
}

.cnt-line--tr {
  top: 64px;
  right: 0;
  width: min(36vw, 400px);
  height: 1px;
  background: linear-gradient(270deg, rgba(0, 180, 216, 0.45) 0%, rgba(0, 113, 227, 0.12) 50%, transparent 100%);
  box-shadow: 0 0 16px rgba(0, 180, 216, 0.2);
  transform: rotate(8deg);
  transform-origin: right center;
}

.cnt-line--tr::after {
  content: "";
  position: absolute;
  right: 0;
  top: -36px;
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.4) 0%, transparent 100%);
}

.cnt-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

@media (max-width: 900px) {
  .cnt-inner {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .cnt-watermark {
    font-size: clamp(2.5rem, 22vw, 7rem);
    top: 22%;
  }
}

.cnt-col--info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cnt-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 113, 227, 0.28);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.cnt-pill svg {
  width: 14px;
  height: 14px;
  opacity: 0.9;
  color: var(--accent-light);
}

.cnt-heading {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  font-family: var(--font);
}

.cnt-lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.52);
  max-width: 420px;
  margin-top: -6px;
}

.cnt-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.cnt-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 20px 20px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  transition: background 0.22s var(--transition), border-color 0.22s, transform 0.22s;
}

.cnt-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 113, 227, 0.35);
  transform: translateY(-2px);
}

.cnt-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 113, 227, 0.12);
  color: var(--accent-light);
}

.cnt-card-icon svg {
  width: 22px;
  height: 22px;
}

.cnt-card-body {
  flex: 1;
  min-width: 0;
}

.cnt-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.cnt-card-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
  word-break: break-word;
}

.cnt-card-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s, background 0.2s;
}

.cnt-card:hover .cnt-card-arrow {
  color: var(--accent-light);
  background: rgba(0, 113, 227, 0.15);
}

.cnt-form-wrap {
  border-radius: 22px;
  padding: 32px 28px 34px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.cnt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cnt-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cnt-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.cnt-input,
.cnt-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cnt-input::placeholder,
.cnt-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.cnt-input:focus,
.cnt-textarea:focus {
  border-color: rgba(0, 113, 227, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.18);
}

.cnt-textarea {
  min-height: 140px;
  resize: vertical;
}

.cnt-submit {
  margin-top: 6px;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #0a0a0f;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.cnt-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(0, 113, 227, 0.35);
}

.cnt-submit:active {
  transform: translateY(0);
}

body.subpage-contact footer {
  background: var(--surface-dark);
}

body.subpage-contact .footer-brand .logo {
  color: #fff;
}
