.contact {
  background: linear-gradient(180deg, #031c2d 0%, #020b16 100%);
  padding: 100px 0;
  text-align: center;
}

.contact h2 {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  color: white;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.contact h2 span {
  color: #00d2b9;
}

.contact-top-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  text-align: left;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

/* Left */
.contact-left {
  min-width: 0;
}

.contact-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin: 0 0 12px;
}

.contact-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(0, 210, 185, 0.08);
  border: 1px solid rgba(0, 210, 185, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.contact-info-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}

.contact-info-value {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

a.contact-info-value {
  text-decoration: none;
  transition: color 0.2s;
}

a.contact-info-value:hover {
  color: #00d2b9;
}

.certs-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
  font-weight: 600;
}

.certs-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-badge {
  font-size: 11px;
  font-weight: 600;
  color: #00d2b9;
  background: rgba(0, 210, 185, 0.08);
  border: 1px solid rgba(0, 210, 185, 0.25);
  border-radius: 20px;
  padding: 5px 12px;
  white-space: nowrap;
}

/* Right Form */
.contact-right {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 210, 185, 0.15);
  border-radius: 16px;
  padding: 36px 32px;
  min-width: 0;
  box-sizing: border-box;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

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

.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 13px 16px;
  color: white;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00d2b9;
  background: rgba(0, 210, 185, 0.04);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, #00b8a0, #00d2b9);
  color: #020b16;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  font-family: inherit;
  letter-spacing: 0.3px;
}

.contact-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.form-status {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
  text-align: center;
}

.form-status.success {
  display: block;
  background: rgba(0, 210, 185, 0.1);
  border: 1px solid rgba(0, 210, 185, 0.3);
  color: #00d2b9;
}

.form-status.error {
  display: block;
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid rgba(220, 50, 50, 0.3);
  color: #ff6b6b;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-right {
    padding: 24px 16px;
  }
  .contact {
    padding: 60px 0;
  }
}
.contact-left {
  align-self: start;
}

.contact-wrapper {
  align-items: start;
}   