.contact-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.contact-header {
  margin-bottom: 30px;
}

.contact-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  color: #1a1a1a;
}

.contact-title span {
  color: #000;
}

/* CONTENT */
.contact-content {
  max-width: 700px;
}

.contact-subtitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.contact-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

/* PHONE LINK */
.contact-phone {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.2s ease;
}

.contact-phone:hover {
  border-bottom: 1px solid #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-title {
    font-size: 32px;
  }

  .contact-subtitle {
    font-size: 18px;
  }

  .contact-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 26px;
  }
}

.contact-form-section {
  padding: 60px 20px;
  background-color: rgb(36, 36, 36); /* base color */
  position: relative;
  overflow: hidden;
}

/* TEXTURE LAYER */
.contact-form-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url('https://lirp.cdn-website.com/7ae2b340/dms3rep/multi/opt/gun-metal-2880w.png');
  background-repeat: repeat;
  background-size: 10px auto;

  opacity: 0.5;

  z-index: 0;
}

/* ONLY PUSH MAIN CONTENT ABOVE (better than *) */
.contact-form-container {
  position: relative;
  z-index: 1;
}

.contact-form-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
}

/* LEFT */
.contact-form-left {
  flex: 1;
  color: #fff;
  border: #fff 3px solid;
  border-radius: 25px;
  padding: 30px;

}

.contact-form-title {
  font-size: 28px;
  margin-bottom: 20px;
}

/* FORM */
.contact-form-row {
  display: flex;
  gap: 20px;
}

.contact-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.contact-form-group.full {
  width: 100%;
}

.contact-form label {
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form textarea {
  height: 120px;
}

/* NOTE */
.contact-form-note {
  font-size: 13px;
  margin-bottom: 15px;
}


/* BUTTON */
.contact-form-btn {
  border: none;
  padding: 14px;
  cursor: pointer;
  width: 100%;
}

.contact-form-btn:hover {
  background: #333;
}

/* SUCCESS / ERROR */
.contact-form-success,
.contact-form-error {
  display: none;
  margin-top: 15px;
}

.contact-form-success {
  color: green;
}

.contact-form-error {
  color: red;
}

/* RIGHT */
.contact-form-right {
  flex: 1;
  background-color: #a2a3a8;
  border-radius: 25px;
  padding: 30px;
}

.contact-info-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-info-heading {
  margin-top: 20px;
  font-size: 16px;
}

.contact-info-text,
.contact-info-phone {
  font-size: 15px;
  margin-bottom: 5px;
}

.contact-info-hours div {
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-form-container {
    flex-direction: column;
  }

  .contact-form-row {
    flex-direction: column;
  }
}