/* CONTACT HERO SECTION */
.contact-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  text-align: left;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.contact-content {
  position: relative;
  z-index: 1;
  padding-left: 8%;
  max-width: 600px;
}

.contact-content .subtitle {
  font-size: 1rem;
  letter-spacing: 1px;
  color: skyblue;
}

.contact-content .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 15px 0;
  line-height: 1.3;
}

.btn2 {
  background: skyblue;
  color: #000;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn2:hover {
  background: skyblue;
}

/* CONTACT BANNER */
.contact-banner {
  position: relative;
  background: url('../images/img10.jpeg') center/cover no-repeat;
  height: 30vh;
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-banner h1 {
  position: relative;
  color: #fff;
  font-size: 3rem;
  z-index: 1;
  font-weight: 600;
  text-transform: uppercase;
}

/* CONTACT SECTION */
.contact-section {
  background: #fff;
  padding: 5rem 2rem;
  border-bottom: 1px solid #eee;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: auto;
}

/* HEADINGS */
.contact-info h2,
.contact-form h2 {
  font-size: 2.2rem;
  color: #000;
  text-align: center;
}

.contact-info h2 span,
.contact-form h2 span {
  color: skyblue;
  font-style: italic;
text-align: center;
}

/* DIVIDER */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.line {
  width: 50px;
  height: 1px;
  background: #bdbdbd;
}

.scissor-icon {
  color: #bdbdbd;
}

/* LEFT SIDE INFO */
.desc {
  margin-top: 2rem;
  color: #333;
  line-height: 1.7;
}

.info-item {
  text-align: center;
  margin-top: 1.5rem;
  color: #555;
}

.icon {
  color: skyblue;
  font-size: 1.8rem;
}

.social-icons{
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons i {
  color: skyblue;
  font-size: 1.3rem;
  transition: 0.3s;
}

.social-icons i:hover {
  color: #000;
}

/* RIGHT SIDE FORM */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

input, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
}

textarea {
  min-height: 120px;
}

button {
  background: skyblue;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: rgb(22, 189, 255);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-hero {
    height: 70vh;
  }

  .contact-content .title {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    height: 65vh;
    text-align: center;
    justify-content: center;
  }

  .contact-content {
    padding-left: 0;
  }

  .contact-content .title {
    font-size: 1.6rem;
  }

  .contact-banner h1 {
    font-size: 1.8rem;
  }

  .contact-info h2,
  .contact-form h2 {
    text-align: center;
    font-size: 1.8rem;
  }

  .desc {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .form-row {
    flex-direction: column;
  }

  button {
    align-self: center;
  }
}
