/* ================= GLOBAL INDUSTRIAL VARS ================= */
:root {
  --primary: #f7941d;
  --dark: #111;
  --steel: #1a1a1a;
}

/* ================= HERO ================= */
.contact-hero {
  height: 55vh;
  background: url("../images/hero/contact-hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.55)
  );
}

.contact-hero h1 {
  position: relative;
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.5),
    0 6px 20px rgba(0,0,0,0.7);
}

.contact-hero p {
  position: relative;
  color: #ddd;
  font-size: 1.1rem;
}

/* ================= SECTION ================= */
.contact-section {
  padding: 90px 15px;
  position: relative;
}

.contact-section h2 {
  text-align: center;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 50px;
  position: relative;
}

.contact-section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--primary);
  display: block;
  margin: 15px auto 0;
}

/* ================= FORM ================= */
.contact-form-box {
  background:
    linear-gradient(
      135deg,
      #f7941d,
      #e08414
    );
  padding: 45px;
  border-radius: 12px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.25);
  position: relative;
}

.contact-form-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(0,0,0,0.15);
  border-radius: 12px;
  pointer-events: none;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  outline: none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus,
.contact-form-box select:focus {
  box-shadow: 0 0 0 2px rgba(0,0,0,0.3);
}

/* INDUSTRIAL BUTTON */
.contact-form-box button {
  background: var(--steel);
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.contact-form-box button:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow:
    0 10px 25px rgba(0,0,0,0.4);
}

/* ================= INFO ================= */
.contact-info-box {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow:
    0 15px 35px rgba(0,0,0,0.15);
  border-top: 5px solid var(--primary);
}

.contact-info-box h4 {
  font-weight: 900;
  color: var(--dark);
}

.contact-info-box iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ================= CTA ================= */
.contact-cta {
  background:
    linear-gradient(
      135deg,
      #0d0d0d,
      #1c1c1c
    );
  color: #fff;
  padding: 80px 15px;
  border-top: 5px solid var(--primary);
}

.contact-cta h3 {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 1px;
}

.contact-cta p {
  color: #ccc;
}

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

  .contact-hero h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .contact-form-box {
    padding: 30px;
  }

  .contact-info-box {
    margin-top: 30px;
  }
}
