.modern-contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.modern-contact-wrapper {
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: auto;
}

/* Left Column - Contact Info */
.contact-info-card {
  padding: 30px 30px;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.contact-subtitle {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 0;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.contact-content {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 5px;
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.contact-value:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.social-section {
  margin-top: auto;
}

.social-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* Right Column - Contact Form */
.contact-form-card {
  padding: 30px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.modern-contact-form {
  width: 100%;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 2px;
}
.contact_form_group {
  margin-bottom: 12px;
}

.contact_form_group_button {
  margin-top: 20px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  background: #f9fafb;
  transition: all 0.3s ease;
  resize: none;
}

.form-control:focus {
  outline: none;
  border-color: #6366f1;
  background: white;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-control::placeholder {
  color: #9ca3af;
}

textarea.form-control {
  min-height: 120px;
}

/* reCAPTCHA Style */
.captcha-wrapper {
  margin: 30px 0;
}

.recaptcha-box {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  gap: 12px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  padding: 18px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bg-contact {
  background-color: #585df9;
}

.submit-btn:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

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

/* Responsive Design */
@media (max-width: 991px) {
  .modern-contact-wrapper {
    margin: 20px;
    border-radius: 16px;
    min-height: auto;
  }

  .contact-info-card {
    padding: 40px 30px;
    border-radius: 16px 16px 0 0;
  }

  .contact-form-card {
    padding: 40px 30px;
    border-radius: 0 0 16px 16px;
  }

  .contact-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .modern-contact-section {
    padding: 30px 0;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 25px;
  }

  .contact-title {
    font-size: 28px;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .modern-contact-wrapper {
    margin: 15px;
    border-radius: 12px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 20px;
  }

  .contact-title {
    font-size: 24px;
  }

  .contact-item {
    margin-bottom: 20px;
  }
}

/* Animation Effects */
.contact-info-card,
.contact-form-card {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Validation States */
.form-control.is-invalid {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-control.is-valid {
  border-color: #10b981;
  background: #f0fdf4;
}

/* Loading State */
.submit-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.submit-btn.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.breadcumb-container-wrapper {
  padding: 44px 0 70px;
}

.header-section-1 {
  top: 0px;
}

@media only screen and (max-width: 1023px) {
  .breadcumb-container-wrapper {
    padding: 24px 0 70px;
  }

  .data_privacy_main_div {
    gap: 0;
    height: auto;
  }
  .title_data_privacy {
    line-height: 5rem;
    font-size: 2.5rem;
  }

  .logo {
    height: 45px;
    max-width: 120px;
  }
}
