.contact-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 64px;
}

.contact-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.05;
}

.contact-sub {
  font-size: 16px;
  color: var(--grey3);
  line-height: 1.7;
  font-weight: 300;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

/* Cards */
.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-primary {
  border-top: 3px solid #25d366;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon {
  background: #25d366;
  color: white;
}

.form-icon {
  background: var(--grey1);
  color: var(--grey3);
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.contact-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.3px;
}

.contact-card-desc {
  font-size: 14px;
  color: var(--grey3);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 8px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: #25d366;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 980px;
  margin-top: auto;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.btn-whatsapp:hover { background: #20bc5a; transform: translateY(-1px); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey3);
}

.form-input {
  padding: 11px 14px;
  border: 1.5px solid var(--grey4);
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input::placeholder { color: var(--grey3); }
.form-input:focus { border-color: var(--black); }

.form-select { appearance: none; cursor: pointer; }

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.contact-submit {
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 14px;
}
.contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status { font-size: 13px; color: #e05252; margin-top: 4px; }
.form-success-msg {
  font-size: 17px;
  font-weight: 500;
  color: #34c759;
  padding: 24px 0;
  text-align: center;
}

/* Bottom info strip */
.contact-info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 28px;
  background: var(--grey1);
  border-radius: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey3);
  font-weight: 400;
}
.contact-info-item svg { color: var(--grey3); flex-shrink: 0; }

/* Active nav link */
.nav-active { color: var(--black) !important; font-weight: 500 !important; }

/* Mobile */
@media (max-width: 768px) {
  .contact-page { padding: 90px 20px 60px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-strip { flex-direction: column; gap: 16px; align-items: flex-start; padding: 24px; }
  .contact-hero { margin-bottom: 40px; }
}
