/* =========================
   CONTACT SECTION RESET
========================= */

.contact {
  padding: 120px 0;
  background: #000;
  color: #eaeaea;
}

.contact * {
  box-sizing: border-box;
}

/* =========================
   TITLE
========================= */

.contact h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 72px;
  letter-spacing: 3px;
  font-weight: 700;
}

/* =========================
   FORM CARD
========================= */

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 48px 56px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Bootstrap grid 무력화 */
.contact-form .row {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-form [class*="col-"] {
  width: 100%;
  padding: 0;
}

/* =========================
   LABEL
========================= */

.contact-form .form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #bdbdbd;
  letter-spacing: 0.5px;
}

/* =========================
   INPUT / TEXTAREA
========================= */

.contact-form .form-control {
  width: 100%;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  transition: all 0.25s ease;
}

.contact-form .form-control::placeholder {
  color: #777;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: #00c8ff;
  box-shadow: 0 0 0 1px rgba(0, 200, 255, 0.4);
}

.contact-form textarea {
  min-height: 160px;
  resize: none;
}

/* =========================
   SERVICE CHECK AREA
========================= */

.contact-form .form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-form .form-check:hover {
  border-color: #00c8ff;
}

.contact-form .form-check-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.contact-form .form-check-label {
  font-size: 14px;
  color: #ddd;
  cursor: pointer;
}

/* =========================
   SUBMIT BUTTON
========================= */

.contact-form button {
  margin-top: 30px;
  width: 100%;
  height: 54px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #00c8ff, #0066ff);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 200, 255, 0.5);
}

/*위치*/
.location {
  padding: 0px 0 100px 0;
  text-align: start;
  color: #fff;
}
.locationTitle p {
  font-size: 72px;
  font-weight: 700;
}

.locationBottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
}
.locationBottomL,
.locationBottomR {
  width: 45%;
}
.locationConMap {
  width: 100%;
  height: 316px;
  border: 1px solid #fff;
}
.locationConText {
  padding-top: 12px;
}
.locationConTextTitle p {
  color: #999999;
  font-weight: 400;
}
.locationConTextAd {
  padding-top: 8px;
}
.locationConTextTel {
  padding-top: 4px;
}
.locationConTextAd p,
.locationConTextTel p {
  font-weight: 500;
  font-size: 18px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .contact-form {
    padding: 32px 24px 40px;
  }

  .contact h2 {
    font-size: 24px;
  }
}
