.contact-section {
  background: linear-gradient(135deg, #f7f3ef 0%, #ffffff 100%);
  padding: 120px 8%;
}

.contact-wrapper {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  align-items: stretch;
}

.contact-form-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(6, 31, 32, 0.12);
}

.contact-tag {
  color: #e5091b;
  font-size: 13px;
  font-weight: 800; 
  font-family: 'Inter', sans-serif;
  letter-spacing: 4px;
}

.contact-form-box h2 {
  color: #061f20;
  font-size: 46px;
  font-family: 'Inter', sans-serif;
  line-height: 1.05;
  margin: 18px 0;
}

.contact-form-box p {
  color: #5f6f72;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid rgba(6, 31, 32, 0.12);
  border-radius: 14px;
  background: #fbfbfb;
  font-size: 15px;  
  font-family: 'Inter', sans-serif;
  outline: none;
}

.contact-form textarea {
  min-height: 130px;
  resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #e5091b;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(229, 9, 27, 0.08);
}

.contact-form button {
  background: #e5091b;
  color: white;
  border: none;
  padding: 18px;
  border-radius: 50px;
  font-weight: 800;  
  font-family: 'Inter', sans-serif;
  letter-spacing: 2px;
  cursor: pointer;
}

.contact-info-box {
  background: #061f20;
  color: white;
  padding: 50px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.contact-info-box h3 {
  font-size: 44px;  
  font-family: 'Inter', sans-serif;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.info-item i {
  width: 48px;
  height: 48px;
  background: #e5091b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item span {
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

.map-box {
  margin-top: 35px;
  height: 320px;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 35px;
  }

  .contact-form-box h2,
  .contact-info-box h3 {
    font-size: 34px;
    font-family: 'Inter', sans-serif;
  }
}