/* Contact Section Styles */
.contact_us {
  background: linear-gradient(to bottom, rgb(207, 82, 230) 0%, #FFF 40%);
  padding: 7.2rem 0;
  position: relative;
  color: #eee;
  width: 100%;
}

.contact_inner {
  background: #1a1a1a;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  margin-top: 1rem;
  padding: 0rem 0;
}

.contact_inner .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  width: 100%;
}

.col-12 {
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1200px) {
  .contact_info_sec {
      margin: 2rem 0 0 0;
      max-width: 100%;
      height: auto;
       min-height: auto !important; 
      justify-content: flex-start;
  }
}
/* Desktop Styles */
@media (min-width: 992px) {
  .col-lg-6
   {
          flex: 0 0 50%;
          max-width: 50%;
          padding: 1.5rem;
          display: flex;
          flex-wrap: wrap;
          align-items: center;
      }
  
  .contact_info_sec {
    margin-top: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }
  
  .contact_field {
    padding: 2rem;
  }
}

/* Contact Form Styles */
.contact_field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 10px 0px 10px;
  width: 100%;
  box-sizing: border-box;
}

.contact_field h3 {
  font-family: "Merienda", cursive;
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-align: center;
}

/* Add gap between name and email fields */
.contact_field .row {
  gap: 1rem;
}

.contact_field p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
  text-align: center;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #333;
  border: none;
  border-radius: 0.5rem;
  color: #fff;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 1.5rem;
}

/* Add gap between name and email fields */
.contact_field .row {
  gap: 1.5rem;
}

/* Ensure proper spacing for form groups */
.contact_field .form-group {
  width: 100%;
}

.form-control::placeholder {
  color: #999;
}

.form-control:focus {
  outline: 2px solid #ffd700;
}

.contact_form_submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  max-width: 300px;
  background: #ffd700;
  color: #000;
  padding: 0.75rem;
  font-family: "Merienda", cursive;
  font-size: 1.1rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin: 1rem auto;
}

.contact_form_submit:hover {
  transform: scale(1.1);
}

/* Contact Info Styles */
.contact_info_sec {
  background: #222;
  width: 100%;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  margin: 1rem 0 0 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  min-height: 0;
}

.contact_info_sec h4 {
  font-family: "Merienda", cursive;
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.info_single {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  color: #ccc;
  line-height: 1.4;
  width: 100%;
  padding: 0.3rem 0;
}

.info_single:last-child {
  margin-bottom: 0;
}

.info_single i {
  margin-right: 0.75rem;
  color: #8e8989;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  font-size: 0.9em;
}

/* Social Icons */
.info_single.social-icons {
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icon {
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  color: #ffd700;
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .contact_field {
    /* padding: 3rem; */
  }
  
  .contact_info_sec {
    margin: 2rem auto 0;
    max-width: 600px;
  }
}

@media (min-width: 1200px) {
  .contact_info_sec {
    margin: 2rem 0 0 0;
    max-width: 100%;
    height: auto;
    min-height: 100%;
    justify-content: flex-start;
  }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .contact_field {
    padding: 1.5rem;
  }
  
  .contact_field h3 {
    font-size: 2rem;
  }
  
  .contact_form_submit {
    width: 100%;
  }
}
