/* ===== CONTACT HEADER OVERRIDE ===== */
.contact-page {
  --header-bg-rgb: 61, 79, 95;
}

/* ===== CONTACT HERO ===== */
.contact-hero {
  position: relative;
  width: 100%;
  height: 770px;
  overflow: hidden;
}

.contact-hero-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 544px;
  background: #3d4f5f;
  z-index: 1;
}

.contact-hero-image {
  position: absolute;
  top: 0;
  left: 27.08%;
  width: 72.92%;
  height: 650px;
  z-index: 2;
  overflow: hidden;
}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-hero-title {
  position: absolute;
  top: 200px;
  left: 21.5%;
  z-index: 10;
}

.contact-hero-title h1 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .contact-hero {
    margin-top: -72px;
  }
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  padding: 72px 0 80px;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-left h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.contact-description {
  font-size: 14px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 64px;
}

.contact-offering {
  margin-bottom: 24px;
}

.contact-offering strong {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
  margin-bottom: 8px;
}

.contact-offering p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

.btn-acquisition {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: #1a2332;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

.btn-acquisition:hover {
  background: #111827;
}

/* ===== FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  border: 1px solid #d5d5d5;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3d4f5f;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-privacy {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.form-privacy a {
  color: #555;
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: #1a2332;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  background: #111827;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-hero {
    margin-top: -60px;
    min-height: 396px;
    height: 396px;
  }

  .contact-hero-blue {
    width: 35%;
    height: 90%;
  }

  .contact-hero-image {
    top: 0;
    left: 35%;
    width: 65%;
    height: 396px;
  }

  .contact-hero-title {
    top: 50%;
    left: 24px;
    right: auto;
    transform: translateY(-50%);
    max-width: 58%;
  }

  .contact-hero-title h1 {
    font-size: 30px;
    white-space: nowrap;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
