
.contact-banner {
  position: relative;
  background: url('../images/pricing.jpg') center/cover no-repeat;
  height: 30vh;
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 202, 138, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-banner h1 {
  color: #fff;
  font-size: 3rem;
  z-index: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  background: #fff;
  padding: 5rem 2rem;
  border-bottom: 1px solid #dbdbdb;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: auto;
}

.contact-info h2,
.contact-form h2 {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 0 !important;
}

.contact-info h2 span,
.contact-form h2 span {
  color: #8a6d46;
  font-style: italic;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.line {
  width: 50px;
  height: 1px;
  background: #8a6d46;
}

.scissor-icon {
  color: #8a6d46;
  font-size: 1rem;
}

.desc {
  margin-top: 3rem;
  color: #333;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.info-item .icon {
  font-size: 1.8rem;
  color: #8a6d46;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icons a i {
  font-size: 1.3rem;
  color: #8a6d46;
  cursor: pointer;
}

.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;
  font-size: 1rem;
  border-radius: 5px;
  resize: vertical;
}

.form-row input {
  flex: 1;
}

textarea {
  min-height: 120px;
}

button {
  width: max-content;
  padding: 0.7rem 1.5rem;
  background-color: #8a6d46;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  border: 3px solid #8a6d46;
}

button:hover {
  background: #fff;
  color: #8a6d46;
} 

/* ========== 1024px SCREENS ========== */
@media (max-width: 1024px) {
  .contact-banner {
    height: 25vh;
  }

  .contact-banner h1 {
    font-size: 2.4rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 2rem;
  }

  .desc {
    margin-top: 2rem;
    font-size: 0.95rem;
  }
}

/* ========== 600px SCREENS ========== */
@media (max-width: 600px) {
  .contact-banner {
    height: 30vh;
    margin-top: 5rem;
  }

  .contact-banner h1 {
    font-size: 1.8rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 2.5rem;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .divider {
    justify-content: center;
  }

  .desc {
    text-align: center;
    font-size: 0.9rem;
  }

  .info-item {
    text-align: center;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-form form {
    gap: 0.8rem;
  }

  input, textarea {
    font-size: 0.95rem;
    padding: 0.7rem 0.9rem;
  }

  button {
    align-self: center;
  }
}
