#contact-section {
  padding: 60px 0;
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* --- SECTION HEADER --- */
.contact-main-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--brand-primary-dark);
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.badge-premium {
  background: rgba(5, 199, 242, 0.1);
  color: var(--brand-primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-primary-alt)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- CONTACT FORM CARD --- */
.contact-form-card {
  background: linear-gradient(
    135deg,
    var(--brand-primary-dark) 0%,
    var(--brand-primary) 100%
  );
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(3, 83, 140, 0.2);
  height: 100%;
}

.form-header {
  color: white;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.input-group-modern {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group-modern label {
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  padding-left: 4px;
}

.input-group-modern input,
.input-group-modern textarea,
.input-group-modern select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 12px;
  font-family: "Outfit", sans-serif;
  color: var(--brand-primary-dark);
  transition: all 0.3s;
  font-size: 0.95rem;
}

.input-group-modern input:focus,
.input-group-modern textarea:focus,
.input-group-modern select:focus {
  outline: none;
  background: white;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-send-modern {
  background: white;
  color: var(--brand-primary-dark);
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  font-size: 0.9rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-send-modern:hover {
  background: var(--brand-primary-alt);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* --- CONTACT INFO CARDS --- */
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;

  @media screen and (max-width: 768px) {
    gap: 1rem;
  }
}

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  border: 1px solid var(--gray-200);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(3, 83, 140, 0.12);
  border-color: var(--brand-primary);
}

.info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-primary-alt)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-content h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary-dark);
  margin: 0 0 6px;
}

.info-content p {
  font-size: 1rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
  word-break: break-word;
}

/* --- SOCIAL SECTION --- */
.social-section {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-200);
}

.social-section h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-primary-dark);
  margin: 0;
}

.social-links-modern {
  display: flex;
  gap: 5px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--brand-primary-alt);
  color: white;
  transform: translateY(-3px);
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 991px) {
  #contact-section {
    padding: 40px 0;
  }

  .contact-main-title {
    font-size: 2.2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-form-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .form-title {
    font-size: 1.6rem;
  }

  .info-card {
    padding: 1.25rem;
  }

  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  #contact-section {
    padding: 30px 0;
  }

  .contact-main-title {
    font-size: 1.8rem;
  }

  .contact-subtitle {
    font-size: 0.85rem;
  }

  .badge-premium {
    font-size: 0.75rem;
    padding: 5px 14px;
  }

  .contact-form-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .form-title {
    font-size: 1.4rem;
  }

  .form-subtitle {
    font-size: 0.875rem;
  }

  .input-group-modern label {
    font-size: 0.8rem;
  }

  .input-group-modern input,
  .input-group-modern textarea,
  .input-group-modern select {
    padding: 12px 16px;
    font-size: 0.875rem;
  }

  .btn-send-modern {
    padding: 14px 28px;
    font-size: 0.85rem;
  }

  .info-card {
    padding: 1rem;
    gap: 1rem;
  }

  .info-icon {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    border-radius: 12px;
  }

  .info-content h5 {
    font-size: 1.15rem;
  }

  .info-content p {
        font-size: 0.85rem;
  }

  .social-section {
    padding: 1.25rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-main-title {
    font-size: 1.6rem;
  }

  .contact-form-card {
    padding: 1.25rem;
  }

  .form-title {
    font-size: 1.3rem;
  }

  .btn-send-modern {
    padding: 12px 24px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .info-icon {
    margin: 0 auto;
  }
}
