/* Contact Page Styles */

.contact-breadcrumb {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background-color: #ffffff;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 1440px;
  width: 100%;
  padding: 0 60px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: #ffffff;
}

.contact-title {
  font-size: 24px;
  font-weight: 500;
  color: #c09c3a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.form-input {
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  padding: 13px 26px;
  font-family: 'GE SS Two', Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #393d46;
  text-align: start;
  box-sizing: border-box;
  outline: none;
  transition: background-color 0.3s ease;
}

.form-input::placeholder {
  color: #cececb;
  font-family: 'GE SS Two', Arial, sans-serif;
  font-weight: 300;
}

.form-input:focus {
  background-color: #eeeeee;
}

.form-textarea {
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  padding: 13px 26px;
  font-family: 'GE SS Two', Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #393d46;
  text-align: start;
  box-sizing: border-box;
  outline: none;
  transition: background-color 0.3s ease;
  resize: vertical;
  min-height: 150px;
}

.form-textarea::placeholder {
  color: #cececb;
  font-family: 'GE SS Two', Arial, sans-serif;
  font-weight: 300;
}

.form-textarea:focus {
  background-color: #eeeeee;
}

.btn-submit {
  width: 100%;
  background-color: #c09c3a;
  color: #ffffff;
  border: none;
  padding: 13px 26px;
  font-family: 'GE SS Two', Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.btn-submit:hover {
  background-color: #a08532;
}

.btn-submit:active {
  transform: translateY(1px);
}

/* Contact Info */
.contact-info-wrapper {
  background-color: #ffffff;
  padding: 16px;
}

.contact-info-title {
  font-size: 18px;
  font-weight: 500;
  color: #393d46;
  margin-bottom: 32px;
  text-align: start;
  line-height: 1.6;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.contact-info-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 32px;
  height: 32px;
  background-color: #c09c3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon-img {
  width: 16px;
  height: 16px;
}

.contact-info-details {
  text-align: start;
}

.contact-info-value {
  font-size: 20px;
  font-weight: 400;
  color: #393d46;
  text-align: start;
  line-height: 1.6;
  margin: 0;
}

.contact-social {
  padding-top: 0;
  border-top: none;
}

.contact-social-links {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.contact-social-link {
  width: 35px;
  height: 35px;
  background-color: #c09c3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.contact-social-link:hover {
  opacity: 0.8;
}

.contact-social-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

@media (max-width: 639px) {
  .contact-section {
    padding: 40px 12px;
  }
  
  .contact-container {
    padding: 0 16px;
  }
  
  .contact-hero {
    height: 180px;
  }
  
  .contact-breadcrumb {
    font-size: 16px;
  }
  
  .contact-title {
    font-size: 20px;
  }
  
  .contact-form {
    gap: 20px;
  }
  
  .form-group {
    gap: 8px;
  }
  
  .form-input,
  .form-textarea {
    padding: 12px 20px;
    font-size: 16px;
  }
  
  .btn-submit {
    font-size: 16px;
    padding: 12px 20px;
  }
  
  .contact-info-wrapper {
    padding: 24px;
  }
  
  .contact-info-title {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .contact-info-list {
    gap: 20px;
    margin: 24px 0;
  }
  
  .contact-info-item {
    gap: 12px;
  }
  
  .contact-info-icon {
    width: 32px;
    height: 32px;
  }
  
  .contact-info-icon-img {
    width: 20px;
    height: 20px;
  }
  
  .contact-info-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .contact-info-value {
    font-size: 16px;
  }
  
  .contact-social-links {
    gap: 8px;
  }
  
  .contact-social-link {
    width: 28px;
    height: 28px;
  }
  
  .contact-social-icon {
    width: 20px;
    height: 20px;
  }
}

