/* Collaborate */
.collaborate {
  padding: 40px 90px;
}

.collaborate div {
  font-size: 65px;
  font-family: "Cormorant";
  font-weight: 400;
}

.collaborate p {
  font-size: 27px;
  font-family: "Poppins";
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .collaborate {
    padding: 30px 20px;
  }

  .collaborate div {
    font-size: 40px;
    text-align: center;
  }

  .collaborate p {
    font-size: 18px;
    letter-spacing: 1.5px;
    text-align: center;
  }
}

/* hero section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 94%;
  object-fit: cover;
  z-index: 1;
}

.hero-fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom,
      #FAF9F6 0%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Hero Responsive */
@media (max-width: 1024px) {
  .hero {
    height: 70vh;
  }

  .hero-fade-overlay {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .hero-fade-overlay {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
  }

  .hero-fade-overlay {
    height: 100px;
  }
}

/* Contact Info Section */
.contact-info {
  background-color: #BEC5A4;
  padding: 20px 30px;
  font-family: "JakartaSans";
  text-align: center;
  margin-top: -45px;
  text-align: center;
}

.contact-info h2 {
  font-size: 48px;
  font-family: "Cormorant";
  font-weight: 500;
  color: white;
  text-shadow: 1px 1px 2px #555;
  margin-bottom: 40px;
  letter-spacing: 2px;
}


.contact-center {
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  /* Light white separator */
  border-right: 2px solid rgba(255, 255, 255, 0.5);
}

/* Contact Info Container */
.contact-container {
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Contact Info Items */
.contact-left,
.contact-center,
.contact-right {
  flex: 1;
  min-width: 250px;
  color: white;
}

.contact-left p,
.contact-center p,
.contact-right p {
  font-size: 19px;
  line-height: 1.7;
}

.contact-left strong,
.contact-center strong,
.contact-right strong {
  font-weight: bold;
}

/* Vertical Divider - optional if needed using borders */

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.social-icons a {
  display: inline-block;
}

.social-icons .img1 {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons .img1:hover {
  transform: scale(1.1);
}

/* Contact Form Section */
.contact-form-section {
  background-color: #f9f6f2;
  padding: 50px 90px;
  font-family: "Poppins";
  margin-top: 30px;
}

.contact-form-section h2 {
  font-size: 56px;
  font-family: "Cormorant";
  font-weight: 500;
  margin-bottom: 15px;
  color: #3a3a3a;
}

.contact-form-section p {
  font-size: 20px;
  color: #3a3a3a;
  max-width: 500px;
  margin-bottom: 25px;
}

.contact-form-section form {
  display: flex;
  flex-direction: column;
}

.form-input {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

form input,
form select,
form textarea {
  padding: 12px;
  border: 1px solid #c8a898;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

form textarea {
  resize: vertical;
  height: 100px;
  margin-bottom: 20px;
}

.send-btn {
  align-self: center;
  padding: 12px 30px;
  background-color: #c8a898;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.send-btn:hover {
  background-color: #b88f85;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-info {
    padding: 40px 20px;
  }

  .contact-form-section {
    padding: 40px 20px;
  }

  .contact-container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-left p, .contact-center p, .contact-right p {
    font-size: 16px;
  }

  .contact-center {
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-left: none;
    border-right: none;
    padding: 15px 0;
    width: 50%;
    margin: 0 auto;
    /* Center-align horizontally */
    text-align: center;
  }


  .contact-info h2,
  .contact-form-section h2 {
    font-size: 34px;
    text-align: center;
  }

  .contact-form-section p {
    text-align: center;
  }

  .form-input {
    flex-direction: row;
  }

  .send-btn {
    font-size: 16px;
    padding: 10px 24px;
  }

  .social-icons {
    margin-top: 20px;
  }
}