.contact-section {
  padding: 100px 60px;
  background: #f7f4f4;
}

.reach-out {
  font-size: 18px;
  color: #d4af37;
  font-weight: bold;
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
}

/* MAIN SPLIT */
.contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.subtext {
  color: #1b1e2c;
  margin-bottom: 40px;
  font-size: 56px;
  line-height: 1.2;
}

/* INFO ROWS */
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

/* ICON STYLE */
.icon-bg {
  width: 50px;
  height: 50px;
  background: #1b1e2c;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.icon-bg img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

/* TEXT */
.info-item h3 {
  margin: 0;
  font-size: 18px;
}

.info-item p {
  margin: 4px 0;
  color: #555;
}

.info-item span {
  font-size: 13px;
  color: #888;
}

/* PHONE */
.phone {
  font-size: 18px;
  font-weight: bold;
  color: #d4af37;
}

/* BUTTON */
.chat-btn {
  margin-top: 8px;
  padding: 10px 14px;
  border: none;
  cursor: pointer;
  background: #d4af37;
  color: white;
  border-radius: 8px;
}

/* RIGHT SIDE FORM */
.contact-right {
  flex: 1;
  border: 1px solid #ddd;
  background: #f7f7f7;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

.contact-right h3 {
  margin-bottom: 5px;
}

.contact-right p {
  color: #666;
  margin-bottom: 20px;
}

/* FORM */
.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-right input,
.contact-right select,
.contact-right textarea,
.contact-right button {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

.contact-right textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-right button {
  border: none;
  cursor: pointer;
  background: #d4af37;
  color: white;
  font-weight: 600;
}

/* TABLET */
@media (max-width: 900px) {

  .contact-section {
    padding: 60px 20px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-right {
    padding: 25px;
  }

  .contact-left h2 {
    font-size: 34px;
  }

  .subtext {
    font-size: 38px;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .contact-section {
    padding: 50px 15px;
  }

  .contact-right {
    padding: 20px;
  }

  .subtext {
    font-size: 28px;
  }

  .contact-left h2 {
    font-size: 28px;
  }

  .info-item {
    align-items: flex-start;
  }
}

