/* Kuangke Contact Info Section */
.kuangke-contact-info-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.kuangke-contact-info-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Contact Info Content */
.kuangke-contact-info-content {
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


.kuangke-contact-title {
  font-size: clamp(24px, 1.98vw, 38px);
  font-weight: 700;
  margin-bottom: 50px;
  color: #ffffff;
  font-family: var(--title-font-family, 'Roboto', sans-serif);
  line-height: 1.2;
}

.kuangke-contact-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ffffff;
  opacity: 0.9;
}

/* Contact Button */
.kuangke-contact-button-wrapper {
  margin-top: 30px;
}

.kuangke-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 60px;
  padding: 20px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 177px;
  height: 58px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
}

.kuangke-contact-button:hover {
  background: transparent;
  color: #ffffff;
  border: 1px solid #FFF;
}

.kuangke-contact-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 84, 163, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .kuangke-contact-info-section {
    padding: 80px 0;
  }
  

  
  .kuangke-contact-description {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .kuangke-contact-info-section {
    padding: 60px 0;
  }
  

  
  .kuangke-contact-content {
    padding: 30px 15px;
  }
}

@media (max-width: 991px) {
  .kuangke-contact-info-section {
    padding: 50px 0;
    min-height: 350px;
    margin-top: 0;
  }
  
  .kuangke-contact-info-content {
    padding: 30px 15px;
  }
  

  
  .kuangke-contact-button {
    padding: 18px 35px;
    font-size: 14px;
    min-width: 150px;
    height: 52px;
  }
}

@media (max-width: 576px) {
  .kuangke-contact-info-section {
    padding: 40px 0;
    min-height: 300px;
  }
  

  
  .kuangke-contact-description {
    font-size: 0.875rem;
  }
  
  .kuangke-contact-button {
    padding: 16px 30px;
    font-size: 13px;
    min-width: 140px;
    height: 48px;
  }
} 